WSO2 · JSON Structure

Devportal Api Monetization Info Structure

MonetizationInfo schema from WSO2 API Manager

Type: object Properties: 5
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Monetization is a JSON Structure definition published by WSO2, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

billingType billingCycle fixedPrice pricePerRequest currencyType

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/devportal-api-monetization-info-structure.json",
  "name": "Monetization",
  "description": "MonetizationInfo schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "billingType": {
      "type": "string",
      "example": "fixedPrice",
      "enum": [
        "fixedPrice",
        "dynamicRate"
      ]
    },
    "billingCycle": {
      "type": "string",
      "example": "month"
    },
    "fixedPrice": {
      "type": "string",
      "example": "10"
    },
    "pricePerRequest": {
      "type": "string",
      "example": "1"
    },
    "currencyType": {
      "type": "string",
      "example": "USD"
    }
  }
}