Skip to content

Commit acd54ee

Browse files
committed
update OpenAPI schemas
1 parent 9a9a1e4 commit acd54ee

File tree

17 files changed

+3603
-2128
lines changed

17 files changed

+3603
-2128
lines changed

openapi-parser/src/main/java/io/openapiparser/OpenApiSchemas.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
import java.net.URI;
99

1010
public class OpenApiSchemas {
11-
public static URI OPENAPI_SCHEMA_32_ID = id("https://spec.openapis.org/oas/3.2/schema/WORK-IN-PROGRESS");
12-
public static String OPENAPI_SCHEMA_32 = "/openapi/schemas/v3.2/schema.yaml";
11+
public static URI OPENAPI_SCHEMA_32_ID = id("https://spec.openapis.org/oas/3.2/schema/2025-09-17");
12+
public static String OPENAPI_SCHEMA_32 = "/openapi/3.2/schema/2025-09-15.yaml";
1313
public static String OPENAPI_VERSION_32_LATEST = "3.2.0";
1414

15-
public static URI OPENAPI_SCHEMA_31_ID = id("https://spec.openapis.org/oas/3.1/schema/2022-02-27");
16-
public static String OPENAPI_SCHEMA_31 = "/openapi/schemas/v3.1/schema.yaml";
15+
public static URI OPENAPI_SCHEMA_31_ID = id("https://spec.openapis.org/oas/3.1/schema/2025-09-15");
16+
public static String OPENAPI_SCHEMA_31 = "/openapi/3.1/schema/2025-09-15";
1717
public static String OPENAPI_VERSION_31_LATEST = "3.1.1";
1818

19-
public static URI OPENAPI_SCHEMA_30_ID = id("https://spec.openapis.org/oas/3.0/schema/2021-09-28");
20-
public static String OPENAPI_SCHEMA_30 = "/openapi/schemas/v3.0/schema.yaml";
19+
public static URI OPENAPI_SCHEMA_30_ID = id("https://spec.openapis.org/oas/3.0/schema/2024-10-18");
20+
public static String OPENAPI_SCHEMA_30 = "/openapi/3.0/schema/2024-10-18";
2121
public static String OPENAPI_VERSION_30_LATEST = "3.0.4";
2222

23-
public static URI OVERLAY_SCHEMA_10_ID = id("https://spec.openapis.org/overlay/1.0/schema");
24-
public static String OVERLAY_SCHEMA_10 = "/overlay/schemas/v1.0/schema.yaml";
23+
public static URI OVERLAY_SCHEMA_10_ID = id("https://spec.openapis.org/overlay/1.0/schema/2024-10-22");
24+
public static String OVERLAY_SCHEMA_10 = "/overlay/1.0/schema/2024-10-22";
2525

2626
private static URI id (String uri) {
2727
return URI.create (uri);

0 commit comments

Comments
 (0)