Unified.to · Schema

KmsSpace

IntegrationsUnified API

Properties

Name Type Description
created_at string
description string
id string
is_active boolean
name string
parent_id string
parent_page_id string
raw object
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-kmsspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KmsSpace",
  "title": "KmsSpace",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "parent_id": {
      "type": "string"
    },
    "parent_page_id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}