{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AtsEmail", "title": "AtsEmail", "properties": { "email": { "type": "string" }, "name": { "type": "string" }, "type": { "enum": [ "WORK", "HOME", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" } }, "required": [ "email" ], "type": "object" }