From 15339598fed34ab5b7f1bb63492dd09fa2c9337e Mon Sep 17 00:00:00 2001 From: Nate Barbettini Date: Mon, 17 Mar 2025 11:24:24 -0700 Subject: [PATCH] fix: Updates to versioning, auth --- app/page.mdx | 2 +- app/spec-1.0/protocol/call-tool/page.mdx | 122 +++++++++--------- app/spec-1.0/protocol/health-check/page.mdx | 5 + app/spec-1.0/protocol/list-tools/page.mdx | 70 +++++----- .../schemas/call-tool-response/page.mdx | 40 ++++++ app/spec-1.0/schemas/errors/page.mdx | 71 +++++++++- app/spec-1.0/schemas/tool-definition/page.mdx | 98 ++++++-------- app/spec-1.0/versioning/page.mdx | 28 +--- 8 files changed, 258 insertions(+), 178 deletions(-) diff --git a/app/page.mdx b/app/page.mdx index 48a919b..b3b4b8c 100644 --- a/app/page.mdx +++ b/app/page.mdx @@ -12,7 +12,7 @@ We envision a world in which agents can discover and interact with thousands upo ## What is OXP? -The Open eXecution Protocol is a [standardized protocol](https://github.com/OpenToolCalling/Specification/tree/main/spec/http/1.0/openapi.json) that enables AI agents to discover and interact with external tools in a consistent, reliable way. It establishes a structured communication framework between agents (clients) and tools (functions or services), creating a unified language for tool definitions, requests, and responses. +The Open eXecution Protocol is a [specification](https://github.com/OpenToolCalling/Specification/tree/main/spec/http/1.0/openapi.json) that enables AI agents to discover and interact with external tools in a consistent, reliable way. It establishes a structured communication framework between agents (clients) and tools (functions or services), creating a unified language for tool definitions, requests, and responses. At its core, OXP provides: diff --git a/app/spec-1.0/protocol/call-tool/page.mdx b/app/spec-1.0/protocol/call-tool/page.mdx index 94f7087..3b59d48 100644 --- a/app/spec-1.0/protocol/call-tool/page.mdx +++ b/app/spec-1.0/protocol/call-tool/page.mdx @@ -10,23 +10,31 @@ This flow lets clients call a tool and receive its output, with the request and - **Method:** POST - **Endpoint:** `/tools/call` - **Security:** Servers MAY require bearer authentication (JWT). Servers that are internet-facing SHOULD require authentication. -- **Payload:** A JSON document containing: - - **`$schema` Field** (optional): The client MAY include a `$schema` field in the request body to indicate the version of OXP that the client supports. If the `$schema` field is not included, the server MUST assume the client supports the latest version of OXP. - - **`request` Object:** A JSON document following the [Call Tool Request](../schemas/call-tool-request) schema. +- **Headers:** + - `OXP-Version` (optional, string): The [version](../versioning) of OXP that the client supports. If not provided, the server MAY assume the client supports the latest version of OXP. +- **Payload:** A JSON document following the [Call Tool Request](../schemas/call-tool-request) schema. **Response (Tool Execution):** - **Status Code:** 200 OK -- **Content:** A JSON document following the [Call Tool Response](../schemas/call-tool-response) schema. The server MUST return a 200 response even if the tool call fails. +- **Headers:** + - `OXP-Version` (string): The [version](../versioning) of OXP used by the server. +- **Content:** A JSON document following the [Call Tool Response](../schemas/call-tool-response) schema. + +The server MUST return a 200 response, even if the tool call encounters an error. **Response (Server Error):** - **Status Code:** 400 +- **Headers:** + - `OXP-Version` (string): The version of OXP used by the server. - **Content:** A JSON document following the `ServerErrorResponse` schema. **Response (Input Validation Error):** - **Status Code:** 422 +- **Headers:** + - `OXP-Version` (string): The version of OXP used by the server. - **Content:** A JSON document following the `ValidationErrorResponse` schema. ## Tool Version Resolution @@ -49,16 +57,26 @@ Servers MUST differentiate between: ### Server Errors -If an error occurs before the tool is called that is not related to input validation, the server MUST return a 400 response conforming to the [Server Error Response](../schemas/errors#servererrorresponse) schema. Examples of such errors include: +If an error occurs before the tool is called that is not related to input validation, the server MUST return a 400 response conforming to the [Server Error Response](../schemas/errors#server-error-response) schema. Examples of such errors include: - The tool server is temporarily unavailable. - The requested version of OXP is not supported. - The requested tool ID is invalid or cannot be found. - The requested tool version is not available. -- The tool server requires authentication, but the client did not provide valid credentials. +- The tool server requires authentication, but the client did not provide valid credentials (see below, Tool Authorization Challenges). The `message` field MUST be present and SHOULD be a user-facing error message. The `developer_message` field MAY be present and SHOULD be an internal message that can be logged but will not be shown to the user or an AI model. +### Tool Authorization Challenges + +If a tool requires authorization that has not been completed, the server MUST return a 400 response conforming to the Server Error Response's [Tool Authorization Challenge](../schemas/errors#tool-authorization-challenge) schema, with a `missing_requirements.authorization` array. + +The client SHOULD display the `url` to the user to complete the authorization challenge. + +The client MAY poll the `check_url` to check the status of the authorization challenge. The `check_url` endpoint MUST return a 200 response containing a JSON document conforming to the [Authorization Challenge Check Response](../schemas/errors#authorization-challenge-check-response) schema. + +If the challenge is completed, the client MAY retry the tool call. + ### Input Validation Errors When a valid tool ID and version are provided, servers MUST validate the input parameters against the tool's `input_schema` before calling the tool. @@ -86,18 +104,15 @@ The following examples are non-normative and are provided to illustrate the use ```http POST /call HTTP/1.1 Host: api.example.com -Content-Type: application/json Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... +Content-Type: application/json { - "$schema": "urn:oxp:1.0", - "request": { - "call_id": "123e4567-e89b-12d3-a456-426614174000", - "tool_id": "Calculator.Add@1.0.0", - "input": { - "a": 10, - "b": 5 - } + "call_id": "123e4567-e89b-12d3-a456-426614174000", + "tool_id": "Calculator.Add@1.0.0", + "input": { + "a": 10, + "b": 5 } } ``` @@ -107,15 +122,13 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... ```http HTTP/1.1 200 OK Content-Type: application/json +OXP-Version: 1.0 { - "$schema": "urn:oxp:1.0", - "result": { - "call_id": "123e4567-e89b-12d3-a456-426614174000", - "duration": 2, - "success": true, - "value": 15 - } + "call_id": "123e4567-e89b-12d3-a456-426614174000", + "duration": 2, + "success": true, + "value": 15 } ``` @@ -128,15 +141,12 @@ In this example, the tool call fails because the tool version is not found. ```http POST /call HTTP/1.1 Host: api.example.com -Content-Type: application/json Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... +Content-Type: application/json { - "$schema": "urn:oxp:1.0", - "request": { - "call_id": "123e4567-e89b-12d3-a456-426614174000", - "tool_id": "Calculator.Add@2.0.0" - } + "call_id": "123e4567-e89b-12d3-a456-426614174000", + "tool_id": "Calculator.Add@2.0.0" } ``` @@ -145,9 +155,9 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... ```http HTTP/1.1 400 Bad Request Content-Type: application/json +OXP-Version: 1.0 { - "$schema": "urn:oxp:1.0", "message": "Tool 'Calculator_Add' was not found", "developer_message": "Calculator.Add version 2.0.0 is not available" } @@ -162,18 +172,15 @@ In this example, the tool call fails because the second input parameter is not a ```http POST /call HTTP/1.1 Host: api.example.com -Content-Type: application/json Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... +Content-Type: application/json { - "$schema": "urn:oxp:1.0", - "request": { - "call_id": "123e4567-e89b-12d3-a456-426614174000", - "tool_id": "Calculator.Add@1.0.0", - "input": { - "a": 10, - "b": "infinity" - } + "call_id": "123e4567-e89b-12d3-a456-426614174000", + "tool_id": "Calculator.Add@1.0.0", + "input": { + "a": 10, + "b": "infinity" } } ``` @@ -183,9 +190,9 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... ```http HTTP/1.1 422 Unprocessable Entity Content-Type: application/json +OXP-Version: 1.0 { - "$schema": "urn:oxp:1.0", "message": "Some input parameters are invalid", "parameter_errors": { "b": "Must be a number" @@ -202,17 +209,14 @@ In this example, the tool call fails because the doorbell ID is not found. The t ```http POST /call HTTP/1.1 Host: api.example.com -Content-Type: application/json Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... +Content-Type: application/json { - "$schema": "urn:oxp:1.0", - "request": { - "call_id": "723e4567-e89b-12d3-a456-426614174006", - "tool_id": "Doorbell.Ring@0.1.0", - "input": { - "doorbell_id": "doorbell1" - } + "call_id": "723e4567-e89b-12d3-a456-426614174006", + "tool_id": "Doorbell.Ring@0.1.0", + "input": { + "doorbell_id": "doorbell1" } } ``` @@ -222,20 +226,18 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... ```http HTTP/1.1 200 OK Content-Type: application/json +OXP-Version: 1.0 { - "$schema": "urn:oxp:1.0", - "result": { - "call_id": "723e4567-e89b-12d3-a456-426614174006", - "duration": 60, - "success": false, - "error": { - "message": "Doorbell ID not found", - "developer_message": "The doorbell with ID 'doorbell1' does not exist.", - "can_retry": true, - "additional_prompt_content": "ids: doorbell42,doorbell84", - "retry_after_ms": 500 - } - } + "call_id": "723e4567-e89b-12d3-a456-426614174006", + "duration": 60, + "success": false, + "error": { + "message": "Doorbell ID not found", + "developer_message": "The doorbell with ID 'doorbell1' does not exist.", + "can_retry": true, + "additional_prompt_content": "ids: doorbell42,doorbell84", + "retry_after_ms": 500 + } } ``` diff --git a/app/spec-1.0/protocol/health-check/page.mdx b/app/spec-1.0/protocol/health-check/page.mdx index ad6b1cb..1886e6e 100644 --- a/app/spec-1.0/protocol/health-check/page.mdx +++ b/app/spec-1.0/protocol/health-check/page.mdx @@ -9,10 +9,14 @@ An OXP server MUST implement a health check endpoint that returns a 200 OK respo - **Method:** GET - **Endpoint:** `/health` - **Security:** No authentication is required. +- **Headers:** + - `OXP-Version` (optional, string): The [version](../versioning) of OXP that the client supports. If not provided, the server MAY assume the client supports the latest version of OXP. **Response:** - **Status Code:** 200 OK +- **Headers:** + - `OXP-Version` (string): The [version](../versioning) of OXP used by the server. If the server is ready to receive tool calls, the server MUST return a 200 OK response. The server MAY return an HTTP 503 response if it is not ready to receive tool calls. @@ -30,4 +34,5 @@ GET /health HTTP/1.1 ```http HTTP/1.1 200 OK +OXP-Version: 1.0 ``` diff --git a/app/spec-1.0/protocol/list-tools/page.mdx b/app/spec-1.0/protocol/list-tools/page.mdx index b4f071c..4acec4e 100644 --- a/app/spec-1.0/protocol/list-tools/page.mdx +++ b/app/spec-1.0/protocol/list-tools/page.mdx @@ -1,6 +1,6 @@ # List Tools -Clients perform tool discovery by retrieving tool definitions from the Tool Server using the `/tools` endpoint. This protocol provides a catalog of tools that the client can use, all of which conform to the [`ToolDefinition` schema](../schemas/tool-definition). +Clients perform tool discovery by retrieving tool definitions from the Tool Server using the `/tools` endpoint. This protocol provides a catalog of tools that the client can use, all of which conform to the [Tool Definition schema](../schemas/tool-definition). ## Flow Details @@ -9,13 +9,15 @@ Clients perform tool discovery by retrieving tool definitions from the Tool Serv - **Method:** GET - **Endpoint:** `/tools` - **Security:** Servers MAY require bearer authentication (JWT). Servers that are internet-facing SHOULD require authentication. -- **Payload:** A JSON document containing: - - **`$schema` Field** (optional): The client MAY include a `$schema` field in the request body to indicate the version of OXP that the client supports. If the `$schema` field is not included, the server MUST assume the client supports the latest version of OXP. +- **Headers:** + - `OXP-Version` (optional, string): The [version](../versioning) of OXP that the client supports. If not provided, the server MAY assume the client supports the latest version of OXP. **Response:** - **Status Code:** 200 OK - - **Content:** A JSON object that includes a `$schema` URI reference (indicating the [OXP version](../versioning)) and a `tools` array. Each element in the array is a complete [Tool Definition](../schemas/tool-definition). If there are no tools available, the `tools` array MUST be empty. +- **Headers:** + - `OXP-Version` (string): The [version](../versioning) of OXP used by the server. +- **Content:** A JSON document containing an `items` array of [Tool Definitions](../schemas/tool-definition). If there are no tools available, the `items` array MUST be empty. ## Non-Normative Example @@ -31,39 +33,43 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... **Response (No Tools)** -```json +```http +HTTP/1.1 200 OK +Content-Type: application/json +OXP-Version: 1.0 + { - "$schema": "urn:oxp:1.0", - "tools": [] + "items": [] } ``` **Response (With Tools)** -```json +```http +HTTP/1.1 200 OK +Content-Type: application/json +OXP-Version: 1.0 + { - "$schema": "urn:oxp:1.0", - "tools": [ + "items": [ { "id": "Calculator.Add@1.0.0", "name": "Calculator_Add", "description": "Adds two numbers together.", "version": "1.0.0", "input_schema": { - "parameters": { - "type": "object", - "properties": { - "a": { - "type": "number", - "description": "The first number to add." - }, - "b": { - "type": "number", - "description": "The second number to add." - } + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The first number to add." }, - "required": ["a", "b"] - } + "b": { + "type": "number", + "description": "The second number to add." + } + }, + "required": ["a", "b"] }, "output_schema": { "type": "number", @@ -76,16 +82,14 @@ Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... "description": "Rings a doorbell given a doorbell ID.", "version": "0.1.0", "input_schema": { - "parameters": { - "type": "object", - "properties": { - "doorbell_id": { - "type": "string", - "description": "The ID of the doorbell to ring." - } - }, - "required": ["doorbell_id"] - } + "type": "object", + "properties": { + "doorbell_id": { + "type": "string", + "description": "The ID of the doorbell to ring." + } + }, + "required": ["doorbell_id"] }, "output_schema": null } diff --git a/app/spec-1.0/schemas/call-tool-response/page.mdx b/app/spec-1.0/schemas/call-tool-response/page.mdx index 1a7a60f..563b8ba 100644 --- a/app/spec-1.0/schemas/call-tool-response/page.mdx +++ b/app/spec-1.0/schemas/call-tool-response/page.mdx @@ -145,3 +145,43 @@ The following examples are non-normative and are provided to illustrate the use } } ``` + +8. **Error Response with Missing User ID Requirement** + + An error response indicating that a user ID is required before the tool can be called. + + ```json + { + "call_id": "823e4567-e89b-12d3-a456-426614174007", + "success": false, + "error": { + "message": "User ID required before this tool can be called", + "can_retry": true, + "missing_requirements": { + "user_id": true + } + } + } + ``` + + An error response indicating that authorization is required before the tool can be called. + + ```json + { + "call_id": "823e4567-e89b-12d3-a456-426614174007", + "success": false, + "error": { + "message": "Authorization required before this tool can be called", + "can_retry": true, + "missing_requirements": { + "authorization": [ + { + "id": "google_auth123", + "url": "https://auth.example.com/authorize?service=google", + "check_url": "https://auth.example.com/check?id=google_auth123" + } + ] + } + } + } + ``` diff --git a/app/spec-1.0/schemas/errors/page.mdx b/app/spec-1.0/schemas/errors/page.mdx index 6e39a74..317a444 100644 --- a/app/spec-1.0/schemas/errors/page.mdx +++ b/app/spec-1.0/schemas/errors/page.mdx @@ -5,20 +5,81 @@ The Open eXecution Protocol defines several error schemas that are used to repre ## Server Error Response The `ServerErrorResponse` schema is used to represent errors that occur before the tool is called. -These errors typically indicate issues such as authentication failures or configuration problems. The schema includes: +These errors typically indicate issues such as authentication challenges or configuration problems. The schema includes: -- **`$schema`** (optional): The URI for the schema definition. -- **`message`** (required): A descriptive error message. `message` SHOULD be a user-facing error message. -- **`developer_message`** (optional): Additional internal details for debugging purposes. `developer_message` SHOULD NOT be shown to the user or an AI model. +- **`message`** (required, string): A descriptive error message. `message` SHOULD be a user-facing error message. +- **`developer_message`** (optional, string): Additional internal details for debugging purposes. `developer_message` SHOULD NOT be shown to the user or an AI model. +- **`missing_requirements`** (optional, object): A map of missing requirements that must be fulfilled before the tool can be called. + - **`authorization`** (optional, array): A list of authorization challenges that must be completed before the tool can be called, conforming to the `ToolAuthorizationChallenge` schema (below). + - **`user_id`** (optional, boolean): Whether the tool requires a user ID to be called. + +### Tool Authorization Challenge + +The `ToolAuthorizationChallenge` schema is used to represent a challenge that must be completed before a tool can be called. This schema includes: + +- **`id`** (required, string): A unique identifier for the authorization challenge. +- **`url`** (required, string): The URL the user must visit to complete the authorization challenge. +- **`check_url`** (optional, string): The URL to check the status of the authorization challenge. + +Authorization challenges are returned in the `missing_requirements.authorization` field of the error response when a tool requires authorization that has not been completed. + +### Authorization Challenge Check Response + +The `AuthorizationChallengeCheckResponse` schema is used to represent the response to a tool authorization challenge check request. This schema includes: + +- **`status`** (required, enum): The status of the authorization challenge. The possible values are: + - `"pending"`: The challenge is still pending. + - `"completed"`: The challenge is now complete. + - `"failed"`: The challenge has failed. + +### Non-Normative Examples + +A server response indicating that the tool requires authorization: + +```json +{ + "message": "Authorization required", + "missing_requirements": { + "authorization": [ + { + "id": "challenge-123", + "url": "https://oauth.example.com/oauth2/authorize", + "check_url": "https://agent.example.com/oauth2/check" + } + ] + } +} +``` + +A response from the provided `check_url` indicating that the challenge is now complete: + +```json +{ + "status": "completed" +} +``` ## Input Validation Error Response The `ValidationErrorResponse` schema is used to represent errors that occur when the input parameters for a tool call are invalid. This schema includes: -- **`$schema`** (optional): The URI for the schema definition. - **`message`** (required): A descriptive error message. `message` SHOULD be a user-facing error message. - **`parameter_errors`** (optional): A map associating parameter names with their respective error messages to help pinpoint issues in the input data. +### Examples + +**Parameter Validation Error:** + +```json +{ + "message": "Invalid input parameters", + "parameter_errors": { + "to": "Phone number must be in E.164 format", + "message": "Message cannot be empty" + } +} +``` + ## Tool Execution Errors See the [Call Tool Response](call-tool-response) schema for details. diff --git a/app/spec-1.0/schemas/tool-definition/page.mdx b/app/spec-1.0/schemas/tool-definition/page.mdx index 9d9f237..f2cf4dd 100644 --- a/app/spec-1.0/schemas/tool-definition/page.mdx +++ b/app/spec-1.0/schemas/tool-definition/page.mdx @@ -15,12 +15,12 @@ Tools MUST be versioned using simple semantic versioning of the form `x.y.z` whe ### Input Schema -- **`input_schema`** (required): Describes the input parameters for the tool. An object with the following properties: +- **`input_schema`** (required): A JSON Schema object that describes the input parameters for the tool. + This schema supports standard JSON Schema validation, but excludes `$ref` and nested definitions/schemas for simplicity. - - **`parameters`** (required): A JSON Schema object that describes the input parameters for the tool. - This schema supports standard JSON Schema validation, but excludes `$ref` and nested definitions/schemas for simplicity. +The `input_schema` MUST be a valid JSON Schema object and SHOULD contain a JSON-Schema `properties` object with descriptions for all properties, if the tool requires input parameters. -The `parameters` field MUST be present, and MAY be an empty object. Each parameter in `parameters` MUST be a valid JSON Schema object and MUST contain a `description` field describing the parameter. +`input_schema` MAY be an empty object if the tool does not require input parameters. ### Output Schema @@ -60,20 +60,18 @@ The following examples are non-normative and are provided to illustrate the use "description": "Adds two numbers together.", "version": "1.0.0", "input_schema": { - "parameters": { - "type": "object", - "properties": { - "a": { - "type": "number", - "description": "The first number to add." - }, - "b": { - "type": "number", - "description": "The second number to add." - } + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The first number to add." }, - "required": ["a", "b"] - } + "b": { + "type": "number", + "description": "The second number to add." + } + }, + "required": ["a", "b"] }, "output_schema": { "type": "number", @@ -93,16 +91,14 @@ The following examples are non-normative and are provided to illustrate the use "description": "Rings a doorbell given a doorbell ID.", "version": "0.1.0", "input_schema": { - "parameters": { - "type": "object", - "properties": { - "doorbell_id": { - "type": "string", - "description": "The ID of the doorbell to ring." - } - }, - "required": ["doorbell_id"] - } + "type": "object", + "properties": { + "doorbell_id": { + "type": "string", + "description": "The ID of the doorbell to ring." + } + }, + "required": ["doorbell_id"] }, "output_schema": null } @@ -118,11 +114,7 @@ The following examples are non-normative and are provided to illustrate the use "name": "System_GetTimestamp", "description": "Retrieves the current system timestamp.", "version": "1.0.0", - "input_schema": { - "parameters": { - "type": "object" - } - }, + "input_schema": {}, "output_schema": { "type": "object", "properties": { @@ -148,16 +140,14 @@ The following examples are non-normative and are provided to illustrate the use "description": "Retrieves emails from Gmail using OAuth 2.0 authentication.", "version": "1.2.0", "input_schema": { - "parameters": { - "type": "object", - "properties": { - "query": { - "type": "string", - "description": "Search query for filtering emails." - } - }, - "required": [] - } + "type": "object", + "properties": { + "query": { + "type": "string", + "description": "Search query for filtering emails." + } + }, + "required": [] }, "output_schema": { "type": "object", @@ -203,20 +193,18 @@ The following examples are non-normative and are provided to illustrate the use "description": "Sends SMS messages using Twilio.", "version": "0.1.2", "input_schema": { - "parameters": { - "type": "object", - "properties": { - "to": { - "type": "string", - "description": "Recipient phone number." - }, - "message": { - "type": "string", - "description": "Message content to send." - } + "type": "object", + "properties": { + "to": { + "type": "string", + "description": "Recipient phone number." }, - "required": ["to", "message"] - } + "message": { + "type": "string", + "description": "Message content to send." + } + }, + "required": ["to", "message"] }, "output_schema": { "type": "object", diff --git a/app/spec-1.0/versioning/page.mdx b/app/spec-1.0/versioning/page.mdx index d9f75d7..2b9f2df 100644 --- a/app/spec-1.0/versioning/page.mdx +++ b/app/spec-1.0/versioning/page.mdx @@ -11,30 +11,10 @@ The [OpenAPI schema](https://github.com/OpenToolCalling/Specification/tree/main/ ## Protocol Message Versioning -The `$schema` field is used in requests and responses to indicate the version of OXP that the client supports. The schema URI MUST be a valid URI. +The `OXP-Version` header is used in requests and responses to indicate the version of OXP that the client supports. The header value MUST be a valid semantic version. For example: -If the `$schema` field is not included, the server MUST assume the client supports the latest version of OXP supported by the server. - -For example, the following request indicates that the client supports this version (1.0) of OXP: - -```json -{ - "$schema": "https://github.com/OpenToolCalling/Specification/tree/main/spec/http/1.0/openapi.json" -} +```http +OXP-Version: 1.0 ``` -### Shorthand Versioning - -To reduce the size of the `$schema` field, the client MAY use a shorthand version of the form: - -``` -urn:oxp:. -``` - -For example, the following request indicates that the client supports this version (1.0) of OXP: - -```json -{ - "$schema": "urn:oxp:1.0" -} -``` +If the `OXP-Version` header is not included, the server MAY assume the client supports the latest version of OXP supported by the server.