Merge · Schema

FieldMappingInstanceResponse

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
model object
warnings array
errors array
logs array
View JSON Schema on GitHub

JSON Schema

merge-fieldmappinginstanceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldMappingInstanceResponse",
  "title": "FieldMappingInstanceResponse",
  "type": "object",
  "properties": {
    "model": {
      "$ref": "#/components/schemas/FieldMappingApiInstance"
    },
    "warnings": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WarningValidationProblem"
      }
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ErrorValidationProblem"
      }
    },
    "logs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DebugModeLog"
      }
    }
  },
  "required": [
    "model",
    "warnings",
    "errors"
  ]
}