Apigee · Schema

ListSuspensionsResponse

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

Properties

Name Type Description
suspensions array
nextPageToken string
View JSON Schema on GitHub

JSON Schema

apigee-listsuspensionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListSuspensionsResponse",
  "title": "ListSuspensionsResponse",
  "type": "object",
  "properties": {
    "suspensions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "eventExecutionInfoId": {
            "type": "string"
          },
          "taskId": {
            "type": "string"
          },
          "createTime": {
            "type": "string",
            "format": "date-time"
          }
        }
      }
    },
    "nextPageToken": {
      "type": "string"
    }
  }
}