{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MaritalStatusEnum", "title": "MaritalStatusEnum", "type": "object", "properties": { "source_value": { "type": "string" }, "value": { "type": "string", "enum": [ "single", "married", "common_law", "divorced", "widowed", "domestic_partnership", "separated", "other", "not_disclosed", "unmapped_value" ] } }, "required": [ "value", "source_value" ] }