{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Seatholder", "title": "Seatholder", "type": "object", "properties": { "seatUrn": { "type": "string", "example": "urn:li:seat:12345" }, "firstName": { "type": "string", "example": "Jane" }, "lastName": { "type": "string", "example": "Recruiter" }, "emailAddress": { "type": "string", "format": "email", "example": "jane.recruiter@company.com" }, "active": { "type": "boolean", "example": true } } }