Speakeasy · Schema

ShortURL

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
short_url string
full_url string
View JSON Schema on GitHub

JSON Schema

speakeasy-shorturl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShortURL",
  "title": "ShortURL",
  "type": "object",
  "properties": {
    "short_url": {
      "type": "string"
    },
    "full_url": {
      "type": "string"
    }
  },
  "required": [
    "short_url",
    "full_url"
  ]
}