Merge · Schema

ErrorValidationProblem

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
source object
title string
detail string
problem_type string
block_merge_link boolean
raw_error string
error_code integer
View JSON Schema on GitHub

JSON Schema

merge-errorvalidationproblem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorValidationProblem",
  "title": "ErrorValidationProblem",
  "type": "object",
  "properties": {
    "source": {
      "$ref": "#/components/schemas/ValidationProblemSource"
    },
    "title": {
      "type": "string"
    },
    "detail": {
      "type": "string"
    },
    "problem_type": {
      "type": "string"
    },
    "block_merge_link": {
      "type": "boolean"
    },
    "raw_error": {
      "type": "string"
    },
    "error_code": {
      "type": "integer"
    }
  },
  "required": [
    "title",
    "detail",
    "problem_type"
  ]
}