{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationStatusEnum", "title": "ApplicationStatusEnum", "type": "object", "properties": { "source_value": { "type": "string" }, "value": { "type": "string", "enum": [ "active", "converted", "hired", "lead", "rejected", "unmapped_value" ] } }, "required": [ "value", "source_value" ] }