-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.json
47 lines (43 loc) · 1.6 KB
/
card.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
{"description":"A representation of a person, company, organization, or place",
"type":"object",
"properties":{
"fn":{"description":"Formatted Name","type":"string","optional":true},
"familyName":{"type":"string"},
"givenName":{"type":"string"},
"additionalName":{"type":"array","items":{"type":"string"},"optional":true},
"honorificPrefix":{"type":"array","items":{"type":"string"},"optional":true},
"honorificSuffix":{"type":"array","items":{"type":"string"},"optional":true},
"nickname":{"type":"string","optional":true},
"url":{"type":"string","format":"url","optional":true},
"email":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"email"}},
"optional":true},
"tel":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"phone"}},
"optional":true},
"adr":{ "type":"object",
"properties":{"$ref":"http://json-schema.org/address#properties"},
"optional":true},
"geo":{ "type":"object",
"properties":{"$ref":"http://json-schema.org/geo#properties"},
"optional":true},
"tz":{"type":"string","optional":true},
"photo":{"format":"image","type":"string","optional":true},
"logo":{"format":"image","type":"string","optional":true},
"sound":{"format":"attachment","type":"string","optional":true},
"bday":{"type":"string","format":"date","optional":true},
"title":{"type":"string","optional":true},
"role":{"type":"string","optional":true},
"org":{"type":"object",
"properties":{
"organizationName":{"type":"string"},
"organizationUnit":{"type":"string"}},
"optional":true}
}
}