├── .github ├── dependabot.yml ├── linters │ └── .openapirc.yml └── workflows │ ├── generated-pr.yml │ ├── linter.yml │ └── stale.yml ├── .gitignore ├── .spectral.yaml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── index.html └── readme.md └── ipfs-pinning-service.yaml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.openapirc.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | extends: spectral:oas 4 | -------------------------------------------------------------------------------- /.github/workflows/generated-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/.github/workflows/generated-pr.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | super-linter.log 2 | -------------------------------------------------------------------------------- /.spectral.yaml: -------------------------------------------------------------------------------- 1 | extends: spectral:oas 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /index.html 3 | --- 4 | -------------------------------------------------------------------------------- /ipfs-pinning-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/HEAD/ipfs-pinning-service.yaml --------------------------------------------------------------------------------