Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit 170bb4f

Browse files
kriszypnickl-
authored andcommitted
Added files from json-schema.org
1 parent 7c65ebb commit 170bb4f

37 files changed

+11075
-0
lines changed

address

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{"description":"An Address following the convention of http://microformats.org/wiki/hcard",
2+
"type":"object",
3+
"properties":{
4+
"post-office-box":{"type":"string","requires":"street-address"},
5+
"extended-address":{"type":"string","requires":"street-address"},
6+
"street-address":{"type":"string","requires":"region"},
7+
"locality":{"type":"string","requires":"region", "required":true},
8+
"region":{"type":"string","requires":"country-name", "required":true},
9+
"postal-code":{"type":"string"},
10+
"country-name":{"type":"string", "required":true}
11+
}
12+
}

address-v2

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{"description":"An Address following the convention of http://microformats.org/wiki/hcard",
2+
"type":"object",
3+
"properties":{
4+
"post-office-box":{"type":"string","specifity":5,"optional":true},
5+
"extended-address":{"type":"string","specifity":5,"optional":true},
6+
"street-address":{"type":"string","specifity":4,"optional":true},
7+
"locality":{"type":"string","specifity":3},
8+
"region":{"type":"string","specifity":2},
9+
"postal-code":{"type":"string","optional":true},
10+
"country-name":{"type":"string","specifity":1}
11+
}
12+
}

address.properties

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"post-office-box":{"type":"string","specifity":5,"optional":true},
3+
"extended-address":{"type":"string","specifity":5,"optional":true},
4+
"street-address":{"type":"string","specifity":4,"optional":true},
5+
"locality":{"type":"string","specifity":3},
6+
"region":{"type":"string","specifity":2},
7+
"postal-code":{"type":"string","optional":true},
8+
"country-name":{"type":"string","specifity":1}
9+
}

calendar

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{"description":"A representation of an event",
2+
"type":"object",
3+
"properties":{
4+
"dtstart":{"format":"date-time","type":"string","description":"Event starting time","required":true},
5+
"summary":{"type":"string","required":true},
6+
"location":{"type":"string"},
7+
"url":{"type":"string","format":"url"},
8+
"dtend":{"format":"date-time","type":"string","description":"Event ending time"},
9+
"duration":{"format":"date","type":"string","description":"Event duration"},
10+
"rdate":{"format":"date-time","type":"string","description":"Recurrence date"},
11+
"rrule":{"type":"string","description":"Recurrence rule"},
12+
"category":{"type":"string"},
13+
"description":{"type":"string"},
14+
"geo":"http://json-schema.org/geo"
15+
}
16+
}
17+
18+
19+
20+

calendar-v2

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{"description":"A representation of an event",
2+
"type":"object",
3+
"properties":{
4+
"dtstart":{"format":"date-time","type":"string","description":"Event starting time"},
5+
"summary":{"type":"string"},
6+
"location":{"type":"string","optional":true},
7+
"url":{"type":"string","format":"url","optional":true},
8+
"dtend":{"format":"date-time","type":"string","description":"Event ending time","optional":true},
9+
"duration":{"format":"date","type":"string","description":"Event duration","optional":true},
10+
"rdate":{"format":"date-time","type":"string","description":"Recurrence date","optional":true},
11+
"rrule":{"type":"string","description":"Recurrence rule","optional":true},
12+
"category":{"type":"string","optional":true},
13+
"description":{"type":"string","optional":true},
14+
"geo":{"type":"object","properties":{"$ref":"http://json-schema.org/geo#properties"},"optional":true}
15+
}
16+
}
17+
18+
19+
20+

calendar.properties

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"dtstart":{"format":"date-time","type":"string","description":"Event starting time"},
3+
"summary":{"type":"string"},
4+
"location":{"type":"string","optional":true},
5+
"url":{"type":"string","format":"url","optional":true},
6+
"dtend":{"format":"date-time","type":"string","description":"Event ending time","optional":true},
7+
"duration":{"format":"date","type":"string","description":"Event duration","optional":true},
8+
"rdate":{"format":"date-time","type":"string","description":"Recurrence date","optional":true},
9+
"rrule":{"type":"string","description":"Recurrence rule","optional":true},
10+
"category":{"type":"string","optional":true},
11+
"description":{"type":"string","optional":true},
12+
"geo":{"type":"object","properties":{"$ref":"http://json-schema.org/geo.properties"},"optional":true}
13+
}

card

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{"description":"A representation of a person, company, organization, or place",
2+
"type":"object",
3+
"properties":{
4+
"fn":{"description":"Formatted Name","type":"string"},
5+
"familyName":{"type":"string", "required":true},
6+
"givenName":{"type":"string", "required":true},
7+
"additionalName":{"type":"array","items":{"type":"string"}},
8+
"honorificPrefix":{"type":"array","items":{"type":"string"}},
9+
"honorificSuffix":{"type":"array","items":{"type":"string"}},
10+
"nickname":{"type":"string"},
11+
"url":{"type":"string","format":"url"},
12+
"email":{
13+
"type":"object",
14+
"properties":{
15+
"type":{"type":"string"},
16+
"value":{"type":"string","format":"email"}},
17+
},
18+
"tel":{
19+
"type":"object",
20+
"properties":{
21+
"type":{"type":"string"},
22+
"value":{"type":"string","format":"phone"}},
23+
},
24+
"adr":"http://json-schema.org/address",
25+
"geo":"http://json-schema.org/geo",
26+
"tz":{"type":"string"},
27+
"photo":{"format":"image","type":"string"},
28+
"logo":{"format":"image","type":"string"},
29+
"sound":{"format":"attachment","type":"string"},
30+
"bday":{"type":"string","format":"date"},
31+
"title":{"type":"string"},
32+
"role":{"type":"string"},
33+
"org":{"type":"object",
34+
"properties":{
35+
"organizationName":{"type":"string"},
36+
"organizationUnit":{"type":"string"}},
37+
}
38+
}
39+
}
40+
41+
42+
43+

card-v2

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{"description":"A representation of a person, company, organization, or place",
2+
"type":"object",
3+
"properties":{
4+
"fn":{"description":"Formatted Name","type":"string","optional":true},
5+
"familyName":{"type":"string"},
6+
"givenName":{"type":"string"},
7+
"additionalName":{"type":"array","items":{"type":"string"},"optional":true},
8+
"honorificPrefix":{"type":"array","items":{"type":"string"},"optional":true},
9+
"honorificSuffix":{"type":"array","items":{"type":"string"},"optional":true},
10+
"nickname":{"type":"string","optional":true},
11+
"url":{"type":"string","format":"url","optional":true},
12+
"email":{
13+
"type":"object",
14+
"properties":{
15+
"type":{"type":"string"},
16+
"value":{"type":"string","format":"email"}},
17+
"optional":true},
18+
"tel":{
19+
"type":"object",
20+
"properties":{
21+
"type":{"type":"string"},
22+
"value":{"type":"string","format":"phone"}},
23+
"optional":true},
24+
"adr":{ "type":"object",
25+
"properties":{"$ref":"http://json-schema.org/address#properties"},
26+
"optional":true},
27+
"geo":{ "type":"object",
28+
"properties":{"$ref":"http://json-schema.org/geo#properties"},
29+
"optional":true},
30+
"tz":{"type":"string","optional":true},
31+
"photo":{"format":"image","type":"string","optional":true},
32+
"logo":{"format":"image","type":"string","optional":true},
33+
"sound":{"format":"attachment","type":"string","optional":true},
34+
"bday":{"type":"string","format":"date","optional":true},
35+
"title":{"type":"string","optional":true},
36+
"role":{"type":"string","optional":true},
37+
"org":{"type":"object",
38+
"properties":{
39+
"organizationName":{"type":"string"},
40+
"organizationUnit":{"type":"string"}},
41+
"optional":true}
42+
}
43+
}
44+
45+
46+
47+

card.properties

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"fn":{"description":"Formatted Name","type":"string","optional":true},
3+
"familyName":{"type":"string"},
4+
"givenName":{"type":"string"},
5+
"additionalName":{"type":"array","items":{"type":"string"},"optional":true},
6+
"honorificPrefix":{"type":"array","items":{"type":"string"},"optional":true},
7+
"honorificSuffix":{"type":"array","items":{"type":"string"},"optional":true},
8+
"nickname":{"type":"string","optional":true},
9+
"url":{"type":"string","format":"url","optional":true},
10+
"email":{
11+
"type":"object",
12+
"properties":{
13+
"type":{"type":"string"},
14+
"value":{"type":"string","format":"email"}},
15+
"optional":true},
16+
"tel":{
17+
"type":"object",
18+
"properties":{
19+
"type":{"type":"string"},
20+
"value":{"type":"string","format":"phone"}},
21+
"optional":true},
22+
"adr":{ "type":"object",
23+
"properties":{"$ref":"http://json-schema.org/address.properties"},
24+
"optional":true},
25+
"geo":{ "type":"object",
26+
"properties":{"$ref":"http://json-schema.org/geo.properties"},
27+
"optional":true},
28+
"tz":{"type":"string","optional":true},
29+
"photo":{"format":"image","type":"string","optional":true},
30+
"logo":{"format":"image","type":"string","optional":true},
31+
"sound":{"format":"attachment","type":"string","optional":true},
32+
"bday":{"type":"string","format":"date","optional":true},
33+
"title":{"type":"string","optional":true},
34+
"role":{"type":"string","optional":true},
35+
"org":{"type":"object",
36+
"properties":{
37+
"organizationName":{"type":"string"},
38+
"organizationUnit":{"type":"string"}},
39+
"optional":true}
40+
}

0 commit comments

Comments
 (0)