-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectSpaceElement.json
More file actions
73 lines (73 loc) · 2.08 KB
/
Copy pathProjectSpaceElement.json
File metadata and controls
73 lines (73 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"x-namespace": "Elements",
"allOf": [
{
"$ref": "https://schemas.hypar.io/GeometricElement.json"
}
],
"required": [],
"properties": {
"Profile": {
"description": "The boundary of the space",
"$ref": "https://schemas.hypar.io/Profile.json"
},
"Area": {
"description": "The area of the boundary",
"type": "number",
"$hyparUnitType": "area"
},
"Height": {
"description": "The height of this space boundary",
"type": "number",
"$hyparUnitType": "length"
},
"Roof": {
"description": "The roof of the space",
"$ref": "https://schemas.hypar.io/Profile.json"
},
"BBox": {
"description": "The BBox of the Layer",
"$ref": "https://schemas.hypar.io/BBox3.json"
},
"Layer": {
"$hyparRelationship": {
"type": "child-of",
"discriminator": "Elements.Layer"
},
"type": [
"string",
"null"
],
"format": "uuid"
},
"Level": {
"$hyparRelationship": {
"type": "child-of",
"discriminator": "Elements.Level"
},
"type": [
"string",
"null"
],
"format": "uuid"
},
"InstanceDefinition": {
"$hyparRelationship": {
"type": "child-of",
"discriminator": "Elements.InstanceDefinition"
},
"type": [
"string",
"null"
],
"format": "uuid"
}
},
"additionalProperties": false,
"description": "A profile with a program assigned to it, and optional internal cell geometry. ",
"$id": "ProjectSpaceElement",
"$schema": "http://json-schema.org/draft-07/schema#",
"discriminator": "discriminator",
"type": "object",
"title": "ProjectSpaceElement"
}