-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgramType.json
More file actions
26 lines (26 loc) · 785 Bytes
/
Copy pathProgramType.json
File metadata and controls
26 lines (26 loc) · 785 Bytes
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
{
"x-namespace": "Elements",
"allOf": [
{
"$ref": "https://schemas.hypar.io/Element.json"
}
],
"required": [],
"properties": {
"Program Color": {
"description": "A symbolic color with which to represent this program",
"$ref": "https://schemas.hypar.io/Color.json"
},
"Program Name": {
"description": "The name of this program type",
"type": "string"
}
},
"additionalProperties": false,
"description": "Represents an abstract program type, with a name and symbolic color",
"$id": "ProgramType",
"$schema": "http://json-schema.org/draft-07/schema#",
"discriminator": "discriminator",
"type": "object",
"title": "ProgramType"
}