-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGetPropertyNode.json
More file actions
60 lines (60 loc) · 1.78 KB
/
Copy pathGetPropertyNode.json
File metadata and controls
60 lines (60 loc) · 1.78 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
{
"$schema" : "https://json-schema.org/draft/2020-12/schema",
"$id" : "https://raw.githubusercontent.com/BHoM/BHoM_JSONSchema/develop/Programming_oM/GetPropertyNode.json",
"title" : "GetPropertyNode",
"type" : ["object", "null"],
"description" : "GetPropertyNode: A syntax node corresponding to a call to the BHoM GetProperty method/component.",
"properties" : {
"Description" : {
"type" : ["string", "null"]
},
"Inputs" : {
"type" : ["array", "null"],
"items" : {
"$ref" : "https://raw.githubusercontent.com/BHoM/BHoM_JSONSchema/develop/Programming_oM/ReceiverParam.json"
}
},
"Outputs" : {
"type" : ["array", "null"],
"items" : {
"$ref" : "https://raw.githubusercontent.com/BHoM/BHoM_JSONSchema/develop/Programming_oM/DataParam.json"
}
},
"IsInline" : {
"type" : "boolean"
},
"IsDeclaration" : {
"type" : "boolean"
},
"BHoM_Guid" : {
"type" : "string",
"format" : "uuid"
},
"Name" : {
"type" : ["string", "null"]
},
"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.Programming.GetPropertyNode"
},
"_bhomVersion" : {
"type" : ["string", "null"],
"description" : "Optional version of BHoM used as part of automatic versioning and schema upgrades."
}
},
"required" : ["Description", "Inputs", "Outputs", "IsInline", "IsDeclaration"]
}