Apigee · Schema

BatchEditTagsRequest

Request for batch editing tags on API observations.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
requests array List of tag edit requests.
View JSON Schema on GitHub

JSON Schema

apigee-batchedittagsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchEditTagsRequest",
  "title": "BatchEditTagsRequest",
  "type": "object",
  "description": "Request for batch editing tags on API observations.",
  "properties": {
    "requests": {
      "type": "array",
      "description": "List of tag edit requests.",
      "items": {
        "type": "object",
        "properties": {
          "apiObservationId": {
            "type": "string"
          },
          "tagActions": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "tag": {
                  "type": "string"
                },
                "action": {
                  "type": "string",
                  "enum": [
                    "ACTION_UNSPECIFIED",
                    "ADD",
                    "REMOVE"
                  ]
                }
              }
            }
          }
        }
      }
    }
  }
}