WSO2 · JSON Structure

Admin Api Monetization Info Structure

MonetizationInfo schema from WSO2 API Manager

Type: object Properties: 2 Required: 1
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

API monetization details object is a JSON Structure definition published by WSO2, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

monetizationPlan properties

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-structure/admin-api-monetization-info-structure.json",
  "name": "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"
    }
  }
}