WSO2 · Schema

ResourcePath

ResourcePath schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
id integer
resourcePath string
httpVerb string
View JSON Schema on GitHub

JSON Schema

publisher-api-resource-path-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/publisher-api-resource-path-schema.json",
  "title": "ResourcePath",
  "description": "ResourcePath schema from WSO2 API Manager",
  "required": [
    "id"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 1
    },
    "resourcePath": {
      "type": "string",
      "example": "/menu"
    },
    "httpVerb": {
      "type": "string",
      "example": "GET"
    }
  }
}