gitextract_s0wd0_vf/ ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ └── use-case-template.yml │ ├── dependabot.yml │ ├── templates/ │ │ └── agenda.md │ └── workflows/ │ ├── auto-merge-dependabot.yml │ ├── respec.yaml │ ├── schema-publish.yaml │ ├── schema-tests.yaml │ └── validate-markdown.yaml ├── .gitignore ├── .markdownlint.yaml ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SPECIAL_INTEREST_GROUP.md ├── _archive_/ │ └── schemas/ │ └── v1.0/ │ ├── readme.md │ ├── schema.json │ └── schema.yaml ├── examples/ │ └── 1.0.0/ │ ├── ExtendedParametersExample.arazzo.yaml │ ├── FAPI-PAR.arazzo.yaml │ ├── FAPI-PAR.openapi.yaml │ ├── LoginAndRetrievePets.arazzo.yaml │ ├── README.md │ ├── bnpl-arazzo.yaml │ ├── bnpl-openapi.yaml │ ├── oauth.arazzo.yaml │ ├── oauth.openapi.yaml │ ├── pet-coupons.arazzo.yaml │ └── pet-coupons.openapi.yaml ├── package.json ├── scripts/ │ ├── 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 │ ├── schema-test-coverage.mjs │ ├── schema-test-coverage.sh │ ├── validate.mjs │ └── yaml2json/ │ └── yaml2json.js ├── spec.markdownlint.yaml └── versions/ ├── 1.0.0.md └── 1.0.1.md