Speakeasy · Schema

AddTags

Request body of tags to add to a revision

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
revision_digest string revision digest to add tags too sha256:...
tags array string tags to add to the revision
View JSON Schema on GitHub

JSON Schema

speakeasy-addtags-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddTags",
  "title": "AddTags",
  "description": "Request body of tags to add to a revision",
  "properties": {
    "revision_digest": {
      "description": "revision digest to add tags too sha256:...",
      "type": "string"
    },
    "tags": {
      "description": "string tags to add to the revision",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "revision_digest",
    "tags"
  ],
  "type": "object"
}