StackOne · Schema

MaritalStatusEnum

IntegrationsiPaaS

Properties

Name Type Description
source_value string
value string
View JSON Schema on GitHub

JSON Schema

stackone-maritalstatusenum-schema.json Raw ↑
{
  "$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"
  ]
}