WSO2 · Schema

API Key association

APIKeyAssociation schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
keyName string API Key name
apiName string API name
applicationName string Application name
View JSON Schema on GitHub

JSON Schema

devportal-api-api-key-association-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-api-key-association-schema.json",
  "title": "API Key association",
  "description": "APIKeyAssociation schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "keyName": {
      "type": "string",
      "description": "API Key name",
      "example": "Test_Key"
    },
    "apiName": {
      "type": "string",
      "description": "API name",
      "example": "NotificationAPI"
    },
    "applicationName": {
      "type": "string",
      "description": "Application name",
      "example": "DefaultApplication"
    }
  }
}