-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAlignmentObject.json
More file actions
106 lines (105 loc) · 3.84 KB
/
AlignmentObject.json
File metadata and controls
106 lines (105 loc) · 3.84 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://schema.org/AlignmentObject",
"required": [
],
"title": "AlignmentObject",
"name": "AlignmentObject",
"description": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.",
"type": "object",
"properties": {
"alignmentType": {
"id": "http://schema.org/alignmentType",
"title": "alignmentType",
"description": "A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationLevel'.",
"type": "string"
},
"educationalFramework": {
"id": "http://schema.org/educationalFramework",
"title": "educationalFramework",
"description": "The framework to which the resource being described is aligned.",
"type": "string"
},
"targetDescription": {
"id": "http://schema.org/targetDescription",
"title": "targetDescription",
"description": "The description of a node in an established educational framework.",
"type": "string"
},
"targetName": {
"id": "http://schema.org/targetName",
"title": "targetName",
"description": "The name of a node in an established educational framework.",
"type": "string"
},
"targetUrl": {
"id": "http://schema.org/targetUrl",
"title": "targetUrl",
"description": "The URL of a node in an established educational framework.",
"type": "string",
"format": "uri"
},
"": {
"title": "",
"description": "",
"type": null
},
"additionalType": {
"id": "http://schema.org/additionalType",
"title": "additionalType",
"description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
"type": "string",
"format": "uri"
},
"alternateName": {
"id": "http://schema.org/alternateName",
"title": "alternateName",
"description": "An alias for the item.",
"type": "string"
},
"description": {
"id": "http://schema.org/description",
"title": "description",
"description": "A short description of the item.",
"type": "string"
},
"image": {
"id": "http://schema.org/image",
"title": "image",
"description": "An image of the item. This can be a URL or a fully described ImageObject.",
"type": "string",
"format": "uri"
},
"name": {
"id": "http://schema.org/name",
"title": "name",
"description": "The name of the item.",
"type": "string"
},
"potentialAction": {
"id": "http://schema.org/potentialAction",
"title": "potentialAction",
"description": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
"type": "object",
"properties": {
"potentialAction": {
"$ref": "Action.json#/properties"
}
}
},
"sameAs": {
"id": "http://schema.org/sameAs",
"title": "sameAs",
"description": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website.",
"type": "string",
"format": "uri"
},
"url": {
"id": "http://schema.org/url",
"title": "url",
"description": "URL of the item.",
"type": "string",
"format": "uri"
}
}
}