WSO2 · Schema

API monetization details object

MonetizationInfo schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
monetizationPlan string Flag to indicate the monetization plan
properties object Map of custom properties related to each monetization plan
View JSON Schema on GitHub

JSON Schema

admin-api-monetization-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/admin-api-monetization-info-schema.json",
  "title": "API monetization details object",
  "description": "MonetizationInfo schema from WSO2 API Manager",
  "required": [
    "properties"
  ],
  "type": "object",
  "properties": {
    "monetizationPlan": {
      "type": "string",
      "description": "Flag to indicate the monetization plan",
      "example": "FixedRate",
      "enum": [
        "FIXEDRATE",
        "DYNAMICRATE"
      ]
    },
    "properties": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Map of custom properties related to each monetization plan"
    }
  }
}