-
Notifications
You must be signed in to change notification settings - Fork 0
/
measures-schema.json
44 lines (44 loc) · 1.22 KB
/
measures-schema.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
{
"$id": "https://objects.monarc.lu/schema/def/3777ff96-2d37-4ad2-8789-7aa3417b6312",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"definitions": {
"standard": {
"$ref": "https://objects.monarc.lu/schema/def/308deb4c-0249-43ed-9f6f-f5c60b630d8f"
}
},
"properties": {
"category": {
"type": "string"
},
"code": {
"type": "string"
},
"label": {
"type": "string"
},
"uuid": {
"pattern": "[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}",
"type": "string"
},
"referential": {
"pattern": "[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}",
"type": "string",
"description": "UUID of the referential."
},
"referential_label": {
"type": "string",
"description": "Label of the referential."
}
},
"required": [
"uuid",
"label",
"category",
"code",
"referential",
"referential_label"
],
"title": "Validator for measure used in MONARC",
"type": "object"
}