WSO2 · Schema

ConsumerSecretCreationRequest

ConsumerSecretCreationRequest schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
additionalProperties object Additional properties for the secret creation request.
View JSON Schema on GitHub

JSON Schema

devportal-api-consumer-secret-creation-request-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/devportal-api-consumer-secret-creation-request-schema.json",
  "title": "ConsumerSecretCreationRequest",
  "description": "ConsumerSecretCreationRequest schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "additionalProperties": {
      "type": "object",
      "description": "Additional properties for the secret creation request.",
      "additionalProperties": {
        "type": "object"
      },
      "example": {
        "expiresIn": 86400,
        "description": "pizza application secret"
      }
    }
  },
  "example": {
    "additionalProperties": {
      "expiresIn": 86400,
      "description": "pizza application secret"
    }
  }
}