StackOne · Schema

EmployeeCustomFieldTypeEnum

IntegrationsiPaaS

Properties

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

JSON Schema

stackone-employeecustomfieldtypeenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmployeeCustomFieldTypeEnum",
  "title": "EmployeeCustomFieldTypeEnum",
  "type": "object",
  "properties": {
    "source_value": {
      "type": "string"
    },
    "value": {
      "type": "string",
      "enum": [
        "date",
        "float",
        "integer",
        "list",
        "text",
        "unmapped_value"
      ]
    }
  },
  "required": [
    "value",
    "source_value"
  ]
}