|
15 | 15 | "type": "number", |
16 | 16 | "description": "Please add here all properties which are needed for Standard 205 and not available in the other schemas." |
17 | 17 | }, |
18 | | - "optical": { |
| 18 | + "metadata": { |
| 19 | + "type": "object", |
| 20 | + "properties": { |
| 21 | + "data_model": { |
| 22 | + "title": "Data model name", |
| 23 | + "type": "string", |
| 24 | + "const": "ASHRAE_205", |
| 25 | + "description": "Identifies the data model where the schema is defined" |
| 26 | + }, |
| 27 | + "schema": { |
| 28 | + "title": "Schema name or identifier", |
| 29 | + "$ref": "#/$defs/SchemaType", |
| 30 | + "description": "Identifies the schema used to define the data content" |
| 31 | + }, |
| 32 | + "schema_version": { |
| 33 | + "description": "The version of the schema the data complies with", |
| 34 | + "$ref": "#/$defs/Version" |
| 35 | + }, |
| 36 | + "id": { |
| 37 | + "title": "Unique equipment identifier", |
| 38 | + "$ref": "#/$defs/UUID", |
| 39 | + "description": "Assigned by data publisher to identify the contained data. `id` shall remain unchanged for revised data" |
| 40 | + }, |
| 41 | + "description": { |
| 42 | + "description": "Description of data (suitable for display)", |
| 43 | + "type": "string" |
| 44 | + }, |
| 45 | + "data_timestamp": { |
| 46 | + "title": "Date of publication", |
| 47 | + "$ref": "#/$defs/Timestamp", |
| 48 | + "description": "Date/time of publication of the data" |
| 49 | + }, |
| 50 | + "data_version": { |
| 51 | + "title": "Integer version identifier for the data in the representation", |
| 52 | + "type": "integer", |
| 53 | + "minimum": 1, |
| 54 | + "description": "Used by data publisher to track revisions of the data for a specific representation. `data_version` shall be incremented for each data revision" |
| 55 | + }, |
| 56 | + "data_source": { |
| 57 | + "title": "Source(s) of the data", |
| 58 | + "type": "string", |
| 59 | + "description": "Used by data publisher to document methods (e.g., software and version) used to generate data. ***Informative note:*** `data_source` may be different from other data source(s) included elsewhere within the data" |
| 60 | + }, |
| 61 | + "disclaimer": { |
| 62 | + "description": "Characterization of accuracy, limitations, and applicability of this data", |
| 63 | + "type": "string" |
| 64 | + }, |
| 65 | + "notes": { |
| 66 | + "description": "Additional Information", |
| 67 | + "type": "string" |
| 68 | + } |
| 69 | + }, |
| 70 | + "required": [ |
| 71 | + "data_model", |
| 72 | + "schema", |
| 73 | + "schema_version", |
| 74 | + "id", |
| 75 | + "description", |
| 76 | + "data_timestamp", |
| 77 | + "data_version" |
| 78 | + ], |
| 79 | + "additionalProperties": false |
| 80 | + }, |
| 81 | + "performanceMapOptical": { |
19 | 82 | "title": "optical data", |
20 | 83 | "description": "Optical data sets according to BED-JSON", |
21 | 84 | "type": "array", |
|
25 | 88 | }, |
26 | 89 | "minItems": 1 |
27 | 90 | }, |
28 | | - "calorimetric": { |
| 91 | + "performanceMapCalorimetric": { |
29 | 92 | "title": "calorimetric data", |
30 | 93 | "description": "Calorimetric data sets according to BED-JSON", |
31 | 94 | "type": "array", |
32 | 95 | "items": { |
33 | | - "$ref": "calorimetric.json", |
| 96 | + "$ref": "calorimetricData.json", |
34 | 97 | "description": "The measured or simulated data in JSON." |
35 | 98 | }, |
36 | 99 | "minItems": 1 |
|
39 | 102 | "additionalProperties": false, |
40 | 103 | "minProperties": 1, |
41 | 104 | "required": [] |
| 105 | + }, |
| 106 | + "SchemaType": { |
| 107 | + "type": "string", |
| 108 | + "enum": [ |
| 109 | + "FS0001" |
| 110 | + ], |
| 111 | + "description": "FS0001 is the schema for Fenestration Systems." |
| 112 | + }, |
| 113 | + "Version": { |
| 114 | + "type": "string", |
| 115 | + "pattern": "(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(?:-((?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?" |
| 116 | + }, |
| 117 | + "UUID": { |
| 118 | + "type": "string", |
| 119 | + "pattern": "[0-9,a-f,A-F]{8}-[0-9,a-f,A-F]{4}-[0-9,a-f,A-F]{4}-[0-9,a-f,A-F]{4}-[0-9,a-f,A-F]{12}" |
| 120 | + }, |
| 121 | + "Timestamp": { |
| 122 | + "type": "string", |
| 123 | + "pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}Z" |
42 | 124 | } |
43 | 125 | }, |
44 | 126 | "$ref": "#/$defs/standard205" |
|
0 commit comments