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