{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Person", "title": "Person", "type": "object", "properties": { "Personid": { "type": "integer", "description": "Person identifier" }, "FirstName": { "type": "string", "description": "First name" }, "LastName": { "type": "string", "description": "Last name" }, "DisplayName": { "type": "string", "description": "Display name" }, "Email": { "type": "string", "format": "email", "description": "Email address" }, "PhoneNumber": { "type": "string", "description": "Phone number" }, "CreationDate": { "type": "string", "format": "date-time" } } }