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