WSO2 · JSON Structure

Publisher Api Certificates Structure

Representation of a list of certificates

Type: object Properties: 3
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

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

Properties

count certificates pagination

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/publisher-api-certificates-structure.json",
  "name": "Certificates",
  "description": "Representation of a list of certificates",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "example": 1
    },
    "certificates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CertMetadata"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    }
  }
}