Speakeasy · Schema

SuggestRequestBody

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

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

JSON Schema

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