gitextract_xldvqxs9/ ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ ├── registry_feature_request.md │ │ └── spec_bug_report.md │ ├── dependabot.yml │ ├── pull_request_template.md │ ├── templates/ │ │ └── agenda.md │ └── workflows/ │ ├── agenda.yaml │ ├── check-restricted-files.yaml │ ├── inactive-issues.yml │ ├── respec.yaml │ ├── schema-publish.yaml │ ├── schema-tests.yaml │ ├── sync-dev-to-vX.Y-dev.yaml │ ├── sync-main-to-dev.yaml │ └── validate-markdown.yaml ├── .gitignore ├── .gitmodules ├── .linkspector.yml ├── .markdownlint.yaml ├── CONTRIBUTING.md ├── EDITORS.md ├── GOVERNANCE.md ├── IMPLEMENTATIONS.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY_CONSIDERATIONS.md ├── SPECIAL_INTEREST_GROUPS.md ├── TOB.md ├── _archive_/ │ ├── README.md │ └── schemas/ │ ├── README.md │ ├── v1.2/ │ │ ├── README.md │ │ ├── apiDeclaration.json │ │ ├── authorizationObject.json │ │ ├── dataType.json │ │ ├── dataTypeBase.json │ │ ├── infoObject.json │ │ ├── modelsObject.json │ │ ├── oauth2GrantType.json │ │ ├── operationObject.json │ │ ├── parameterObject.json │ │ ├── resourceListing.json │ │ └── resourceObject.json │ ├── v2.0/ │ │ ├── README.md │ │ └── schema.json │ └── v3.0/ │ ├── README.md │ ├── pass/ │ │ ├── api-with-examples.yaml │ │ ├── callback-example.yaml │ │ ├── link-example.yaml │ │ ├── petstore-expanded.yaml │ │ ├── petstore.yaml │ │ └── uspto.yaml │ ├── schema.test.mjs │ └── schema.yaml ├── package.json ├── proposals/ │ ├── 2019-01-01-Proposal-Template.md │ ├── 2019-03-15-Alternative-Schema.md │ ├── 2019-07-17-Webhooks.md │ ├── 2019-10-31-Clarify-Nullable.md │ ├── 2019-12-24-Overlays.md │ ├── 2020-10-28-Experimental.md │ ├── 2024-08-01-Self-Identification.md │ ├── 2024-09-01-Tags-Improvement.md │ ├── 2025-03-20-URIs-for-Tags.md │ ├── Alternative-Schema/ │ │ ├── CONTRIBUTORS.md │ │ ├── alternative_schema_object.md │ │ ├── examples.md │ │ ├── implementations.md │ │ └── schema_object.md │ └── Overlays/ │ ├── Changes.yml │ └── MergePatch.yml ├── scripts/ │ ├── adjust-release-branch.sh │ ├── close-no-recent.ps1 │ ├── fwdabort.sh │ ├── fwdport.sh │ ├── label-no-recent.ps1 │ ├── md2html/ │ │ ├── .gitignore │ │ ├── analytics/ │ │ │ └── google.html │ │ ├── build.sh │ │ ├── gist.css │ │ ├── main.css │ │ ├── md2html.js │ │ ├── style-finish.html │ │ ├── style-start.html │ │ └── syntax-github.css │ ├── schema-publish.sh │ ├── start-release.sh │ └── validate.mjs ├── spec.markdownlint.yaml ├── style-guide.md ├── tests/ │ ├── md2html/ │ │ ├── README.md │ │ ├── fixtures/ │ │ │ ├── .gitattributes │ │ │ ├── basic-new.html │ │ │ ├── basic-new.maintainers │ │ │ ├── basic-new.md │ │ │ ├── basic-old.html │ │ │ ├── basic-old.maintainers │ │ │ └── basic-old.md │ │ └── md2html.test.mjs │ └── schema/ │ └── oas-schema.mjs ├── versions/ │ ├── 1.2.md │ ├── 2.0-editors.md │ ├── 2.0.md │ ├── 3.0.0-editors.md │ ├── 3.0.0.md │ ├── 3.0.1-editors.md │ ├── 3.0.1.md │ ├── 3.0.2-editors.md │ ├── 3.0.2.md │ ├── 3.0.3-editors.md │ ├── 3.0.3.md │ ├── 3.0.4-editors.md │ ├── 3.0.4.md │ ├── 3.1.0-editors.md │ ├── 3.1.0.md │ ├── 3.1.1-editors.md │ ├── 3.1.1.md │ ├── 3.1.2-editors.md │ ├── 3.1.2.md │ ├── 3.2.0-editors.md │ └── 3.2.0.md └── vitest.config.mjs