Speakeasy · Schema

AccessDetails

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
generation_allowed boolean
message string
level string
View JSON Schema on GitHub

JSON Schema

speakeasy-accessdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccessDetails",
  "title": "AccessDetails",
  "type": "object",
  "properties": {
    "generation_allowed": {
      "type": "boolean"
    },
    "message": {
      "type": "string"
    },
    "level": {
      "type": "string",
      "enum": [
        "allowed",
        "warning",
        "blocked"
      ]
    }
  },
  "required": [
    "generation_allowed",
    "message"
  ]
}