Speakeasy · Schema

OASInfo

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
title string
summary string
description string
version string
license object
View JSON Schema on GitHub

JSON Schema

speakeasy-oasinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OASInfo",
  "title": "OASInfo",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "license": {
      "type": "object",
      "properties": {
        "identifier": {
          "type": "string"
        }
      }
    }
  },
  "required": [
    "title",
    "summary",
    "description",
    "version",
    "license"
  ]
}