-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProgramType.json
53 lines (53 loc) · 1.31 KB
/
ProgramType.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.getpocket.io/schema/ProgramType.json",
"description": "Program Type",
"type": "object",
"properties": {
"id": {
"type": "string",
"title": "Program Type ID"
},
"name": {
"type": "string",
"title": "Organization name for program"
},
"description": {
"type": "string",
"title": "Description of the program"
},
"abbreviation": {
"type": "string",
"title": "Abbreviation of program, if any"
},
"orgqanization_id": {
"type": "string",
"title": "Organization offering the program, if any"
},
"external_id": {
"type": "string",
"title": "Organization's id of program, if any"
},
"program_map_id": {
"type": "string",
"title": "id of course map for program completion, if any"
},
"completion_definition_id": {
"type": "string",
"title": "id of completion credential definition the program offers, if any"
},
"reference_uri": {
"type": "string",
"title": "uri of the program's web page, if any"
},
"program_category_id": {
"type": "string",
"title": "Program category id, if any"
}
},
"required": [
"id",
"name"
],
"additionalProperties": false
}