Merge · Schema

ItemSchema

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
item_type object
item_format object
item_choices array
View JSON Schema on GitHub

JSON Schema

merge-itemschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemSchema",
  "title": "ItemSchema",
  "type": "object",
  "properties": {
    "item_type": {
      "$ref": "#/components/schemas/ItemTypeEnum"
    },
    "item_format": {
      "$ref": "#/components/schemas/ItemFormatEnum"
    },
    "item_choices": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}