From f514f751e16704ffdac1504fa0d4822ea9da0177 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Jul 2026 15:45:37 +0000 Subject: [PATCH 1/3] Initial plan From 5c98c913233b8242dfbbba97dce6a2e36d73b591 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Jul 2026 15:47:57 +0000 Subject: [PATCH 2/3] Fix: Replace incongruent http/basic scheme with custom "none" type in NAIP example Changed the authentication scheme from 'http' type with 'basic' scheme to a custom 'none' type, making the scheme name, type, and description congruent with the intent of free access without restrictions. This resolves the incongruence where the scheme was named 'none' and described as 'free access' but used basic authentication which requires credentials." --- examples/item.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/item.json b/examples/item.json index 5e189e1..feb8f30 100644 --- a/examples/item.json +++ b/examples/item.json @@ -57,8 +57,7 @@ } }, "none": { - "type": "http", - "scheme": "basic", + "type": "none", "description": "Free access without restrictions" } } From e59b8ed0cfe5c8cca58009e18135fb1ee0176d9b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 7 Jul 2026 15:53:57 +0000 Subject: [PATCH 3/3] Use basic authentication with coherent description Changed the authentication scheme from custom "none" type to standard http "basic" authentication scheme. Updated the scheme name from "none" to "basic" and the description from "Free access without restrictions" to "Requires Basic Authentication" to make the example coherent and properly represent basic auth requirements. --- examples/item.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/item.json b/examples/item.json index feb8f30..2c21f9d 100644 --- a/examples/item.json +++ b/examples/item.json @@ -56,9 +56,10 @@ } } }, - "none": { - "type": "none", - "description": "Free access without restrictions" + "basic": { + "type": "http", + "scheme": "basic", + "description": "Requires Basic Authentication" } } },