-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathschema.json
44 lines (44 loc) · 1.11 KB
/
schema.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
[
{ "@type" : "@context",
"@base" : "iri://data/",
"@schema" : "iri://schema#"
},
{ "@type" : "Class",
"@id" : "Author",
"name" : "xsd:string",
"avatar" : "xsd:anyURI",
"bio" : "xsd:string"
},
{ "@type" : "Class",
"@id" : "Image",
"location" : "xsd:anyURI",
"alt" : "xsd:string"
},
{ "@type" : "Class",
"@id" : "Post",
"@key": { "@type" : "Lexical", "@fields" : ["title"]},
"feature" : { "@type" : "Optional", "@class" : "Image" },
"title" : "xsd:string",
"content" : "xsd:string",
"date" : "xsd:dateTime",
"author" : { "@type" : "Set", "@class" : "Author" }
},
{ "@type" : "Class",
"@id" : "Page",
"@key" : { "@type" : "Lexical", "@fields" : ["title"]},
"title" : "xsd:string",
"content" : "xsd:string"
},
{ "@type" : "Class",
"@id" : "SiteMap",
"@key" : { "@type" : "Lexical", "@fields" : ["self"]},
"self" : "sys:Unit",
"items" : { "@type" : "Set", "@class" : "SiteItem" }
},
{ "@type" : "Class",
"@id" : "SiteItem",
"name" : "xsd:string",
"order" : "xsd:integer",
"location" : "xsd:anyURI"
}
]