StackOne · Schema

TimeOffTypeEnum

IntegrationsiPaaS

Properties

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

JSON Schema

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