-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstanceDefinition.json
More file actions
39 lines (39 loc) · 1.24 KB
/
Copy pathInstanceDefinition.json
File metadata and controls
39 lines (39 loc) · 1.24 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
{
"x-namespace": "Elements",
"required": [],
"properties": {
"BaseDefinitions": {
"description": "The element from which this instance is derived.",
"type": "array",
"items": {
"$ref": "https://schemas.hypar.io/GeometricElement.json"
}
},
"Transforms": {
"description": "Instance Transforms.",
"type": "array",
"items": {
"$ref": "https://schemas.hypar.io/Transform.json"
}
},
"InstanceReferenceGeometry": {
"description": "The element from which this instance is derived.",
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/tkahng/HyparSchemas/main/InstanceReferenceGeometry.json"
}
}
},
"additionalProperties": false,
"description": "An instance definition info of an element in the model.",
"allOf": [
{
"$ref": "https://schemas.hypar.io/Element.json"
}
],
"$id": "InstanceDefinition",
"$schema": "http://json-schema.org/draft-07/schema#",
"discriminator": "discriminator",
"type": "object",
"title": "InstanceDefinition"
}