From 0e731f34d5def36b8a3e85bcfde5bc83619bf991 Mon Sep 17 00:00:00 2001 From: dima Date: Wed, 1 Apr 2026 18:36:02 +0300 Subject: [PATCH] feat: updated user ontology --- services/ontology/schemas/user.json | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/services/ontology/schemas/user.json b/services/ontology/schemas/user.json index 0a0fa1ec7..3b23fb7cb 100644 --- a/services/ontology/schemas/user.json +++ b/services/ontology/schemas/user.json @@ -17,6 +17,50 @@ "type": "string", "description": "The user's display name or full name" }, + "givenName": { + "type": "string", + "description": "The user's given name" + }, + "familyName": { + "type": "string", + "description": "The user's family name" + }, + "email": { + "type": "string", + "format": "email", + "description": "The user's email address" + }, + "telephone": { + "type": "string", + "description": "The user's telephone number" + }, + "address": { + "type": "object", + "description": "The user's postal address", + "properties": { + "streetAddress": { + "type": "string", + "description": "The street address" + }, + "postalCode": { + "type": "string", + "description": "The postal code" + }, + "addressLocality": { + "type": "string", + "description": "The locality or city" + }, + "addressCountry": { + "type": "string", + "description": "The country" + } + }, + "additionalProperties": false + }, + "inLanguage": { + "type": "string", + "description": "The language associated with the user profile" + }, "bio": { "type": "string", "description": "The user's biography or description"