Unified.to · Schema

AtsGroup

IntegrationsUnified API

Properties

Name Type Description
id string
name string
type string
View JSON Schema on GitHub

JSON Schema

unified-to-atsgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtsGroup",
  "title": "AtsGroup",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "enum": [
        "TEAM",
        "GROUP",
        "DEPARTMENT",
        "DIVISION",
        "BUSINESS_UNIT",
        "BRANCH",
        "SUB_DEPARTMENT"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "type": "object"
}