Axway · Schema

platform.usage.report

Published when usage is reported.

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
end_date integer End date of the report.
env_guid string Environment guid for which the report was uploaded.
guid string Unique identifier of the report.
name string Name of the uploaded usage report file.
org_guid string Organization guid for which the report was uploaded.
product_name string (Optional) Product name for which the usage was reported.
product_version string (Optional) Product version for which the usage was reported.
start_date integer Start date of the report.
status string Status of the report.
upload_method string Method used to upload the usage report file.
View JSON Schema on GitHub

JSON Schema

amplify-platform-platform.usage.report-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/axway/amplify-platform-platform.usage.report-schema.json",
  "title": "platform.usage.report",
  "description": "Published when usage is reported.",
  "type": "object",
  "properties": {
    "end_date": {
      "type": "integer",
      "description": "End date of the report.",
      "example": 1714000000000
    },
    "env_guid": {
      "type": "string",
      "description": "Environment guid for which the report was uploaded.",
      "example": "example_value"
    },
    "guid": {
      "type": "string",
      "description": "Unique identifier of the report.",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "Name of the uploaded usage report file.",
      "example": "Example Name"
    },
    "org_guid": {
      "type": "string",
      "description": "Organization guid for which the report was uploaded.",
      "example": "example_value"
    },
    "product_name": {
      "type": "string",
      "description": "(Optional) Product name for which the usage was reported.",
      "example": "Example Name"
    },
    "product_version": {
      "type": "string",
      "description": "(Optional) Product version for which the usage was reported.",
      "example": "example_value"
    },
    "start_date": {
      "type": "integer",
      "description": "Start date of the report.",
      "example": 1714000000000
    },
    "status": {
      "type": "string",
      "description": "Status of the report.",
      "enum": [
        "VALIDATING",
        "VALIDATED",
        "PROCESSED",
        "INVALIDATED",
        "PARTIALLY_ACCEPTED",
        "MISSING_EVENTS",
        "INVALID_METRICS",
        "ENRICHMENT_ERROR",
        "ANALYTICS_UPLOAD_FAILED",
        "ANALYTICS_MISSMATCH",
        "ANALYTICS_ERROR",
        "INVALID_ENVIRONMENT",
        "MISSING_FILE"
      ],
      "example": "VALIDATING"
    },
    "upload_method": {
      "type": "string",
      "description": "Method used to upload the usage report file.",
      "enum": [
        "automatic",
        "manual",
        "entry"
      ],
      "example": "automatic"
    }
  }
}