Merge · Schema

AdvancedMetadata

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
display_name string
description string
is_required boolean
is_custom boolean
field_choices array
View JSON Schema on GitHub

JSON Schema

merge-advancedmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdvancedMetadata",
  "title": "AdvancedMetadata",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "display_name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "is_required": {
      "type": "boolean"
    },
    "is_custom": {
      "type": "boolean"
    },
    "field_choices": {
      "type": "array",
      "items": {
        "description": "Any type"
      }
    }
  },
  "required": [
    "id"
  ]
}