From e4ec871669f2cfe1433b2bea27c4c91fa85a8c5d Mon Sep 17 00:00:00 2001 From: njaci1 Date: Mon, 18 Mar 2024 21:23:51 +0300 Subject: [PATCH 1/5] Create Overlay Support Spec.md Add spec for overlay support --- Overlay Support Spec.md | 106 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 Overlay Support Spec.md diff --git a/Overlay Support Spec.md b/Overlay Support Spec.md new file mode 100644 index 000000000..65b936d76 --- /dev/null +++ b/Overlay Support Spec.md @@ -0,0 +1,106 @@ +# Feature Specification: Overlays Support + +## Objective +Support use of Overlays for enabling developers to enhance existing OpenAPI description files without changing the original file. + +## Problem Statement +Existing OpenAPI documents used for AI plugin creation might lack necessary properties or require modifications for them to provide a high quality AI plugin. Direct editing of the original OpenAPI document is often undesirable or impractical. + +## Solution Overview +Overlays provide a flexible mechanism for extending OpenAPI documents without directly modifying the original files. This allows necessary properties to be added, existing values modified, and the OpenAPI description tailored for effective AI plugin development. + +## Functional Requirements +1. **Overlay File Format Support** + - Support overlay files in accordance with the Overlay Specification (v1.0.0), available at [Overlay Specification](https://github.com/OAI/Overlay-Specification/blob/3f398c6/versions/1.0.0.md). + - Support both YAML and JSON formats for overlay files. + +2. **Overlay Application** + - Apply overlay file to an existing OpenAPI document to produce a hybrid of the overlay file and the original OpenAPI description file without changing the original file. + - Ensure resulting hybrid OpenAPI document remain valid according to the OpenAPI Specification. + +3. **Overlay Operations** + - Support addition, modification, and removal of properties to the target OpenAPI document. + +## Example: Applying Overlay to Modify OpenAPI Description File + +**Original OpenAPI Description File** + +```yaml +openapi: 3.0.0 +info: + title: Sample API + version: 1.0.0 +paths: + /users: + get: + summary: Get a list of users + responses: + '200': + description: Successful response + /users/{id}: + get: + summary: Get a user by ID + parameters: + - name: id + in: path + required: true + description: User ID + responses: + '200': + description: Successful response +``` + +**Overlay File (overlay.yaml)** + +```yaml +overlay: 1.0.0 +info: + title: Sample Overlay + version: 1.0.0 +actions: + - target: "$" + update: + info: + x-overlay-applied: sample-overlay + paths: + "/users": + get: + summary: "Retrieve all users" + "/users/{id}": + get: + parameters: + - name: id + description: "Unique identifier of the user" + responses: + '404': + description: "User not found" +``` + +**Resulting OpenAPI document** + +```yaml +openapi: 3.0.0 +info: + title: Sample API + version: 1.0.0 +paths: + /users: + get: + summary: Retrieve all users # Updated summary from overlay + responses: + '200': + description: Successful response + /users/{id}: + get: + summary: Get a user by ID # Unchanged summary from original description + parameters: + - name: id + in: path + required: true + description: Unique identifier of the user # Updated description from overlay + responses: + '200': + description: Successful response + '404': + description: User not found # New response added from overlay +``` From 4c4c8ffb0e8ab07ac4bffbe661785ebbb9cc2253 Mon Sep 17 00:00:00 2001 From: njaci1 Date: Mon, 18 Mar 2024 21:26:49 +0300 Subject: [PATCH 2/5] Rename Overlay Support Spec.md to Specs/Overlay Support Spec.md Add a folder for specs --- Overlay Support Spec.md => Specs/Overlay Support Spec.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Overlay Support Spec.md => Specs/Overlay Support Spec.md (100%) diff --git a/Overlay Support Spec.md b/Specs/Overlay Support Spec.md similarity index 100% rename from Overlay Support Spec.md rename to Specs/Overlay Support Spec.md From 5001a73a456de077b5768ac110b6e9c653139400 Mon Sep 17 00:00:00 2001 From: njaci1 Date: Thu, 21 Mar 2024 18:21:49 +0300 Subject: [PATCH 3/5] Update Overlay Support Spec.md expand the problem statement to capture more areas of challenges. --- Specs/Overlay Support Spec.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Specs/Overlay Support Spec.md b/Specs/Overlay Support Spec.md index 65b936d76..9701126e0 100644 --- a/Specs/Overlay Support Spec.md +++ b/Specs/Overlay Support Spec.md @@ -1,22 +1,23 @@ # Feature Specification: Overlays Support ## Objective -Support use of Overlays for enabling developers to enhance existing OpenAPI description files without changing the original file. +Support use of Overlays for enabling developers to enhance an existing OpenAPI document without changing the original file. ## Problem Statement -Existing OpenAPI documents used for AI plugin creation might lack necessary properties or require modifications for them to provide a high quality AI plugin. Direct editing of the original OpenAPI document is often undesirable or impractical. +OpenAPI documents are crucial for enhancing AI models. They enable the models to interact with web services through plugins and GPTs which in turn elevate the user experience when users are interacting with AI models. For these documents to be effective in providing a robust extensibility to the AI models they often require specific adjustments to existing properties or additional properties. Direct edits to the original documents is usually not feasible or is undisirable. Additionally, teams managing these OpenAPI documents across diverse environments such as development, staging, and production or for different audiences face significant challenges in that maintenance of multiple OpenAPI document versions leads to inefficiency, inconsistency, and increased overhead. This complexity is intensified when modifications or exclusions of certain properties or endpoints are necessary, especially in adapting content for public consumption without exposing sensitive information. ## Solution Overview -Overlays provide a flexible mechanism for extending OpenAPI documents without directly modifying the original files. This allows necessary properties to be added, existing values modified, and the OpenAPI description tailored for effective AI plugin development. +Overlays provide a flexible mechanism for modifying OpenAPI documents without directly modifying the original files. This allows necessary properties to be added, existing values modified, and the OpenAPI document tailored for a specific use case, for example developing a plugin manifest or adopting the document for a specific environment or a select audience group, while leaving the original openAPI document intact. ## Functional Requirements 1. **Overlay File Format Support** - Support overlay files in accordance with the Overlay Specification (v1.0.0), available at [Overlay Specification](https://github.com/OAI/Overlay-Specification/blob/3f398c6/versions/1.0.0.md). - Support both YAML and JSON formats for overlay files. + - The target OpenAPI document may be specified in the Overlay file or may be provided separately. 2. **Overlay Application** - - Apply overlay file to an existing OpenAPI document to produce a hybrid of the overlay file and the original OpenAPI description file without changing the original file. - - Ensure resulting hybrid OpenAPI document remain valid according to the OpenAPI Specification. + - Apply overlay file to an existing OpenAPI document to produce a hybrid of the overlay file and the original OpenAPI document without changing the original document. + - Ensure the resulting hybrid OpenAPI document remain valid according to the OpenAPI Specification. 3. **Overlay Operations** - Support addition, modification, and removal of properties to the target OpenAPI document. From 93db0c64653482b4ca75f8cb0f8227bc287ac22b Mon Sep 17 00:00:00 2001 From: njaci1 Date: Wed, 27 Mar 2024 17:19:30 +0300 Subject: [PATCH 4/5] Update Overlay Support Spec.md revised with reviewers' comments --- Specs/Overlay Support Spec.md | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/Specs/Overlay Support Spec.md b/Specs/Overlay Support Spec.md index 9701126e0..71a9ff923 100644 --- a/Specs/Overlay Support Spec.md +++ b/Specs/Overlay Support Spec.md @@ -1,7 +1,7 @@ # Feature Specification: Overlays Support ## Objective -Support use of Overlays for enabling developers to enhance an existing OpenAPI document without changing the original file. +The objective of this feature is to empower users of the OpenAPI.NET library with capability to enahance existing OpenAPI documents without altering the original document. ## Problem Statement OpenAPI documents are crucial for enhancing AI models. They enable the models to interact with web services through plugins and GPTs which in turn elevate the user experience when users are interacting with AI models. For these documents to be effective in providing a robust extensibility to the AI models they often require specific adjustments to existing properties or additional properties. Direct edits to the original documents is usually not feasible or is undisirable. Additionally, teams managing these OpenAPI documents across diverse environments such as development, staging, and production or for different audiences face significant challenges in that maintenance of multiple OpenAPI document versions leads to inefficiency, inconsistency, and increased overhead. This complexity is intensified when modifications or exclusions of certain properties or endpoints are necessary, especially in adapting content for public consumption without exposing sensitive information. @@ -10,17 +10,30 @@ OpenAPI documents are crucial for enhancing AI models. They enable the models to Overlays provide a flexible mechanism for modifying OpenAPI documents without directly modifying the original files. This allows necessary properties to be added, existing values modified, and the OpenAPI document tailored for a specific use case, for example developing a plugin manifest or adopting the document for a specific environment or a select audience group, while leaving the original openAPI document intact. ## Functional Requirements -1. **Overlay File Format Support** +1. **Overlay Support Feature** - Support overlay files in accordance with the Overlay Specification (v1.0.0), available at [Overlay Specification](https://github.com/OAI/Overlay-Specification/blob/3f398c6/versions/1.0.0.md). - Support both YAML and JSON formats for overlay files. - - The target OpenAPI document may be specified in the Overlay file or may be provided separately. - -2. **Overlay Application** + - Support addition, modification, and removal of properties to the target OpenAPI document. + - The target OpenAPI document should be provided separately in either JSON or YAML format. - Apply overlay file to an existing OpenAPI document to produce a hybrid of the overlay file and the original OpenAPI document without changing the original document. - Ensure the resulting hybrid OpenAPI document remain valid according to the OpenAPI Specification. + - Overlay support feature will be added to the OpenAPI.NET library project as a new class. This will allow compatibility with current and future versions of OpenAPI.NET. This way developers enjoy the feature without adding their dependency footprint. + - Since OpenAPI.NET already supports both JSON and YAML, developers can use either format for their OpenAPI documents and overlays. + - The OverlayService class will validate the overlay file against OAI Overlay Specification and handle the modification of the OpenApiDocument by applying the overlay file. The modified objects will be used by the downstream logics as per the developer's needs. + + 2. **User Journey** + 1. Start by loading an existing OpenAPI document or creating one from scratch to create an instance of `OpenApiDocument`. + ```csharp + var openApiDocument = LoadOpenApiDocument(documentPath); -3. **Overlay Operations** - - Support addition, modification, and removal of properties to the target OpenAPI document. + 3. Use the OverlayService to apply the overlay file to the OpenAPI document. The OverlayService parses the overlay file, applies the changes directly to the OpenApiDocument instance, and performs in-place modifications. + ```csharp + var overlayService = new OverlayService(); + overlayService.ApplyOverlay(openApiDocument, overlayPath); + + 5. Validate the enhanced OpenAPI document, using OpenAPI.NET validation capabilities, and apply it for the intended use case. This step involves programmatically reviewing the changes to ensure they meet the expected outcomes. Once validated, the document is ready for its intended applications, such as AI-Plugin manifest generation, client SDK generation or other use cases. + + 7. Optionally, serialize the enhanced OpenAPI document into JSON or YAML format for storage, distribution, or further processing. This can be done using the serialization capabilities provided by the OpenAPI.NET library, ensuring that the document can be easily shared or integrated into other tools and workflows. ## Example: Applying Overlay to Modify OpenAPI Description File From 8020e103ad124b75f21c162986b665bb09660a38 Mon Sep 17 00:00:00 2001 From: njaci1 Date: Thu, 11 Apr 2024 15:51:12 +0300 Subject: [PATCH 5/5] Update Overlay Support Spec.md address reviewer comments. Add example for targeted overlay file. --- Specs/Overlay Support Spec.md | 99 ++++++++++++++++++++++++++++++----- 1 file changed, 87 insertions(+), 12 deletions(-) diff --git a/Specs/Overlay Support Spec.md b/Specs/Overlay Support Spec.md index 71a9ff923..cb18907c0 100644 --- a/Specs/Overlay Support Spec.md +++ b/Specs/Overlay Support Spec.md @@ -4,7 +4,7 @@ The objective of this feature is to empower users of the OpenAPI.NET library with capability to enahance existing OpenAPI documents without altering the original document. ## Problem Statement -OpenAPI documents are crucial for enhancing AI models. They enable the models to interact with web services through plugins and GPTs which in turn elevate the user experience when users are interacting with AI models. For these documents to be effective in providing a robust extensibility to the AI models they often require specific adjustments to existing properties or additional properties. Direct edits to the original documents is usually not feasible or is undisirable. Additionally, teams managing these OpenAPI documents across diverse environments such as development, staging, and production or for different audiences face significant challenges in that maintenance of multiple OpenAPI document versions leads to inefficiency, inconsistency, and increased overhead. This complexity is intensified when modifications or exclusions of certain properties or endpoints are necessary, especially in adapting content for public consumption without exposing sensitive information. +OpenAPI documents are crucial for enhancing AI models. They enable the models to **interact with web services through plugins and GPTs** which in turn **elevate the user experience** when users are interacting with AI models. For these documents to be effective in providing a **robust extensibility to the AI models** they often require specific adjustments to existing properties or additional properties. **Direct edits** to the original documents is usually **not feasible or is undisirable**. Additionally, teams managing these OpenAPI documents across **diverse environments such as development, staging, and production** or for different audiences face significant challenges in that **maintenance of multiple OpenAPI document versions leads to inefficiency, inconsistency, and increased overhead**. This complexity is intensified when modifications or exclusions of certain properties or endpoints are necessary, especially in adapting content for public consumption without exposing sensitive information. ## Solution Overview Overlays provide a flexible mechanism for modifying OpenAPI documents without directly modifying the original files. This allows necessary properties to be added, existing values modified, and the OpenAPI document tailored for a specific use case, for example developing a plugin manifest or adopting the document for a specific environment or a select audience group, while leaving the original openAPI document intact. @@ -14,7 +14,8 @@ Overlays provide a flexible mechanism for modifying OpenAPI documents without di - Support overlay files in accordance with the Overlay Specification (v1.0.0), available at [Overlay Specification](https://github.com/OAI/Overlay-Specification/blob/3f398c6/versions/1.0.0.md). - Support both YAML and JSON formats for overlay files. - Support addition, modification, and removal of properties to the target OpenAPI document. - - The target OpenAPI document should be provided separately in either JSON or YAML format. + - The target OpenAPI document should be provided separately in either JSON or YAML format. + - Support use of structured overlay file to support merging the overlay at the root of the target OpenAPI document and use of targeted merging where only specific paths are to be modified. See example in the example section. - Apply overlay file to an existing OpenAPI document to produce a hybrid of the overlay file and the original OpenAPI document without changing the original document. - Ensure the resulting hybrid OpenAPI document remain valid according to the OpenAPI Specification. - Overlay support feature will be added to the OpenAPI.NET library project as a new class. This will allow compatibility with current and future versions of OpenAPI.NET. This way developers enjoy the feature without adding their dependency footprint. @@ -22,21 +23,30 @@ Overlays provide a flexible mechanism for modifying OpenAPI documents without di - The OverlayService class will validate the overlay file against OAI Overlay Specification and handle the modification of the OpenApiDocument by applying the overlay file. The modified objects will be used by the downstream logics as per the developer's needs. 2. **User Journey** - 1. Start by loading an existing OpenAPI document or creating one from scratch to create an instance of `OpenApiDocument`. - ```csharp - var openApiDocument = LoadOpenApiDocument(documentPath); + 1. Start by loading an existing OpenAPI document using OpenApiDocument.Load to load JSON/Yaml file with Overlay referenced in readerSettings. - 3. Use the OverlayService to apply the overlay file to the OpenAPI document. The OverlayService parses the overlay file, applies the changes directly to the OpenApiDocument instance, and performs in-place modifications. + 2. Load Yaml and translate to JSONNodes or just load JSONNodes. + 3. Load Overlay as JsonNodes. + 4. Apply Overlay to OpenAPI JsonNodes + ```csharp - var overlayService = new OverlayService(); - overlayService.ApplyOverlay(openApiDocument, overlayPath); + + var overlay = await Overlay.LoadAsync(stream); + var jsonElement = await JsonDocument.ParseAsync(stream).RootElement; + var newJsonElement = overlay.Apply(jsonElement); + - 5. Validate the enhanced OpenAPI document, using OpenAPI.NET validation capabilities, and apply it for the intended use case. This step involves programmatically reviewing the changes to ensure they meet the expected outcomes. Once validated, the document is ready for its intended applications, such as AI-Plugin manifest generation, client SDK generation or other use cases. + 6. Pass "overlayed" JsonNodes to rest of OpenAPI Parser for its intended applications, such as AI-Plugin manifest generation, client SDK generation or other use cases. 7. Optionally, serialize the enhanced OpenAPI document into JSON or YAML format for storage, distribution, or further processing. This can be done using the serialization capabilities provided by the OpenAPI.NET library, ensuring that the document can be easily shared or integrated into other tools and workflows. ## Example: Applying Overlay to Modify OpenAPI Description File +In this example, we delve into the strategic use of overlay files to enrich the semantic clarity of OpenAPI description files. + +Consider a sample API with two primary operations: one retrieves a comprehensive list of users, and the other fetches a single user by their unique identifier. Initially, the operation to retrieve all users is summarized as "Get a list of users." By applying an overlay, we enhance its semantic clarity by updating the summary to "Retrieve all users." This subtle modification makes the description more natural and aligned with conversational language and increases its interpretability by AI, aiding in tasks such as automatic API invocation or documentation generation. +Similarly, for the operation that retrieves a user by ID, we refine the parameter description from a generic "User ID" to a more descriptive "Unique identifier of the user." This precise terminology improves AI's comprehension by explicitly defining the parameter's purpose and significance. Additionally, using the overlay, we introduce a new response scenario in the 'responses' property to account for situations when a user is not found, further enhancing the API's robustness and the AI's ability to handle different response types effectively. + **Original OpenAPI Description File** ```yaml @@ -64,12 +74,14 @@ paths: description: Successful response ``` -**Overlay File (overlay.yaml)** +**Structured Overlay File (overlay.yaml)** + +This is a structured overlay file. It follows the structure of the target OpenAPI document. It applies a merge at the root of the target document similar to how JSON merge would work. ```yaml overlay: 1.0.0 info: - title: Sample Overlay + title: Sample Structured Overlay version: 1.0.0 actions: - target: "$" @@ -97,6 +109,7 @@ openapi: 3.0.0 info: title: Sample API version: 1.0.0 + x-overlay-applied: sample-structured-overlay paths: /users: get: @@ -106,7 +119,7 @@ paths: description: Successful response /users/{id}: get: - summary: Get a user by ID # Unchanged summary from original description + summary: Get a user by ID parameters: - name: id in: path @@ -118,3 +131,65 @@ paths: '404': description: User not found # New response added from overlay ``` + +To illustrate the use of targeted overlay, we take the resulting OpenAPI document and add operationIDs to the two operations supported by the API. OperationID property provide unique identifiers for each operation, making them more easily referenced and thus enahance usability and maintainability. + +**Targeted Overlay File (overlay.yaml)** + +```yaml +overlay: 1.0.0 +info: + title: Sample Overlay + version: 1.0.0 +actions: + - target: "$" + update: + info: + x-overlay-applied: sample-targeted-overlay # Updated summary from overlay + - target: "$.paths.'/users'.get" + update: + operationId: "getUsers" # Updated summary from overlay + - target: "$.paths.'/users/{id}'.get" + update: + operationId: "getUserById" + parameters: + - name: id + in: path + required: true + description: "Unique identifier of the user" + responses: + '404': + description: "User not found" +``` +**Resulting OpenAPI document** + +```yaml +openapi: 3.0.0 +info: + title: Sample API + version: 1.0.0 + x-overlay-applied: sample-overlay # +paths: + /users: + get: + summary: Retrieve all users + operationId: getUsers # This line is added by the overlay + responses: + '200': + description: Successful response + /users/{id}: + get: + summary: Get a user by ID + operationId: getUserById # This line is added by the overlay + parameters: + - name: id + in: path + required: true + description: Unique identifier of the user + responses: + '200': + description: Successful response + '404': + description: User not found +``` +