This repository has been archived by the owner on Nov 10, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-schema.json
40 lines (40 loc) · 1.63 KB
/
release-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
{
"definitions": {
"Item": {
"properties": {
"unit": {
"description": "A description of the unit in which the supplies, services or works are provided (e.g. hours, kilograms) and the unit-price. For comparability, an established list of units can be used. ",
"properties": {
"scheme": {
"title": "Scheme",
"description": "The list from which units of measure identifiers are taken. This should be an entry in the unitClassificationScheme codelist. Use of the scheme 'UNCEFACT' for the UN/CEFACT Recommendation 20 list of 'Codes for Units of Measure Used in International Trade' is recommended. ",
"type": [
"string",
"null"
],
"codelist": "unitClassificationScheme.csv",
"openCodelist": true
},
"id": {
"title": "ID",
"description": "The identifier from the codelist referenced in the schema property. For example, with UNCEFACT, this is the value of the 'Common Code' column. From this identifier, applications can look-up the human readable name or symbol for this unit of measure. ",
"type": [
"string",
"null"
]
},
"uri": {
"title": "URI",
"description": "If the scheme used provide a machine-readable URI for this unit of measure, this can be given.",
"type": [
"string",
"null"
],
"format": "uri"
}
}
}
}
}
}
}