From 49b914523dbc2822f93b3c9b69dd7748c6a7afc9 Mon Sep 17 00:00:00 2001 From: cody-friedrichsen Date: Mon, 21 Oct 2024 11:54:16 -0500 Subject: [PATCH] Update Schema URL to point to stable openAPI location --- alsdkdefs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alsdkdefs/__init__.py b/alsdkdefs/__init__.py index de6fdb7..3f414a9 100644 --- a/alsdkdefs/__init__.py +++ b/alsdkdefs/__init__.py @@ -20,7 +20,7 @@ except ImportError: DEV_SDK_DEFS = False -OPENAPI_SCHEMA_URL = 'https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/schemas/v3.0/schema.json' +OPENAPI_SCHEMA_URL = 'https://spec.openapis.org/oas/3.0/schema/2021-09-28' OPENAPI_SCHEMA_FILE = 'openapi_schema.json' URI_SCHEMES = ['file', 'http', 'https']