Red Hat 3scale · Schema

ReportRequest

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Properties

Name Type Description
provider_key string The provider key
service_id string The service ID
transactions array Array of transaction objects to report
View JSON Schema on GitHub

JSON Schema

red-hat-3scale-reportrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportRequest",
  "title": "ReportRequest",
  "type": "object",
  "required": [
    "provider_key"
  ],
  "properties": {
    "provider_key": {
      "type": "string",
      "description": "The provider key"
    },
    "service_id": {
      "type": "string",
      "description": "The service ID"
    },
    "transactions": {
      "type": "array",
      "description": "Array of transaction objects to report",
      "items": {
        "type": "object"
      }
    }
  }
}