-
Notifications
You must be signed in to change notification settings - Fork 1
/
idranges.toml
53 lines (44 loc) · 1.89 KB
/
idranges.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ==== General Configuration ====
# Documentation of the TOML format: https://toml.io/en/latest
# Allow only a single vocabulary (default) or multiple vocabularies in the repository.
single_vocab = true
# ==== Configuration for vocabulary "vocab_example" ====
# The name of the vocabulary is used as section name.
# It should match the filename-stem of the vocabulary files.
[vocabs.vocab_example]
# Length of integer IDs in vocabulary. IDs will be left-padded with zeros to specified length.
id_length = 7
# permanent part of IRIs defined in the vocabulary
permanent_iri_part = "https://example.org/test/"
# Section to configure checks (useful in CI pipeline)
[vocabs.vocab_example.checks]
# Deleting allowed (relevant in CI-pipeline)
allow_delete = false
[vocabs.vocab_example.prefix_map]
ex = "https://example.org/"
# Section of IDranges for coordinating the allocation of numeric ID ranges to
# contributors for each vocabulary. Each idrange contains the same keys:
#
# first_id = <int> - first reserved integer ID in idrange
# last_id = <int> - last reserved integer ID in idrange
# gh_name = "<string>" - user or organisation name on github
# orcid = "<string> or <url>" - contributor's ORCID, e.g. "0000-0002-1825-0097" or "https://orcid.org/0000-0002-1825-0097"
# ror_id = "<url>" - ROR identifier of home organisation, e.g. "https://ror.org/04fa4r544"
[[vocabs.vocab_example.id_range]]
first_id = 1
last_id = 10
gh_name = "sofia-garcia"
orcid = "0000-0001-2345-6789"
ror_id = "https://ror.org/04fa4r544"
[[vocabs.vocab_example.id_range]]
first_id = 11
last_id = 20
gh_name = "unknown"
orcid = ""
ror_id = ""
# Continue with as many [[vocabs.vocab_example.idrange]] sections as needed.
# More vocabularies can be configured by adding sections with appropriate name.
# [vocabs.othervocab]
# [vocabs.othervocab.checks]
# [vocabs.othervocab.prefix_map]
# [[vocabs.othervocab.idrange]]