Speakeasy · Schema

Diagnostic

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
message string Message describing the issue
path array Schema path to the issue
type string Issue type
helpMessage string Help message for how to fix the issue
View JSON Schema on GitHub

JSON Schema

speakeasy-diagnostic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Diagnostic",
  "title": "Diagnostic",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Message describing the issue"
    },
    "path": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Schema path to the issue"
    },
    "type": {
      "type": "string",
      "description": "Issue type"
    },
    "helpMessage": {
      "type": "string",
      "description": "Help message for how to fix the issue"
    }
  },
  "required": [
    "message",
    "path",
    "type"
  ]
}