StackOne · Schema

EmploymentScheduleTypeEnum

IntegrationsiPaaS

Properties

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

JSON Schema

stackone-employmentscheduletypeenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmploymentScheduleTypeEnum",
  "title": "EmploymentScheduleTypeEnum",
  "type": "object",
  "properties": {
    "source_value": {
      "type": "string"
    },
    "value": {
      "type": "string",
      "enum": [
        "full_time",
        "shifts",
        "part_time",
        "unmapped_value"
      ]
    }
  },
  "required": [
    "value",
    "source_value"
  ]
}