{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountIdEmailRecord", "title": "AccountIdEmailRecord", "required": [ "accountId", "email" ], "type": "object", "properties": { "accountId": { "type": "string", "example": "500123" }, "email": { "type": "string", "example": "[email protected]" } } }