├── .clomonitor.yml ├── .editorconfig ├── .gitattributes ├── .github ├── pull-request-template.md └── workflows │ ├── fossa.yaml │ ├── release-notes.yaml │ └── verify.yaml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── OWNERS ├── README.md ├── cloudevents ├── model.json ├── samples │ ├── scenarios │ │ ├── README.md │ │ ├── contoso-erp-jsons07.xreg.json │ │ ├── import_all.sh │ │ ├── inkjet-proto3.xreg.json │ │ ├── lightbulb-avro.xreg.json │ │ ├── mqtt-sparkplugB.xreg.json │ │ ├── smartoven-xsd.xreg.json │ │ ├── vacuumcleaner-avro.xreg.json │ │ ├── watchkam-jsons07.xreg.json │ │ ├── waterboiler-mqtt5-jsons07.xreg.json │ │ └── windgenerator-kafka-avro.xreg.json │ └── schemas │ │ ├── schemastore_org.py │ │ └── schemastore_org.xreg.json ├── schemas │ ├── document-schema.avsc │ ├── document-schema.json │ └── openapi.json └── spec.md ├── core ├── README.md ├── diagrams.pptx ├── events.md ├── http.md ├── model.json ├── model.md ├── model.schema.json ├── primer.md ├── sample-model-full.json ├── sample-model.json ├── samples │ ├── README.md │ ├── contoso-crm.cereg │ ├── contoso-crm.cereg.yaml │ ├── doc-store-data.json │ ├── doc-store-model.json │ ├── formatted-doc-store-data.json │ └── formatted-doc-store-model.json ├── spec.md ├── templates │ └── xregistry_openapi_template.json ├── xregbasicmodel.png ├── xregfullmodel.png ├── xregsample.png └── xregurlmapping.png ├── docs ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── README.md ├── RELEASES.md ├── RELEASE_NOTES.md ├── ROADMAP.md ├── contributors.md ├── demos.md ├── languages.md ├── open-source.md └── share │ ├── KubeConEU23-CEDiscovery.pptx │ └── README.md ├── endpoint ├── model.json ├── schemas │ ├── document-schema.avsc │ ├── document-schema.json │ └── openapi.json └── spec.md ├── languages └── languages-spec.md ├── message ├── model.json ├── schemas │ ├── document-schema.avsc │ ├── document-schema.json │ └── openapi.json └── spec.md ├── pagination ├── README.md ├── RELEASE_NOTES.md ├── languages │ └── zh-CN │ │ ├── README.md │ │ ├── RELEASE_NOTES.md │ │ ├── spec.md │ │ └── translations.md └── spec.md ├── schema ├── model.json ├── schemas │ ├── document-schema.avsc │ ├── document-schema.json │ └── openapi.json └── spec.md ├── todos ├── discovery.yaml └── primer.md └── tools ├── Makefile ├── dict ├── errorcheck ├── fake-docs ├── README.md ├── languages │ ├── README.md │ ├── my-lang │ │ ├── link-verification.md │ │ └── myspec │ │ │ ├── README.md │ │ │ └── spec.md │ └── your-lang │ │ ├── myspec │ │ ├── README.md │ │ └── spec.md │ │ └── text-verification.md ├── link-verification.md ├── myspec │ ├── README.md │ └── spec.md ├── text-verification.md └── yourspec │ ├── README.md │ └── spec.md ├── requirements.txt ├── samplescheck ├── schema-generator.py ├── spellcheck ├── tabcheck ├── test-openapi.json ├── test_schema_generator.py ├── test_verify.py ├── validate-models.py ├── verify.py └── words /.clomonitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/.clomonitor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/pull-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/.github/pull-request-template.md -------------------------------------------------------------------------------- /.github/workflows/fossa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/.github/workflows/fossa.yaml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/.github/workflows/release-notes.yaml -------------------------------------------------------------------------------- /.github/workflows/verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/.github/workflows/verify.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .vscode/launch.json 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/README.md -------------------------------------------------------------------------------- /cloudevents/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/model.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/README.md -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/contoso-erp-jsons07.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/contoso-erp-jsons07.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/import_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/import_all.sh -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/inkjet-proto3.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/inkjet-proto3.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/lightbulb-avro.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/lightbulb-avro.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/mqtt-sparkplugB.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/mqtt-sparkplugB.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/smartoven-xsd.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/smartoven-xsd.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/vacuumcleaner-avro.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/vacuumcleaner-avro.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/watchkam-jsons07.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/watchkam-jsons07.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/waterboiler-mqtt5-jsons07.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/waterboiler-mqtt5-jsons07.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/scenarios/windgenerator-kafka-avro.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/scenarios/windgenerator-kafka-avro.xreg.json -------------------------------------------------------------------------------- /cloudevents/samples/schemas/schemastore_org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/schemas/schemastore_org.py -------------------------------------------------------------------------------- /cloudevents/samples/schemas/schemastore_org.xreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/samples/schemas/schemastore_org.xreg.json -------------------------------------------------------------------------------- /cloudevents/schemas/document-schema.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/schemas/document-schema.avsc -------------------------------------------------------------------------------- /cloudevents/schemas/document-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/schemas/document-schema.json -------------------------------------------------------------------------------- /cloudevents/schemas/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/schemas/openapi.json -------------------------------------------------------------------------------- /cloudevents/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/cloudevents/spec.md -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/README.md -------------------------------------------------------------------------------- /core/diagrams.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/diagrams.pptx -------------------------------------------------------------------------------- /core/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/events.md -------------------------------------------------------------------------------- /core/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/http.md -------------------------------------------------------------------------------- /core/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/model.json -------------------------------------------------------------------------------- /core/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/model.md -------------------------------------------------------------------------------- /core/model.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/model.schema.json -------------------------------------------------------------------------------- /core/primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/primer.md -------------------------------------------------------------------------------- /core/sample-model-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/sample-model-full.json -------------------------------------------------------------------------------- /core/sample-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/sample-model.json -------------------------------------------------------------------------------- /core/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/samples/README.md -------------------------------------------------------------------------------- /core/samples/contoso-crm.cereg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/samples/contoso-crm.cereg -------------------------------------------------------------------------------- /core/samples/contoso-crm.cereg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/samples/contoso-crm.cereg.yaml -------------------------------------------------------------------------------- /core/samples/doc-store-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/samples/doc-store-data.json -------------------------------------------------------------------------------- /core/samples/doc-store-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/samples/doc-store-model.json -------------------------------------------------------------------------------- /core/samples/formatted-doc-store-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/samples/formatted-doc-store-data.json -------------------------------------------------------------------------------- /core/samples/formatted-doc-store-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/samples/formatted-doc-store-model.json -------------------------------------------------------------------------------- /core/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/spec.md -------------------------------------------------------------------------------- /core/templates/xregistry_openapi_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/templates/xregistry_openapi_template.json -------------------------------------------------------------------------------- /core/xregbasicmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/xregbasicmodel.png -------------------------------------------------------------------------------- /core/xregfullmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/xregfullmodel.png -------------------------------------------------------------------------------- /core/xregsample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/xregsample.png -------------------------------------------------------------------------------- /core/xregurlmapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/core/xregurlmapping.png -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/GOVERNANCE.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/RELEASES.md -------------------------------------------------------------------------------- /docs/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/RELEASE_NOTES.md -------------------------------------------------------------------------------- /docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/ROADMAP.md -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/demos.md -------------------------------------------------------------------------------- /docs/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/languages.md -------------------------------------------------------------------------------- /docs/open-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/open-source.md -------------------------------------------------------------------------------- /docs/share/KubeConEU23-CEDiscovery.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/docs/share/KubeConEU23-CEDiscovery.pptx -------------------------------------------------------------------------------- /docs/share/README.md: -------------------------------------------------------------------------------- 1 | # Documents used for conferences, meetings, etc. 2 | -------------------------------------------------------------------------------- /endpoint/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/endpoint/model.json -------------------------------------------------------------------------------- /endpoint/schemas/document-schema.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/endpoint/schemas/document-schema.avsc -------------------------------------------------------------------------------- /endpoint/schemas/document-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/endpoint/schemas/document-schema.json -------------------------------------------------------------------------------- /endpoint/schemas/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/endpoint/schemas/openapi.json -------------------------------------------------------------------------------- /endpoint/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/endpoint/spec.md -------------------------------------------------------------------------------- /languages/languages-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/languages/languages-spec.md -------------------------------------------------------------------------------- /message/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/message/model.json -------------------------------------------------------------------------------- /message/schemas/document-schema.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/message/schemas/document-schema.avsc -------------------------------------------------------------------------------- /message/schemas/document-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/message/schemas/document-schema.json -------------------------------------------------------------------------------- /message/schemas/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/message/schemas/openapi.json -------------------------------------------------------------------------------- /message/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/message/spec.md -------------------------------------------------------------------------------- /pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/pagination/README.md -------------------------------------------------------------------------------- /pagination/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/pagination/RELEASE_NOTES.md -------------------------------------------------------------------------------- /pagination/languages/zh-CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/pagination/languages/zh-CN/README.md -------------------------------------------------------------------------------- /pagination/languages/zh-CN/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/pagination/languages/zh-CN/RELEASE_NOTES.md -------------------------------------------------------------------------------- /pagination/languages/zh-CN/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/pagination/languages/zh-CN/spec.md -------------------------------------------------------------------------------- /pagination/languages/zh-CN/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/pagination/languages/zh-CN/translations.md -------------------------------------------------------------------------------- /pagination/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/pagination/spec.md -------------------------------------------------------------------------------- /schema/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/schema/model.json -------------------------------------------------------------------------------- /schema/schemas/document-schema.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/schema/schemas/document-schema.avsc -------------------------------------------------------------------------------- /schema/schemas/document-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/schema/schemas/document-schema.json -------------------------------------------------------------------------------- /schema/schemas/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/schema/schemas/openapi.json -------------------------------------------------------------------------------- /schema/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/schema/spec.md -------------------------------------------------------------------------------- /todos/discovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/todos/discovery.yaml -------------------------------------------------------------------------------- /todos/primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/todos/primer.md -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/dict -------------------------------------------------------------------------------- /tools/errorcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/errorcheck -------------------------------------------------------------------------------- /tools/fake-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/README.md -------------------------------------------------------------------------------- /tools/fake-docs/languages/README.md: -------------------------------------------------------------------------------- 1 | # Translations Directory 2 | -------------------------------------------------------------------------------- /tools/fake-docs/languages/my-lang/link-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/languages/my-lang/link-verification.md -------------------------------------------------------------------------------- /tools/fake-docs/languages/my-lang/myspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/languages/my-lang/myspec/README.md -------------------------------------------------------------------------------- /tools/fake-docs/languages/my-lang/myspec/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/languages/my-lang/myspec/spec.md -------------------------------------------------------------------------------- /tools/fake-docs/languages/your-lang/myspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/languages/your-lang/myspec/README.md -------------------------------------------------------------------------------- /tools/fake-docs/languages/your-lang/myspec/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/languages/your-lang/myspec/spec.md -------------------------------------------------------------------------------- /tools/fake-docs/languages/your-lang/text-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/languages/your-lang/text-verification.md -------------------------------------------------------------------------------- /tools/fake-docs/link-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/link-verification.md -------------------------------------------------------------------------------- /tools/fake-docs/myspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/myspec/README.md -------------------------------------------------------------------------------- /tools/fake-docs/myspec/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/myspec/spec.md -------------------------------------------------------------------------------- /tools/fake-docs/text-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/text-verification.md -------------------------------------------------------------------------------- /tools/fake-docs/yourspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/yourspec/README.md -------------------------------------------------------------------------------- /tools/fake-docs/yourspec/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/fake-docs/yourspec/spec.md -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/requirements.txt -------------------------------------------------------------------------------- /tools/samplescheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/samplescheck -------------------------------------------------------------------------------- /tools/schema-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/schema-generator.py -------------------------------------------------------------------------------- /tools/spellcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/spellcheck -------------------------------------------------------------------------------- /tools/tabcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/tabcheck -------------------------------------------------------------------------------- /tools/test-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/test-openapi.json -------------------------------------------------------------------------------- /tools/test_schema_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/test_schema_generator.py -------------------------------------------------------------------------------- /tools/test_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/test_verify.py -------------------------------------------------------------------------------- /tools/validate-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/validate-models.py -------------------------------------------------------------------------------- /tools/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/verify.py -------------------------------------------------------------------------------- /tools/words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xregistry/spec/HEAD/tools/words --------------------------------------------------------------------------------