Merge · Schema

CreateTargetFieldRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
name string The name of the target field.
description string The description of the target field.
common_model string The name of the Common Model to associate the target field with.
View JSON Schema on GitHub

JSON Schema

merge-createtargetfieldrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTargetFieldRequest",
  "title": "CreateTargetFieldRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the target field."
    },
    "description": {
      "type": "string",
      "default": "",
      "description": "The description of the target field."
    },
    "common_model": {
      "type": "string",
      "description": "The name of the Common Model to associate the target field with."
    }
  },
  "required": [
    "name",
    "common_model"
  ]
}