Speakeasy · Schema

SuggestOptsOld

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
suggestion_type string
diagnostics array
View JSON Schema on GitHub

JSON Schema

speakeasy-suggestoptsold-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SuggestOptsOld",
  "title": "SuggestOptsOld",
  "type": "object",
  "properties": {
    "suggestion_type": {
      "type": "string",
      "enum": [
        "method-names",
        "diagnostics-only"
      ]
    },
    "diagnostics": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Diagnostic"
      }
    }
  },
  "required": [
    "suggestion_type"
  ]
}