StackOne · Schema

LocationTypeEnum

IntegrationsiPaaS

Properties

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

JSON Schema

stackone-locationtypeenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationTypeEnum",
  "title": "LocationTypeEnum",
  "type": "object",
  "properties": {
    "source_value": {
      "type": "string"
    },
    "value": {
      "type": "string",
      "enum": [
        "home",
        "work",
        "unmapped_value"
      ]
    }
  },
  "required": [
    "value",
    "source_value"
  ]
}