-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDataType.json
More file actions
50 lines (50 loc) · 1.46 KB
/
Copy pathDataType.json
File metadata and controls
50 lines (50 loc) · 1.46 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
{
"$schema" : "https://json-schema.org/draft/2020-12/schema",
"$id" : "https://raw.githubusercontent.com/BHoM/BHoM_JSONSchema/develop/LadybugTools_oM/DataType.json",
"title" : "DataType",
"type" : ["object", "null"],
"properties" : {
"Name" : {
"type" : ["string", "null"],
"description" : "The name of this data type."
},
"Data_Type" : {
"type" : ["string", "null"],
"description" : "The data type of this data type."
},
"BaseUnit" : {
"type" : ["string", "null"],
"description" : "The base type of this data type. This is used if Data_Type is set to \"GenericDataType\"."
},
"Type" : {
"type" : ["string", "null"]
},
"BHoM_Guid" : {
"type" : "string",
"format" : "uuid"
},
"Fragments" : {
"$ref" : "https://raw.githubusercontent.com/BHoM/BHoM_JSONSchema/develop/BHoM/FragmentSet.json"
},
"Tags" : {
"type" : ["array", "null"],
"items" : {
"type" : ["string", "null"]
},
"uniqueItems" : true
},
"CustomData" : {
"type" : ["object", "null"]
},
"_t" : {
"type" : "string",
"description" : "Optional type disciminator.",
"const" : "BH.oM.LadybugTools.DataType"
},
"_bhomVersion" : {
"type" : ["string", "null"],
"description" : "Optional version of BHoM used as part of automatic versioning and schema upgrades."
}
},
"required" : ["Name", "Data_Type", "BaseUnit", "Type"]
}