-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcif_json.json
More file actions
210 lines (105 loc) · 4.59 KB
/
cif_json.json
File metadata and controls
210 lines (105 loc) · 4.59 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"$schema": "http://json-schema.org/draft-06/schema#",
"id": "http://www.iucr.org/resources/cif/cif-json.json",
"description": "The CIF-JSON top-level object",
"type": "object",
"required": ["CIF-JSON"],
"maxProperties": 1,
"properties": {
"CIF-JSON": {
"description": "The CIF-JSON object",
"type": "object",
"patternProperties": {
"^[^A-Z\u0000-\u0020]+$": {
"id": "#datablock",
"title": "datablock",
"description": "An object representing a CIF datablock",
"type": "object",
"patternProperties": {
"^_[^A-Z\u0000-\u0020]+$": {
"title": "values",
"description": "An array of all the values taken by a CIF data item",
"type": "array",
"minItems": 1,
"items": {
"id": "#datavalue",
"title": "datavalue",
"description": "A CIF data value",
"anyOf": [
{
"title": "string / number",
"description": "A CIF string or numeric value",
"type": "string"
},
{
"title": "null",
"description": "A CIF null value (.)",
"type": "boolean",
"const": false
},
{
"title": "unknown",
"description": "A CIF unknown value (?)",
"type": "null"
},
{
"title": "list",
"description": "A CIF list value",
"type": "array",
"items": { "$ref": "#datavalue" }
},
{
"title": "table",
"description": "A CIF table value",
"type": "object",
"additionalProperties": { "$ref": "#datavalue" }
}
]
}
}
},
"properties": {
"Frames": {
"type": "object",
"patternProperties": {
"^[^\u0000-\u0020A-Z]+$": { "$ref": "#datablock" }
},
"additionalProperties": { "not": {} }
}
},
"additionalProperties": { "not": {} }
}
},
"properties": {
"Metadata": {
"description": "provides instance metadata",
"type": "object",
"properties": {
"cif-version": {
"type": "string",
"enum": ["1.1", "2.0"],
"description": "The version of CIF with which the content of this CIF-JSON instance conforms"
},
"schema-name": {
"type": "string",
"const": "CIF-JSON",
"default": "CIF-JSON",
"description": "Identifies the JSON format of this instance's content; always 'CIF-JSON' for instances conforming to this schema"
},
"schema-version": {
"type": "string",
"pattern": "(0|[1-9][0-9]*)[.](0|[1-9][0-9]*)[.](0|[1-9][0-9]*)",
"description": "The version of CIF-JSON to which this instance conforms, in dotted-triplet form; CIF-JSON version numbers are assigned according to semantic versioning principles"
},
"schema-uri": {
"type": "string",
"const": "http://www.iucr.org/resources/cif/cif-json.json",
"default": "http://www.iucr.org/resources/cif/cif-json.json",
"description": "A URI (in fact a URL) specifying the location of this schema"
}
}
}
}
}
}
}