{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://offeringprotocol.org/schemas/mcp-endpoint.schema.json",
  "title": "ODP MCP Endpoint Descriptor",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "url"
  ],
  "properties": {
    "description": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1024
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "type": {
      "const": "streamable-http"
    },
    "url": {
      "$ref": "resource-reference.schema.json"
    }
  }
}
