Skip to content
Permalink
Newer
Older
100644 71 lines (71 sloc) 1.22 KB
April 9, 2020 19:55
1
---
2
"$id": https://example.com/address.schema.json
3
"$schema": http://json-schema.org/draft-07/schema#
4
description: A representation of a person, company, organization, or place
5
type: object
6
required:
7
- familyName
8
- givenName
9
properties:
10
fn:
11
description: Formatted Name
12
type: string
13
familyName:
14
type: string
15
givenName:
16
type: string
17
additionalName:
18
type: array
19
items:
20
type: string
21
honorificPrefix:
22
type: array
23
items:
24
type: string
25
honorificSuffix:
26
type: array
27
items:
28
type: string
29
nickname:
30
type: string
31
url:
32
type: string
33
email:
34
type: object
35
properties:
36
type:
37
type: string
38
value:
39
type: string
40
tel:
41
type: object
42
properties:
43
type:
44
type: string
45
value:
46
type: string
47
adr:
48
"$ref": http://example.com/address.schema.json
49
geo:
50
"$ref": http://example.com/geographical-location.schema.json
51
tz:
52
type: string
53
photo:
54
type: string
55
logo:
56
type: string
57
sound:
58
type: string
59
bday:
60
type: string
61
title:
62
type: string
63
role:
64
type: string
65
org:
66
type: object
67
properties:
68
organizationName:
69
type: string
70
organizationUnit:
71
type: string