-
Notifications
You must be signed in to change notification settings - Fork 1
/
gocfl-info-1.0.json
139 lines (139 loc) · 3.86 KB
/
gocfl-info-1.0.json
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
139
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$ref": "#/$defs/Info",
"$defs": {
"Info": {
"properties": {
"signature": {
"type": "string",
"maxLength": 128,
"minLength": 3,
"pattern": "[a-zA-Z0-9/.-:-]+",
"title": "archival signature",
"description": "unique identifier within the archive system"
},
"organisation_id": {
"type": "string",
"pattern": "[a-zA-Z0-9/.-:-]+",
"title": "organisation identifier",
"description": "id or abbreviation of organisation responsible for the object"
},
"organisation": {
"type": "string",
"title": "organisation name",
"description": "name of organisation responsible for the object"
},
"collection_id": {
"type": "string",
"pattern": "[a-zA-Z0-9/._:-]+",
"title": "collection identifier",
"description": "id of collection the object belongs to"
},
"collection": {
"type": "string",
"title": "collection name",
"description": "name of collection the object belongs to"
},
"sets": {
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true,
"title": "sets",
"description": "list of datasets object is belonging to"
},
"identifiers": {
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true,
"title": "identifiers",
"description": "list of identifiers"
},
"title": {
"type": "string",
"title": "title",
"description": "title of object"
},
"alternative_titles": {
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true,
"title": "alternative titles",
"description": "list of alternative titles of this object or parts of it"
},
"description": {
"type": "string"
},
"keywords": {
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"user": {
"type": "string",
"title": "user",
"description": "name of person ingesting this object"
},
"address": {
"type": "string",
"title": "address",
"description": "adress of person ingesting this archive (email"
},
"created": {
"type": "string",
"format": "date-time",
"title": "creation date",
"description": "date"
},
"last_changed": {
"type": "string",
"format": "date-time",
"title": "last changed",
"description": "date"
},
"deprecates": {
"type": "string",
"title": "deprecates",
"description": "signature of object"
},
"references": {
"items": {
"type": "string"
},
"type": "array",
"title": "references",
"description": "list of signatures"
},
"ingest_workflow": {
"type": "string",
"title": "ingest workflow",
"description": "name of the workflow"
},
"additional": {
"type":["number","string","boolean","object","array", "null"],
"title": "additional data",
"description": "unstructured additional data"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"signature",
"organisation_id",
"organisation",
"title",
"user",
"address",
"created",
"last_changed"
]
}
}
}