WSO2 · JSON Structure

Devops Api Logging Api Output Structure

LoggingApiOutput schema from WSO2 API Manager

Type: object Properties: 5 Required: 3
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

API Info object with log details is a JSON Structure definition published by WSO2, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

context logLevel apiId resourceMethod resourcePath

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/devops-api-logging-api-output-structure.json",
  "name": "API Info object with log details",
  "description": "LoggingApiOutput schema from WSO2 API Manager",
  "type": "object",
  "required": [
    "context",
    "logLevel",
    "apiId"
  ],
  "properties": {
    "context": {
      "type": "string",
      "example": "pizashack/v1.0.0"
    },
    "logLevel": {
      "type": "string",
      "example": "FULL"
    },
    "apiId": {
      "type": "string",
      "example": "12d6e73c-778d-45ac-b57d-117c6c5092a4"
    },
    "resourceMethod": {
      "type": "string",
      "example": "GET"
    },
    "resourcePath": {
      "type": "string",
      "example": "/v1.0.0/pizza"
    }
  }
}