├── .github └── workflows │ └── ci.yml ├── .gitignore ├── 0.1 ├── examples │ ├── data-extension-metadata │ │ └── valid │ │ │ └── example-full.json │ ├── data-extension-property-proposal │ │ └── valid │ │ │ └── response.json │ ├── data-extension-query │ │ └── valid │ │ │ ├── example-full.json │ │ │ └── example-min.json │ ├── data-extension-response │ │ ├── invalid │ │ │ └── wrong-properties.json │ │ └── valid │ │ │ └── example-full.json │ ├── flyout-response │ │ └── valid │ │ │ └── example.json │ ├── manifest │ │ ├── invalid │ │ │ ├── godot-missing-identifierSpace.json │ │ │ ├── opencorporates.json │ │ │ ├── ror-invalid-view-pattern.json │ │ │ └── slub-invalid-property-setting.json │ │ └── valid │ │ │ ├── codefork-viaf.json │ │ │ ├── example-min.json │ │ │ ├── findthatcharity.json │ │ │ ├── fundref.json │ │ │ ├── geocollider-sinatra.json │ │ │ ├── getty.json │ │ │ ├── kerameikos.json │ │ │ ├── kew.json │ │ │ ├── lobid-gnd.json │ │ │ ├── nomisma.json │ │ │ ├── occrp.json │ │ │ ├── ordnance-survey.json │ │ │ ├── vivo-cornell.json │ │ │ └── wikidata.json │ ├── preview-metadata │ │ └── valid │ │ │ └── example.json │ ├── preview-response │ │ └── example.html │ ├── reconciliation-query-batch │ │ ├── invalid │ │ │ ├── misnamed-property.json │ │ │ └── missing-query.json │ │ └── valid │ │ │ ├── example-full.json │ │ │ ├── example-min.json │ │ │ └── multi-values.json │ ├── reconciliation-result-batch │ │ ├── invalid │ │ │ ├── missing-id.json │ │ │ ├── no-result.json │ │ │ └── root-array.json │ │ └── valid │ │ │ └── example-full.json │ ├── suggest-entities-response │ │ └── valid │ │ │ └── example.json │ ├── suggest-metadata │ │ └── valid │ │ │ └── example.json │ ├── suggest-properties-response │ │ └── valid │ │ │ └── example.json │ └── suggest-types-response │ │ └── valid │ │ └── example.json ├── index.html ├── schemas │ ├── data-extension-query.json │ ├── data-extension-response.json │ ├── manifest.json │ ├── reconciliation-query-batch.json │ ├── reconciliation-result-batch.json │ ├── suggest-entities-response.json │ ├── suggest-properties-response.json │ └── suggest-types-response.json └── source.html ├── 0.2 ├── examples │ ├── data-extension-metadata │ │ └── valid │ │ │ └── example-full.json │ ├── data-extension-property-proposal │ │ └── valid │ │ │ └── response.json │ ├── data-extension-query │ │ └── valid │ │ │ ├── example-full.json │ │ │ └── example-min.json │ ├── data-extension-response │ │ ├── invalid │ │ │ └── wrong-properties.json │ │ └── valid │ │ │ └── example-full.json │ ├── flyout-response │ │ └── valid │ │ │ └── example.json │ ├── manifest │ │ ├── invalid │ │ │ ├── bad-authentication.json │ │ │ ├── feature-view.json │ │ │ ├── godot-missing-identifierSpace.json │ │ │ ├── invalid-documentation.json │ │ │ ├── missing-version.json │ │ │ ├── old-version.json │ │ │ ├── opencorporates.json │ │ │ ├── ror-invalid-view-pattern.json │ │ │ └── slub-invalid-property-setting.json │ │ └── valid │ │ │ ├── authentication.json │ │ │ ├── codefork-viaf.json │ │ │ ├── example-min.json │ │ │ ├── feature-view.json │ │ │ ├── findthatcharity.json │ │ │ ├── fundref.json │ │ │ ├── geocollider-sinatra.json │ │ │ ├── getty.json │ │ │ ├── kerameikos.json │ │ │ ├── kew.json │ │ │ ├── lobid-gnd.json │ │ │ ├── nomisma.json │ │ │ ├── occrp.json │ │ │ ├── ordnance-survey.json │ │ │ ├── vivo-cornell.json │ │ │ └── wikidata.json │ ├── preview-metadata │ │ └── valid │ │ │ └── example.json │ ├── preview-response │ │ └── example.html │ ├── reconciliation-candidate │ │ └── valid │ │ │ └── example.json │ ├── reconciliation-query-batch │ │ ├── invalid │ │ │ ├── empty-properties.json │ │ │ ├── empty-query.json │ │ │ └── misnamed-property.json │ │ └── valid │ │ │ ├── example-full.json │ │ │ ├── example-min.json │ │ │ ├── multi-values.json │ │ │ └── no-query-string.json │ ├── reconciliation-result-batch │ │ ├── invalid │ │ │ ├── missing-id.json │ │ │ ├── no-result.json │ │ │ └── root-array.json │ │ └── valid │ │ │ └── example-full.json │ ├── security-scheme │ │ └── valid │ │ │ ├── api_key.json │ │ │ └── http_basic_auth.json │ ├── suggest-entities-response │ │ └── valid │ │ │ └── example.json │ ├── suggest-metadata │ │ └── valid │ │ │ └── example.json │ ├── suggest-properties-response │ │ └── valid │ │ │ └── example.json │ └── suggest-types-response │ │ └── valid │ │ └── example.json ├── index.html ├── schemas │ ├── data-extension-property-proposal.json │ ├── data-extension-query.json │ ├── data-extension-response.json │ ├── manifest.json │ ├── openapi.json │ ├── reconciliation-query-batch.json │ ├── reconciliation-result-batch.json │ ├── suggest-entities-response.json │ ├── suggest-properties-response.json │ ├── suggest-types-response.json │ └── type.json └── source.html ├── 1.0-draft ├── examples │ ├── data-extension-metadata │ │ └── valid │ │ │ └── example-full.json │ ├── data-extension-property-proposal │ │ ├── invalid │ │ │ └── missing-properties.json │ │ └── valid │ │ │ └── response.json │ ├── data-extension-query │ │ └── valid │ │ │ ├── example-full.json │ │ │ └── example-min.json │ ├── data-extension-response │ │ ├── invalid │ │ │ └── wrong-properties.json │ │ └── valid │ │ │ ├── example-dir.json │ │ │ └── example-full.json │ ├── manifest │ │ ├── invalid │ │ │ ├── bad-authentication.json │ │ │ ├── feature-view.json │ │ │ ├── godot-missing-view.json │ │ │ ├── missing-version.json │ │ │ ├── old-version.json │ │ │ ├── opencorporates.json │ │ │ ├── ror-invalid-view-pattern.json │ │ │ └── slub-invalid-property-setting.json │ │ └── valid │ │ │ ├── authentication.json │ │ │ ├── codefork-viaf.json │ │ │ ├── example-min.json │ │ │ ├── feature-view.json │ │ │ ├── findthatcharity.json │ │ │ ├── fundref.json │ │ │ ├── geocollider-sinatra.json │ │ │ ├── getty.json │ │ │ ├── kerameikos.json │ │ │ ├── kew.json │ │ │ ├── lobid-gnd.json │ │ │ ├── nomisma.json │ │ │ ├── occrp.json │ │ │ ├── ordnance-survey.json │ │ │ ├── vivo-cornell.json │ │ │ └── wikidata.json │ ├── preview-metadata │ │ └── valid │ │ │ └── example.json │ ├── preview-response │ │ └── example.html │ ├── reconciliation-candidate │ │ └── valid │ │ │ └── example.json │ ├── reconciliation-query-batch │ │ ├── invalid │ │ │ ├── empty-conditions.json │ │ │ ├── empty-query.json │ │ │ ├── misnamed-conditions.json │ │ │ ├── missing-match-type.json │ │ │ ├── multiple-types.json │ │ │ ├── no-root-object.json │ │ │ └── old-format.json │ │ └── valid │ │ │ ├── example-full.json │ │ │ ├── example-min.json │ │ │ ├── multi-values.json │ │ │ ├── no-query-string.json │ │ │ └── text-processing-language.json │ ├── reconciliation-result-batch │ │ ├── invalid │ │ │ ├── missing-id.json │ │ │ ├── no-result.json │ │ │ └── root-array.json │ │ └── valid │ │ │ ├── example-full.json │ │ │ └── minimal.json │ ├── security-scheme │ │ └── valid │ │ │ ├── api_key.json │ │ │ └── http_basic_auth.json │ ├── suggest-entities-response │ │ └── valid │ │ │ └── example.json │ ├── suggest-properties-response │ │ └── valid │ │ │ └── example.json │ └── suggest-types-response │ │ └── valid │ │ └── example.json ├── index.html └── schemas │ ├── data-extension-property-proposal.json │ ├── data-extension-query.json │ ├── data-extension-response.json │ ├── dir.json │ ├── lang.json │ ├── manifest.json │ ├── openapi.json │ ├── reconciliation-query-batch.json │ ├── reconciliation-result-batch.json │ ├── suggest-entities-response.json │ ├── suggest-properties-response.json │ ├── suggest-types-response.json │ └── type.json ├── README.md ├── draft └── index.html ├── index.html ├── latest └── index.html ├── libs ├── README.md └── respec-w3c.js └── test.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Eclipse config: 2 | .project 3 | # NPM 4 | node_modules 5 | package-lock.json 6 | -------------------------------------------------------------------------------- /0.1/examples/data-extension-metadata/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/data-extension-metadata/valid/example-full.json -------------------------------------------------------------------------------- /0.1/examples/data-extension-property-proposal/valid/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/data-extension-property-proposal/valid/response.json -------------------------------------------------------------------------------- /0.1/examples/data-extension-query/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/data-extension-query/valid/example-full.json -------------------------------------------------------------------------------- /0.1/examples/data-extension-query/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/data-extension-query/valid/example-min.json -------------------------------------------------------------------------------- /0.1/examples/data-extension-response/invalid/wrong-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/data-extension-response/invalid/wrong-properties.json -------------------------------------------------------------------------------- /0.1/examples/data-extension-response/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/data-extension-response/valid/example-full.json -------------------------------------------------------------------------------- /0.1/examples/flyout-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/flyout-response/valid/example.json -------------------------------------------------------------------------------- /0.1/examples/manifest/invalid/godot-missing-identifierSpace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/invalid/godot-missing-identifierSpace.json -------------------------------------------------------------------------------- /0.1/examples/manifest/invalid/opencorporates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/invalid/opencorporates.json -------------------------------------------------------------------------------- /0.1/examples/manifest/invalid/ror-invalid-view-pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/invalid/ror-invalid-view-pattern.json -------------------------------------------------------------------------------- /0.1/examples/manifest/invalid/slub-invalid-property-setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/invalid/slub-invalid-property-setting.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/codefork-viaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/codefork-viaf.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/example-min.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/findthatcharity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/findthatcharity.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/fundref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/fundref.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/geocollider-sinatra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/geocollider-sinatra.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/getty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/getty.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/kerameikos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/kerameikos.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/kew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/kew.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/lobid-gnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/lobid-gnd.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/nomisma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/nomisma.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/occrp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/occrp.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/ordnance-survey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/ordnance-survey.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/vivo-cornell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/vivo-cornell.json -------------------------------------------------------------------------------- /0.1/examples/manifest/valid/wikidata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/manifest/valid/wikidata.json -------------------------------------------------------------------------------- /0.1/examples/preview-metadata/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/preview-metadata/valid/example.json -------------------------------------------------------------------------------- /0.1/examples/preview-response/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/preview-response/example.html -------------------------------------------------------------------------------- /0.1/examples/reconciliation-query-batch/invalid/misnamed-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-query-batch/invalid/misnamed-property.json -------------------------------------------------------------------------------- /0.1/examples/reconciliation-query-batch/invalid/missing-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-query-batch/invalid/missing-query.json -------------------------------------------------------------------------------- /0.1/examples/reconciliation-query-batch/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-query-batch/valid/example-full.json -------------------------------------------------------------------------------- /0.1/examples/reconciliation-query-batch/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-query-batch/valid/example-min.json -------------------------------------------------------------------------------- /0.1/examples/reconciliation-query-batch/valid/multi-values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-query-batch/valid/multi-values.json -------------------------------------------------------------------------------- /0.1/examples/reconciliation-result-batch/invalid/missing-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-result-batch/invalid/missing-id.json -------------------------------------------------------------------------------- /0.1/examples/reconciliation-result-batch/invalid/no-result.json: -------------------------------------------------------------------------------- 1 | { 2 | "q0": {} 3 | } 4 | -------------------------------------------------------------------------------- /0.1/examples/reconciliation-result-batch/invalid/root-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-result-batch/invalid/root-array.json -------------------------------------------------------------------------------- /0.1/examples/reconciliation-result-batch/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/reconciliation-result-batch/valid/example-full.json -------------------------------------------------------------------------------- /0.1/examples/suggest-entities-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/suggest-entities-response/valid/example.json -------------------------------------------------------------------------------- /0.1/examples/suggest-metadata/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/suggest-metadata/valid/example.json -------------------------------------------------------------------------------- /0.1/examples/suggest-properties-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/suggest-properties-response/valid/example.json -------------------------------------------------------------------------------- /0.1/examples/suggest-types-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/examples/suggest-types-response/valid/example.json -------------------------------------------------------------------------------- /0.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/index.html -------------------------------------------------------------------------------- /0.1/schemas/data-extension-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/data-extension-query.json -------------------------------------------------------------------------------- /0.1/schemas/data-extension-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/data-extension-response.json -------------------------------------------------------------------------------- /0.1/schemas/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/manifest.json -------------------------------------------------------------------------------- /0.1/schemas/reconciliation-query-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/reconciliation-query-batch.json -------------------------------------------------------------------------------- /0.1/schemas/reconciliation-result-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/reconciliation-result-batch.json -------------------------------------------------------------------------------- /0.1/schemas/suggest-entities-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/suggest-entities-response.json -------------------------------------------------------------------------------- /0.1/schemas/suggest-properties-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/suggest-properties-response.json -------------------------------------------------------------------------------- /0.1/schemas/suggest-types-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/schemas/suggest-types-response.json -------------------------------------------------------------------------------- /0.1/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.1/source.html -------------------------------------------------------------------------------- /0.2/examples/data-extension-metadata/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/data-extension-metadata/valid/example-full.json -------------------------------------------------------------------------------- /0.2/examples/data-extension-property-proposal/valid/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/data-extension-property-proposal/valid/response.json -------------------------------------------------------------------------------- /0.2/examples/data-extension-query/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/data-extension-query/valid/example-full.json -------------------------------------------------------------------------------- /0.2/examples/data-extension-query/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/data-extension-query/valid/example-min.json -------------------------------------------------------------------------------- /0.2/examples/data-extension-response/invalid/wrong-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/data-extension-response/invalid/wrong-properties.json -------------------------------------------------------------------------------- /0.2/examples/data-extension-response/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/data-extension-response/valid/example-full.json -------------------------------------------------------------------------------- /0.2/examples/flyout-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/flyout-response/valid/example.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/bad-authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/bad-authentication.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/feature-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/feature-view.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/godot-missing-identifierSpace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/godot-missing-identifierSpace.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/invalid-documentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/invalid-documentation.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/missing-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/missing-version.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/old-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/old-version.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/opencorporates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/opencorporates.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/ror-invalid-view-pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/ror-invalid-view-pattern.json -------------------------------------------------------------------------------- /0.2/examples/manifest/invalid/slub-invalid-property-setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/invalid/slub-invalid-property-setting.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/authentication.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/codefork-viaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/codefork-viaf.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/example-min.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/feature-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/feature-view.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/findthatcharity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/findthatcharity.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/fundref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/fundref.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/geocollider-sinatra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/geocollider-sinatra.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/getty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/getty.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/kerameikos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/kerameikos.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/kew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/kew.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/lobid-gnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/lobid-gnd.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/nomisma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/nomisma.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/occrp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/occrp.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/ordnance-survey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/ordnance-survey.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/vivo-cornell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/vivo-cornell.json -------------------------------------------------------------------------------- /0.2/examples/manifest/valid/wikidata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/manifest/valid/wikidata.json -------------------------------------------------------------------------------- /0.2/examples/preview-metadata/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/preview-metadata/valid/example.json -------------------------------------------------------------------------------- /0.2/examples/preview-response/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/preview-response/example.html -------------------------------------------------------------------------------- /0.2/examples/reconciliation-candidate/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-candidate/valid/example.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-query-batch/invalid/empty-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-query-batch/invalid/empty-properties.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-query-batch/invalid/empty-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-query-batch/invalid/empty-query.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-query-batch/invalid/misnamed-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-query-batch/invalid/misnamed-property.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-query-batch/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-query-batch/valid/example-full.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-query-batch/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-query-batch/valid/example-min.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-query-batch/valid/multi-values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-query-batch/valid/multi-values.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-query-batch/valid/no-query-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-query-batch/valid/no-query-string.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-result-batch/invalid/missing-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-result-batch/invalid/missing-id.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-result-batch/invalid/no-result.json: -------------------------------------------------------------------------------- 1 | { 2 | "q0": {} 3 | } 4 | -------------------------------------------------------------------------------- /0.2/examples/reconciliation-result-batch/invalid/root-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-result-batch/invalid/root-array.json -------------------------------------------------------------------------------- /0.2/examples/reconciliation-result-batch/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/reconciliation-result-batch/valid/example-full.json -------------------------------------------------------------------------------- /0.2/examples/security-scheme/valid/api_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/security-scheme/valid/api_key.json -------------------------------------------------------------------------------- /0.2/examples/security-scheme/valid/http_basic_auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/security-scheme/valid/http_basic_auth.json -------------------------------------------------------------------------------- /0.2/examples/suggest-entities-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/suggest-entities-response/valid/example.json -------------------------------------------------------------------------------- /0.2/examples/suggest-metadata/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/suggest-metadata/valid/example.json -------------------------------------------------------------------------------- /0.2/examples/suggest-properties-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/suggest-properties-response/valid/example.json -------------------------------------------------------------------------------- /0.2/examples/suggest-types-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/examples/suggest-types-response/valid/example.json -------------------------------------------------------------------------------- /0.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/index.html -------------------------------------------------------------------------------- /0.2/schemas/data-extension-property-proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/data-extension-property-proposal.json -------------------------------------------------------------------------------- /0.2/schemas/data-extension-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/data-extension-query.json -------------------------------------------------------------------------------- /0.2/schemas/data-extension-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/data-extension-response.json -------------------------------------------------------------------------------- /0.2/schemas/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/manifest.json -------------------------------------------------------------------------------- /0.2/schemas/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/openapi.json -------------------------------------------------------------------------------- /0.2/schemas/reconciliation-query-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/reconciliation-query-batch.json -------------------------------------------------------------------------------- /0.2/schemas/reconciliation-result-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/reconciliation-result-batch.json -------------------------------------------------------------------------------- /0.2/schemas/suggest-entities-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/suggest-entities-response.json -------------------------------------------------------------------------------- /0.2/schemas/suggest-properties-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/suggest-properties-response.json -------------------------------------------------------------------------------- /0.2/schemas/suggest-types-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/suggest-types-response.json -------------------------------------------------------------------------------- /0.2/schemas/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/schemas/type.json -------------------------------------------------------------------------------- /0.2/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/0.2/source.html -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-metadata/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-metadata/valid/example-full.json -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-property-proposal/invalid/missing-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-property-proposal/invalid/missing-properties.json -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-property-proposal/valid/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-property-proposal/valid/response.json -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-query/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-query/valid/example-full.json -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-query/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-query/valid/example-min.json -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-response/invalid/wrong-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-response/invalid/wrong-properties.json -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-response/valid/example-dir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-response/valid/example-dir.json -------------------------------------------------------------------------------- /1.0-draft/examples/data-extension-response/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/data-extension-response/valid/example-full.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/bad-authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/bad-authentication.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/feature-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/feature-view.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/godot-missing-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/godot-missing-view.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/missing-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/missing-version.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/old-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/old-version.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/opencorporates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/opencorporates.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/ror-invalid-view-pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/ror-invalid-view-pattern.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/invalid/slub-invalid-property-setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/invalid/slub-invalid-property-setting.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/authentication.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/codefork-viaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/codefork-viaf.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/example-min.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/feature-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/feature-view.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/findthatcharity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/findthatcharity.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/fundref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/fundref.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/geocollider-sinatra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/geocollider-sinatra.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/getty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/getty.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/kerameikos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/kerameikos.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/kew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/kew.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/lobid-gnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/lobid-gnd.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/nomisma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/nomisma.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/occrp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/occrp.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/ordnance-survey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/ordnance-survey.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/vivo-cornell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/vivo-cornell.json -------------------------------------------------------------------------------- /1.0-draft/examples/manifest/valid/wikidata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/manifest/valid/wikidata.json -------------------------------------------------------------------------------- /1.0-draft/examples/preview-metadata/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/preview-metadata/valid/example.json -------------------------------------------------------------------------------- /1.0-draft/examples/preview-response/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/preview-response/example.html -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-candidate/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-candidate/valid/example.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/invalid/empty-conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/invalid/empty-conditions.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/invalid/empty-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/invalid/empty-query.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/invalid/misnamed-conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/invalid/misnamed-conditions.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/invalid/missing-match-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/invalid/missing-match-type.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/invalid/multiple-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/invalid/multiple-types.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/invalid/no-root-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/invalid/no-root-object.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/invalid/old-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/invalid/old-format.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/valid/example-full.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/valid/example-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/valid/example-min.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/valid/multi-values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/valid/multi-values.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/valid/no-query-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/valid/no-query-string.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-query-batch/valid/text-processing-language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-query-batch/valid/text-processing-language.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-result-batch/invalid/missing-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-result-batch/invalid/missing-id.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-result-batch/invalid/no-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-result-batch/invalid/no-result.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-result-batch/invalid/root-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-result-batch/invalid/root-array.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-result-batch/valid/example-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-result-batch/valid/example-full.json -------------------------------------------------------------------------------- /1.0-draft/examples/reconciliation-result-batch/valid/minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/reconciliation-result-batch/valid/minimal.json -------------------------------------------------------------------------------- /1.0-draft/examples/security-scheme/valid/api_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/security-scheme/valid/api_key.json -------------------------------------------------------------------------------- /1.0-draft/examples/security-scheme/valid/http_basic_auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/security-scheme/valid/http_basic_auth.json -------------------------------------------------------------------------------- /1.0-draft/examples/suggest-entities-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/suggest-entities-response/valid/example.json -------------------------------------------------------------------------------- /1.0-draft/examples/suggest-properties-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/suggest-properties-response/valid/example.json -------------------------------------------------------------------------------- /1.0-draft/examples/suggest-types-response/valid/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/examples/suggest-types-response/valid/example.json -------------------------------------------------------------------------------- /1.0-draft/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/index.html -------------------------------------------------------------------------------- /1.0-draft/schemas/data-extension-property-proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/data-extension-property-proposal.json -------------------------------------------------------------------------------- /1.0-draft/schemas/data-extension-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/data-extension-query.json -------------------------------------------------------------------------------- /1.0-draft/schemas/data-extension-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/data-extension-response.json -------------------------------------------------------------------------------- /1.0-draft/schemas/dir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/dir.json -------------------------------------------------------------------------------- /1.0-draft/schemas/lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/lang.json -------------------------------------------------------------------------------- /1.0-draft/schemas/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/manifest.json -------------------------------------------------------------------------------- /1.0-draft/schemas/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/openapi.json -------------------------------------------------------------------------------- /1.0-draft/schemas/reconciliation-query-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/reconciliation-query-batch.json -------------------------------------------------------------------------------- /1.0-draft/schemas/reconciliation-result-batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/reconciliation-result-batch.json -------------------------------------------------------------------------------- /1.0-draft/schemas/suggest-entities-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/suggest-entities-response.json -------------------------------------------------------------------------------- /1.0-draft/schemas/suggest-properties-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/suggest-properties-response.json -------------------------------------------------------------------------------- /1.0-draft/schemas/suggest-types-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/suggest-types-response.json -------------------------------------------------------------------------------- /1.0-draft/schemas/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/1.0-draft/schemas/type.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/README.md -------------------------------------------------------------------------------- /draft/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/draft/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/index.html -------------------------------------------------------------------------------- /latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/latest/index.html -------------------------------------------------------------------------------- /libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/libs/README.md -------------------------------------------------------------------------------- /libs/respec-w3c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/libs/respec-w3c.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconciliation-api/specs/HEAD/test.sh --------------------------------------------------------------------------------