StackOne · Schema

EthnicityEnum

IntegrationsiPaaS

Properties

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

JSON Schema

stackone-ethnicityenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EthnicityEnum",
  "title": "EthnicityEnum",
  "type": "object",
  "properties": {
    "source_value": {
      "type": "string"
    },
    "value": {
      "type": "string",
      "enum": [
        "white",
        "black_or_african_american",
        "asian",
        "hispanic_or_latino",
        "american_indian_or_alaska_native",
        "native_hawaiian_or_pacific_islander",
        "two_or_more_races",
        "not_disclosed",
        "other",
        "unmapped_value"
      ]
    }
  },
  "required": [
    "value",
    "source_value"
  ]
}