Skip to content

Commit a096cf6

Browse files
authored
feat: updated user ontology (#939)
1 parent 68e29d1 commit a096cf6

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

services/ontology/schemas/user.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,50 @@
1717
"type": "string",
1818
"description": "The user's display name or full name"
1919
},
20+
"givenName": {
21+
"type": "string",
22+
"description": "The user's given name"
23+
},
24+
"familyName": {
25+
"type": "string",
26+
"description": "The user's family name"
27+
},
28+
"email": {
29+
"type": "string",
30+
"format": "email",
31+
"description": "The user's email address"
32+
},
33+
"telephone": {
34+
"type": "string",
35+
"description": "The user's telephone number"
36+
},
37+
"address": {
38+
"type": "object",
39+
"description": "The user's postal address",
40+
"properties": {
41+
"streetAddress": {
42+
"type": "string",
43+
"description": "The street address"
44+
},
45+
"postalCode": {
46+
"type": "string",
47+
"description": "The postal code"
48+
},
49+
"addressLocality": {
50+
"type": "string",
51+
"description": "The locality or city"
52+
},
53+
"addressCountry": {
54+
"type": "string",
55+
"description": "The country"
56+
}
57+
},
58+
"additionalProperties": false
59+
},
60+
"inLanguage": {
61+
"type": "string",
62+
"description": "The language associated with the user profile"
63+
},
2064
"bio": {
2165
"type": "string",
2266
"description": "The user's biography or description"

0 commit comments

Comments
 (0)