Apideck · Schema

Gender

The gender represents the gender identity of a person.

IntegrationsUnified API
View JSON Schema on GitHub

JSON Schema

apideck-gender-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Gender",
  "title": "Gender",
  "type": "string",
  "x-apideck-enum-id": "genders",
  "description": "The gender represents the gender identity of a person.",
  "enum": [
    "male",
    "female",
    "unisex",
    "other",
    "not_specified"
  ],
  "example": "male",
  "nullable": true
}