WSO2 · JSON Structure

Publisher Api Security Info Structure

Optional security headers to use during URL validation.

Type: object Properties: 3
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

MCP Server Security Information 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

isSecure header value

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-security-info-structure.json",
  "name": "MCP Server Security Information",
  "description": "Optional security headers to use during URL validation.",
  "type": "object",
  "properties": {
    "isSecure": {
      "type": "boolean",
      "description": "Indicates whether the URL is secure (HTTPS) or not (HTTP).",
      "default": false
    },
    "header": {
      "type": "string",
      "description": "Header name used for authentication, if required.",
      "example": "Authorization"
    },
    "value": {
      "type": "string",
      "description": "Value used for the authentication header.",
      "example": "Bearer <token>"
    }
  }
}