feat(import): add deterministic OpenAPI normalized IR
CI / Rust Checks (push) Failing after 3m12s
CI / UI Checks (push) Has been skipped
CI / Frontend E2E (push) Has been skipped
CI / Community Image Smoke (push) Has been skipped
CI / Deploy (push) Has been skipped

This commit is contained in:
2026-08-29 04:15:37 +03:00
parent bc03c33387
commit 6c2a3712d8
22 changed files with 6051 additions and 352 deletions
@@ -0,0 +1 @@
["not", "an", "openapi", "root"]
@@ -0,0 +1,3 @@
openapi: 3.2.0
info: { title: unsupported }
paths: {}
@@ -0,0 +1,3 @@
openapi: [wrong-root-field]
info: { title: Invalid }
paths: {}
+6
View File
@@ -0,0 +1,6 @@
openapi: 3.0.3
info: { title: Fixture OpenAPI 3.0 }
paths:
/health:
get:
responses: { '200': { description: OK } }
+9
View File
@@ -0,0 +1,9 @@
{
"openapi": "3.1.0",
"info": { "title": "Fixture OpenAPI 3.1" },
"paths": {
"/health": {
"get": { "responses": { "200": { "description": "OK" } } }
}
}
}
+6
View File
@@ -0,0 +1,6 @@
swagger: '2.0'
info: { title: Fixture Swagger 2.0 }
paths:
/health:
get:
responses: { '200': { description: OK } }