forked from nfdi4cat/voc4cat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidranges.toml
More file actions
138 lines (116 loc) · 3.62 KB
/
Copy pathidranges.toml
File metadata and controls
138 lines (116 loc) · 3.62 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# ==== 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 "voc4cat" ====
# The name of the vocabulary is used as section name.
# It should match the filename-stem of the vocabulary files.
[vocabs.voc4cat]
# 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://w3id.org/nfdi4cat/voc4cat_"
# Section to configure checks (useful in CI pipeline)
[vocabs.voc4cat.checks]
# Deleting allowed (relevant in CI-pipeline)
allow_delete = false
[vocabs.voc4cat.prefix_map]
voc4cat = "https://w3id.org/nfdi4cat/voc4cat_"
# 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.voc4cat.id_range]]
first_id = 1
last_id = 5000
gh_name = "nmoust"
orcid = "0000-0002-6242-2167"
ror_id = "https://ror.org/029hg0311"
[[vocabs.voc4cat.id_range]]
first_id = 5001
last_id = 6000
gh_name = "dalito"
orcid = "0000-0002-5898-1820"
ror_id = "https://ror.org/029hg0311"
[[vocabs.voc4cat.id_range]]
first_id = 6001
last_id = 7000
gh_name = "markdoerr"
orcid = "0000-0003-3270-6895"
ror_id = "https://ror.org/00r1edq15"
[[vocabs.voc4cat.id_range]]
first_id = 7001
last_id = 7100
gh_name = "schumnannj"
orcid = "0000-0002-4041-0165"
ror_id = "https://ror.org/01hcx6992"
[[vocabs.voc4cat.id_range]]
first_id = 7101
last_id = 7200
gh_name = "HendrikBorgelt"
orcid = "0000-0001-5886-7860"
ror_id = "https://ror.org/01k97gp34"
[[vocabs.voc4cat.id_range]]
first_id = 7201
last_id = 7300
gh_name = "RoteKekse"
orcid = "0009-0008-1278-8890"
ror_id = "https://ror.org/02aj13c28"
[[vocabs.voc4cat.id_range]]
first_id = 7301
last_id = 7320
gh_name = "khatamirad"
orcid = "0000-0002-6723-1650"
ror_id = "https://ror.org/03v4gjf40"
[[vocabs.voc4cat.id_range]]
first_id = 7321
last_id = 7370
gh_name = "philippstangl"
orcid = "0009-0007-4179-2365"
ror_id = "https://ror.org/00f7hpc57"
[[vocabs.voc4cat.id_range]]
first_id = 7371
last_id = 7390
gh_name = "sofia-angeli"
orcid = "0000-0001-8623-047X"
ror_id = "https://ror.org/04t3en479"
[[vocabs.voc4cat.id_range]]
first_id = 7391
last_id = 7790
gh_name = "HendrikBorgelt"
orcid = "0000-0001-5886-7860"
ror_id = "https://ror.org/01k97gp34"
[[vocabs.voc4cat.id_range]]
first_id = 7791
last_id = 7850
gh_name = "FranziFlecken"
orcid = "0000-0003-4418-7455"
ror_id = "https://ror.org/04t3en479"
[[vocabs.voc4cat.id_range]]
first_id = 7851
last_id = 7860
gh_name = "kara-mela"
orcid = "0000-0002-5850-4469"
ror_id = "https://ror.org/01js2sh04"
[[vocabs.voc4cat.id_range]]
first_id = 7861
last_id = 8060
gh_name = "mvoelken-hub"
orcid = "0009-0006-1375-2895"
ror_id = "https://ror.org/01k97gp34"
[[vocabs.voc4cat.id_range]]
first_id = 8061
last_id = 8080
gh_name = "b-elisa"
ror_id = "https://ror.org/03v4gjf40"
[[vocabs.voc4cat.id_range]]
first_id = 8081
last_id = 8100
gh_name = "carla-terboven"
orcid = "0009-0004-3786-0773"
ror_id = "https://ror.org/02aj13c28"
# Continue with as many [[vocabs.voc4cat.id_range]] sections as needed.