├── .dockerignore ├── .env.example ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── adding-your-tooling.yml │ ├── bug_report.yml │ ├── config.yml │ ├── docs.yml │ └── feature_request.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── README.md │ ├── build-preview.yml │ ├── ci.yml │ ├── codeql.yml │ ├── deploy-preview.yml │ ├── issue.yml │ ├── link-checker.yml │ ├── new-implementation.yml │ ├── pr-body-validation.yml │ ├── pr-dependencies.yml │ ├── production-deployment.yml │ ├── pull-request-target.yml │ ├── stale-issues-prs.yml │ ├── sync-contributors.yml │ ├── sync-project-roadmap.yml │ ├── trigger-update-landscape-tooling.yml │ └── validate-tooling-data.yml ├── .gitignore ├── .gitmodules ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .yarnrc.yml ├── .zshrc ├── CODEOWNERS ├── CONTRIBUTING-docs.md ├── CONTRIBUTING.md ├── Dockerfile ├── INSTALLATION.md ├── LICENSE ├── README.md ├── components.json ├── components ├── Accordion.tsx ├── AmbassadorsBanner.tsx ├── AmbassadorsCard.tsx ├── AmbassadorsList.tsx ├── CarbonsAds.tsx ├── Card.tsx ├── Code.tsx ├── DarkModeToggle.tsx ├── DocTable.tsx ├── DocsHelp.tsx ├── Faq.tsx ├── GettingStarted.tsx ├── Headlines.tsx ├── JsonEditor.tsx ├── Layout.tsx ├── NavigationButtons.tsx ├── ScrollButton.tsx ├── Sidebar.tsx ├── SiteLayout.tsx ├── StyledMarkdown.tsx ├── StyledMarkdownBlock.tsx ├── TableOfContentMarkdown.tsx ├── TabsGroup.tsx ├── jsonSchemaLinks.ts └── ui │ ├── alert.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── input.tsx │ ├── radio-group.tsx │ ├── separator.tsx │ └── textarea.tsx ├── context.ts ├── cypress.config.ts ├── cypress ├── components │ ├── Accordion.cy.tsx │ ├── AmbassadorsBanner.cy.tsx │ ├── AmbassadorsCard.cy.tsx │ ├── AmbassadorsList.cy.tsx │ ├── Badge.cy.tsx │ ├── Button.cy.tsx │ ├── Card.cy.tsx │ ├── Checkbox.cy.tsx │ ├── Code.cy.tsx │ ├── DarkModeToggle.cy.tsx │ ├── DocTable.cy.tsx │ ├── DocsHelp.cy.tsx │ ├── DropdownMenu.cy.tsx │ ├── Faq.cy.tsx │ ├── Headlines.cy.tsx │ ├── JsonEditor.cy.tsx │ ├── Layout.cy.tsx │ ├── NavigationButtons.cy.tsx │ ├── Radio.cy.tsx │ ├── ScrollButton.cy.tsx │ ├── SearchBar.cy.tsx │ ├── Sidebar.cy.tsx │ ├── Tag.cy.tsx │ └── ui │ │ ├── alert.cy.tsx │ │ └── card.cy.tsx ├── e2e │ └── homepage.cy.ts ├── plugins │ └── mockNextRouterUtils.ts └── support │ ├── commands.ts │ ├── component-index.html │ ├── component.ts │ └── e2e.ts ├── data ├── ambassadors-contributions.json ├── ambassadors.json ├── case-studies.json ├── community-users.json ├── faq.json ├── keywords.yml ├── roadmap.json ├── tooling-data.schema.json ├── tooling-data.yaml └── use-cases.json ├── lib ├── calendarUtils.ts ├── config.ts ├── extractPathWithoutFragment.ts ├── getFindResultsByGlobalRegExp.ts ├── getPartsOfJson.ts ├── getScopesOfParsedJsonSchema.ts ├── getStaticMarkdownPaths.ts ├── getStaticMarkdownProps.ts ├── getStaticPropsFromSingleMarkdown.ts ├── markdownUtils.ts ├── slugifyMarkdownHeadline.ts ├── useSetUrlParam.ts └── utils.ts ├── makefile ├── next-env.d.ts ├── next-sitemap.config.js ├── next.config.js ├── nyc.config.js ├── package.json ├── pages ├── 404.page.tsx ├── [slug].page.tsx ├── _app.page.tsx ├── _document.page.tsx ├── ambassadors │ └── index.page.tsx ├── blog │ ├── generateRssFeed.tsx │ ├── index.page.tsx │ └── posts │ │ ├── 6-river-systems-case-study.md │ │ ├── GSOD-docs-project-2024.md │ │ ├── [slug].page.tsx │ │ ├── and-then-there-were-three.md │ │ ├── apidays-paris-2023-recap.md │ │ ├── apidays-paris-2024-recap.md │ │ ├── applicability-json-schema-fundamentals-part-1.md │ │ ├── bowtie-intro.md │ │ ├── bundling-json-schema-compound-documents.md │ │ ├── code-of-conduct-for-json-schema.md │ │ ├── cookpad-case-study-en.md │ │ ├── cookpad-case-study-jp.md │ │ ├── custom-annotations-will-continue.md │ │ ├── dynamicref-and-generics.md │ │ ├── fixing-json-schema-output.md │ │ ├── future-of-json-schema.md │ │ ├── get-started-with-json-schema-in-node-js.md │ │ ├── github-case-study.md │ │ ├── gsoc24-wrapup.md │ │ ├── hello-2023--hello-json-schema-community.md │ │ ├── hello-world-hello-postman.md │ │ ├── hyperborea.md │ │ ├── interpreting-output.md │ │ ├── joining-postman.md │ │ ├── json-schema-adopters.md │ │ ├── json-schema-ambassadors.md │ │ ├── json-schema-in-5-minutes.md │ │ ├── json-schema-joins-the-openjsf.md │ │ ├── manfred-case-study-es.md │ │ ├── manfred-case-study.md │ │ ├── modelling-inheritance.md │ │ ├── new-website.md │ │ ├── oracle-case-study.md │ │ ├── postman-case-study.md │ │ ├── remote-case-study.md │ │ ├── rxdb-case-study.md │ │ ├── schema-static-analysis.md │ │ ├── stable-json-schema.md │ │ ├── the-architectural-scope-of-json-schema.md │ │ ├── the-last-breaking-change.md │ │ ├── tyler-technologies-case-study.md │ │ ├── understanding-lexical-dynamic-scopes.md │ │ ├── validating-openapi-and-json-schema.md │ │ ├── w3c-wot-case-study.md │ │ └── website-analytics-snapshot-2023.md ├── community │ └── index.page.tsx ├── docs │ └── index.page.tsx ├── draft-05 │ ├── index.md │ ├── index.page.tsx │ └── release-notes.md ├── draft-06 │ ├── [slug].page.tsx │ ├── index.md │ ├── index.page.tsx │ ├── json-hyper-schema-release-notes.md │ └── json-schema-release-notes.md ├── draft-07 │ ├── [slug].page.tsx │ ├── index.md │ ├── index.page.tsx │ ├── json-hyper-schema-release-notes.md │ └── json-schema-release-notes.md ├── draft │ ├── 2019-09 │ │ ├── [slug].page.tsx │ │ ├── index.md │ │ ├── index.page.tsx │ │ └── release-notes.md │ └── 2020-12 │ │ ├── [slug].page.tsx │ │ ├── index.md │ │ ├── index.page.tsx │ │ └── release-notes.md ├── implementers │ ├── [slug].page.tsx │ ├── _index.md │ ├── index.page.tsx │ └── interfaces.md ├── index.page.tsx ├── learn │ ├── [slug].page.tsx │ ├── file-system.md │ ├── getting-started-step-by-step │ │ ├── getting-started-step-by-step.md │ │ ├── index.page.tsx │ │ └── next-steps.md │ ├── glossary.md │ ├── guides │ │ └── index.page.tsx │ ├── index.page.tsx │ ├── json-schema-examples.md │ └── miscellaneous-examples.md ├── md-style-guide.md ├── overview │ ├── [slug].page.tsx │ ├── case-studies │ │ └── index.page.tsx │ ├── code-of-conduct │ │ ├── _index.md │ │ └── index.page.tsx │ ├── faq │ │ └── index.page.tsx │ ├── pro-help │ │ └── index.page.tsx │ ├── roadmap │ │ └── index.page.tsx │ ├── similar-technologies.md │ ├── sponsors │ │ ├── _index.md │ │ └── index.page.tsx │ ├── use-cases │ │ └── index.page.tsx │ └── what-is-jsonschema.md ├── specification-links.md ├── specification.md ├── specification │ ├── json-hyper-schema │ │ ├── _index.md │ │ └── index.page.tsx │ ├── migration │ │ ├── _index.md │ │ └── index.page.tsx │ └── release-notes │ │ ├── _index.md │ │ └── index.page.tsx ├── tools │ ├── JSONSchemaTool.ts │ ├── components │ │ ├── GroupByMenu.tsx │ │ ├── SearchBar.tsx │ │ ├── Sidebar.tsx │ │ ├── ToolingDetailModal.tsx │ │ ├── ToolingTable.tsx │ │ └── ui │ │ │ ├── Badge.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── DropdownMenu.tsx │ │ │ ├── Radio.tsx │ │ │ └── Tag.tsx │ ├── hooks │ │ └── useToolsTransform.tsx │ ├── index.page.tsx │ └── lib │ │ ├── analytics.schema.json │ │ ├── getDistinctEntries.ts │ │ ├── postAnalytics.ts │ │ └── toTitleCase.ts ├── understanding-json-schema │ ├── [slug].page.tsx │ ├── _index.md │ ├── about.md │ ├── basics.md │ ├── conventions.md │ ├── credits.md │ ├── index.page.tsx │ ├── keywords │ │ └── index.page.tsx │ ├── reference │ │ ├── [slug].page.tsx │ │ ├── _index.md │ │ ├── annotations.md │ │ ├── array.md │ │ ├── boolean.md │ │ ├── combining.md │ │ ├── comments.md │ │ ├── composition.md │ │ ├── conditionals.md │ │ ├── const.md │ │ ├── enum.md │ │ ├── generic.md │ │ ├── index.page.tsx │ │ ├── metadata.md │ │ ├── non_json_data.md │ │ ├── null.md │ │ ├── numeric.md │ │ ├── object.md │ │ ├── regular_expressions.md │ │ ├── schema.md │ │ ├── string.md │ │ └── type.md │ └── structuring.md └── work-in-progress.md ├── postcss.config.js ├── public ├── UnderstandingJSONSchema.pdf ├── _headers ├── _redirects ├── data │ ├── getting-started-examples.json │ └── getting-started-examples │ │ ├── instances │ │ ├── conditional-ok.json │ │ ├── default-extended-ok.json │ │ ├── default-ko.json │ │ ├── default-ok.json │ │ ├── enumerated-ok.json │ │ └── regex-ok.json │ │ └── schemas │ │ ├── conditional.json │ │ ├── default-extended.json │ │ ├── default.json │ │ ├── enumerated.json │ │ └── regex.json ├── draft-00 │ ├── draft-zyp-json-schema-00.txt │ ├── hyper-schema │ ├── json-ref │ ├── links │ └── schema ├── draft-01 │ ├── draft-zyp-json-schema-01.html │ ├── hyper-schema │ ├── json-ref │ ├── links │ └── schema ├── draft-02 │ ├── draft-zyp-json-schema-02.txt │ ├── hyper-schema │ ├── json-ref │ ├── links │ └── schema ├── draft-03 │ ├── draft-zyp-json-schema-03.pdf │ ├── examples │ │ ├── address │ │ ├── calendar │ │ ├── card │ │ ├── geo │ │ └── interfaces │ ├── hyper-schema │ ├── json-ref │ ├── links │ └── schema ├── draft-04 │ ├── draft-fge-json-schema-validation-00.html │ ├── draft-luff-json-hyper-schema-00.html │ ├── draft-zyp-json-schema-04.html │ ├── hyper-schema │ ├── json-schema-core.html │ ├── json-schema-hyperschema.html │ ├── json-schema-validation.html │ ├── links │ └── schema ├── draft-05 │ ├── draft-wright-json-schema-00.pdf │ ├── draft-wright-json-schema-hyperschema-00.pdf │ └── draft-wright-json-schema-validation-00.pdf ├── draft-06 │ ├── draft-wright-json-schema-01.html │ ├── draft-wright-json-schema-hyperschema-01.html │ ├── draft-wright-json-schema-validation-01.html │ ├── hyper-schema │ ├── json-schema-core.html │ ├── json-schema-hypermedia.html │ ├── json-schema-validation.html │ ├── links │ └── schema ├── draft-07 │ ├── draft-handrews-json-schema-00.pdf │ ├── draft-handrews-json-schema-01.html │ ├── draft-handrews-json-schema-hyperschema-00.html │ ├── draft-handrews-json-schema-hyperschema-01.html │ ├── draft-handrews-json-schema-validation-00.pdf │ ├── draft-handrews-json-schema-validation-01.html │ ├── draft-handrews-relative-json-pointer-00.html │ ├── draft-handrews-relative-json-pointer-01.html │ ├── hyper-schema │ ├── hyper-schema-output │ ├── json-schema-core.html │ ├── json-schema-hypermedia.html │ ├── json-schema-validation.html │ ├── links │ ├── relative-json-pointer.html │ └── schema ├── draft │ ├── 2019-09 │ │ ├── draft-handrews-json-schema-02.html │ │ ├── draft-handrews-json-schema-hyperschema-02.html │ │ ├── draft-handrews-json-schema-validation-02.html │ │ ├── draft-handrews-relative-json-pointer-02.html │ │ ├── hyper-schema │ │ ├── json-schema-core.html │ │ ├── json-schema-hypermedia.html │ │ ├── json-schema-validation.html │ │ ├── links │ │ ├── meta │ │ │ ├── applicator │ │ │ ├── content │ │ │ ├── core │ │ │ ├── format │ │ │ ├── hyper-schema │ │ │ ├── meta-data │ │ │ └── validation │ │ ├── output │ │ │ ├── hyper-schema │ │ │ ├── schema │ │ │ └── verbose-example │ │ └── schema │ └── 2020-12 │ │ ├── draft-bhutton-json-schema-00.html │ │ ├── draft-bhutton-json-schema-01.html │ │ ├── draft-bhutton-json-schema-validation-00.html │ │ ├── draft-bhutton-json-schema-validation-01.html │ │ ├── draft-bhutton-relative-json-pointer-00.html │ │ ├── hyper-schema │ │ ├── json-schema-core.html │ │ ├── json-schema-validation.html │ │ ├── links │ │ ├── meta │ │ ├── applicator │ │ ├── content │ │ ├── core │ │ ├── format-annotation │ │ ├── format-assertion │ │ ├── hyper-schema │ │ ├── meta-data │ │ ├── unevaluated │ │ └── validation │ │ ├── output │ │ ├── schema │ │ └── verbose-example │ │ ├── relative-json-pointer.html │ │ └── schema ├── favicon-lightblue.ico ├── favicon-white.ico ├── favicon.ico ├── icons │ ├── arrow.svg │ ├── book-dark.svg │ ├── book.svg │ ├── bulb.svg │ ├── bulb2.svg │ ├── cancel-dark.svg │ ├── cancel.svg │ ├── checkmark.svg │ ├── clipboard-dark.svg │ ├── clipboard.svg │ ├── close.svg │ ├── compass-dark.svg │ ├── compass.svg │ ├── contribute.svg │ ├── copied.svg │ ├── copy.svg │ ├── dialect.svg │ ├── environment.svg │ ├── external-link-black.svg │ ├── external-link.svg │ ├── eye-dark.svg │ ├── eye.svg │ ├── filter.svg │ ├── grad-cap-dark.svg │ ├── grad-cap.svg │ ├── green-tick.svg │ ├── icons8-info.svg │ ├── info-blue.svg │ ├── info-yellow.svg │ ├── language.svg │ ├── left-arrow.svg │ ├── license.svg │ ├── list.svg │ ├── menu.svg │ ├── moon.svg │ ├── outlink.svg │ ├── red-cross.svg │ ├── roadmap.svg │ ├── rss.svg │ ├── star.svg │ ├── sun.svg │ ├── theme-switch.svg │ ├── toc-menu.svg │ ├── tooling.svg │ ├── warning.svg │ └── x-mark.svg ├── illustrations │ └── schema.svg ├── img │ ├── ambassadors │ │ ├── Andreas Eberhart.jpg │ │ ├── Ege Korkan.jpg │ │ ├── Esther Okafor.jpg │ │ └── illustrations │ │ │ ├── case-studies.png │ │ │ ├── content.png │ │ │ ├── contributing.png │ │ │ ├── ecosystem.png │ │ │ ├── speaker.png │ │ │ └── video.png │ ├── avatars │ │ ├── benhutton.webp │ │ ├── benjagm.webp │ │ ├── blessing.webp │ │ ├── daniel.png │ │ ├── dhairya.webp │ │ ├── gregsdennis.webp │ │ ├── jasondesrosiers.jpeg │ │ ├── julian.webp │ │ ├── jviotti.webp │ │ ├── loiclefevre.webp │ │ ├── melinda.webp │ │ ├── mikeralphson.webp │ │ ├── onyedikachi.jpg │ │ ├── simonplenderleith.webp │ │ ├── valeria.webp │ │ ├── yanick.jpg │ │ └── yeray.webp │ ├── community │ │ └── ambassadors.png │ ├── event │ │ ├── Json-Schema-Blog.png │ │ └── meet.png │ ├── home-page │ │ ├── community-illustration.svg │ │ ├── community.svg │ │ ├── cover-1.jpeg │ │ ├── cover-2.jpeg │ │ ├── slack-json-schema.png │ │ └── slack.png │ ├── json_schema.svg │ ├── logos │ │ ├── 6river-logo-white.svg │ │ ├── 6river-logo.svg │ │ ├── Postman_logo-grey.svg │ │ ├── Slack-mark.svg │ │ ├── algolia-logo-white.png │ │ ├── bowtie.svg │ │ ├── cookpad-logo.png │ │ ├── dark-mode │ │ │ ├── airbnb_white.png │ │ │ ├── apideck_white.svg │ │ │ ├── asyncapi_white.svg │ │ │ ├── common-room_white.svg │ │ │ ├── dev_events_logo.png │ │ │ ├── llc_white.svg │ │ │ └── slack_white.svg │ │ ├── github-logo-white.svg │ │ ├── github-logo.svg │ │ ├── github_logo-white.svg │ │ ├── globe-white.svg │ │ ├── icons8-linkedin-2.svg │ │ ├── icons8-youtube.svg │ │ ├── logo-blue.svg │ │ ├── logo-white.svg │ │ ├── manfred-color.svg │ │ ├── netlify-white-logo.png │ │ ├── openjs_foundation-logo-horizontal-color.svg │ │ ├── openjs_foundation-logo-horizontal-white.svg │ │ ├── orbit-logo-white.png │ │ ├── postman_logo-white.svg │ │ ├── remote-logo.png │ │ ├── rss.svg │ │ ├── rxdb-logo.svg │ │ ├── slack_logo_small-white.svg │ │ ├── speaker-white.svg │ │ ├── sponsors │ │ │ ├── airbnb-logo.png │ │ │ ├── anon-black.png │ │ │ ├── anon-white.png │ │ │ ├── apideck-logo.png │ │ │ ├── apideck-white.svg │ │ │ ├── apideck.svg │ │ │ ├── asyncapi-logo-dark.svg │ │ │ ├── copycopter-white.png │ │ │ ├── copycopter.png │ │ │ ├── dottxt-logo-dark.svg │ │ │ ├── dottxt-logo-white.svg │ │ │ ├── endjin-logo.svg │ │ │ ├── it_flashcards-white.svg │ │ │ ├── it_flashcards.svg │ │ │ ├── llc-logo.svg │ │ │ ├── n-ix-logo.png │ │ │ ├── n8n-logo-dark.svg │ │ │ ├── n8n-logo-white.svg │ │ │ ├── octue-black.svg │ │ │ ├── octue-white.svg │ │ │ ├── postman_logo-orange.svg │ │ │ ├── retool-logo.svg │ │ │ ├── route4me-logo-dark.svg │ │ │ ├── route4me-logo-white.svg │ │ │ ├── rxdb.svg │ │ │ ├── sourcemeta-logo-dark.svg │ │ │ ├── sourcemeta-logo-light.svg │ │ │ ├── stoplight-logo.svg │ │ │ ├── supadata-logo-dark.svg │ │ │ ├── supadata-logo-light.svg │ │ │ ├── vps-server-logo.svg │ │ │ ├── wda-dark.svg │ │ │ └── wda.svg │ │ ├── supported │ │ │ ├── common-room.svg │ │ │ ├── netlify-logo.png │ │ │ ├── new-orbit-logo-color.svg │ │ │ ├── orbit-logo-color.png │ │ │ └── slack-logo.svg │ │ ├── toast_logo-white.svg │ │ ├── toast_logo.svg │ │ ├── tyler-tech-logo.svg │ │ ├── usedby │ │ │ ├── github-white.png │ │ │ ├── microsoft-white.png │ │ │ ├── postman-white.png │ │ │ └── zapier-logo_white.png │ │ ├── wot-logo.png │ │ └── x-twitter.svg │ ├── media-keywords.png │ ├── posts │ │ ├── 2021 │ │ │ ├── bundling-json-schema-compound-documents │ │ │ │ └── cover.webp │ │ │ ├── code-of-conduct-for-json-schema │ │ │ │ └── cover.webp │ │ │ ├── cookpad-case-study │ │ │ │ ├── cover.webp │ │ │ │ ├── fridge.webp │ │ │ │ └── office.webp │ │ │ └── validating-openapi-and-json-schema │ │ │ │ └── cover.webp │ │ ├── 2022 │ │ │ ├── and-then-there-were-three │ │ │ │ └── cover.webp │ │ │ ├── bowtie-intro │ │ │ │ └── cover.webp │ │ │ ├── dynamicref-and-generics │ │ │ │ └── cover.webp │ │ │ ├── fixing-json-schema-output │ │ │ │ └── cover.webp │ │ │ ├── fundamentals-part-1 │ │ │ │ ├── cover.webp │ │ │ │ └── tt │ │ │ │ │ ├── XOR1.webp │ │ │ │ │ ├── XOR2.webp │ │ │ │ │ ├── allOf.webp │ │ │ │ │ ├── anyOf.webp │ │ │ │ │ └── oneOf.webp │ │ │ ├── get-started-with-json-schema-in-node-js │ │ │ │ └── cover.webp │ │ │ ├── hello-world-hello-postman │ │ │ │ └── cover.webp │ │ │ ├── hyperborea │ │ │ │ └── cover.jpg │ │ │ ├── joining-postman │ │ │ │ └── baldy-hs-web.webp │ │ │ ├── json-schema-in-5-minutes │ │ │ │ └── cover.webp │ │ │ ├── json-schema-joins-the-openjsf │ │ │ │ └── cover.webp │ │ │ ├── stability │ │ │ │ └── arches.webp │ │ │ ├── the-architectural-scope-of-json-schema │ │ │ │ └── cover.webp │ │ │ ├── the-last-breaking-change │ │ │ │ └── cover.webp │ │ │ ├── tyler-technologies-case-study │ │ │ │ ├── 2187563_0051.webp │ │ │ │ ├── 2187563_0278.webp │ │ │ │ └── cover.webp │ │ │ └── w3c-wot-case-study │ │ │ │ ├── cover.webp │ │ │ │ └── wot-examples.webp │ │ ├── 2023 │ │ │ ├── 6-river-systems-case-study │ │ │ │ ├── chuck.webp │ │ │ │ ├── cover.webp │ │ │ │ └── manage.webp │ │ │ ├── apidays-paris-2023-recap │ │ │ │ ├── apidays-paris-2023.png │ │ │ │ └── booth-apidays.jpeg │ │ │ ├── custom-annotations-will-continue │ │ │ │ └── cover.webp │ │ │ ├── github-case-study │ │ │ │ ├── building.webp │ │ │ │ ├── cover.webp │ │ │ │ └── working.webp │ │ │ ├── hello-2023--hello-json-schema-community │ │ │ │ └── jai.webp │ │ │ ├── interpreting-output │ │ │ │ └── cover.webp │ │ │ ├── json-schema-adopters │ │ │ │ ├── join-button.png │ │ │ │ └── patrick-tomasso.jpg │ │ │ ├── modelling-inheritance │ │ │ │ └── cover.webp │ │ │ ├── new-website │ │ │ │ ├── cover.webp │ │ │ │ └── site-2016.webp │ │ │ ├── postman-case-study │ │ │ │ └── cover.webp │ │ │ ├── remote-case-study │ │ │ │ ├── Remote-Contract details.webp │ │ │ │ ├── Remote-Form builder.webp │ │ │ │ ├── blog-image.webp │ │ │ │ └── cover.webp │ │ │ ├── schema-static-analysis │ │ │ │ └── cover.webp │ │ │ └── website-analytics-snapshot-2023 │ │ │ │ ├── Screenshot 2023-07-21 at 12.12.31.webp │ │ │ │ ├── Screenshot 2023-07-31 at 10.39.20.webp │ │ │ │ └── cover.webp │ │ ├── 2024 │ │ │ ├── GSOD-docs-project-2024 │ │ │ │ └── duy-pham.webp │ │ │ ├── apidays-paris-2024-recap │ │ │ │ ├── json-schema-conference.png │ │ │ │ ├── json-schema-team.jpg │ │ │ │ └── loic-lefevre-talk.jpg │ │ │ ├── json-schema-ambassadors │ │ │ │ └── cover.webp │ │ │ ├── manfred-case-study │ │ │ │ ├── MAC_Export.webp │ │ │ │ ├── MAC_Structure.webp │ │ │ │ ├── background.webp │ │ │ │ ├── manfred_team.webp │ │ │ │ └── period.webp │ │ │ └── understanding-lexical-dynamic-scopes │ │ │ │ ├── cover.webp │ │ │ │ ├── directed-graph.webp │ │ │ │ ├── dynamic-scope-1.webp │ │ │ │ ├── dynamic-scope-2.webp │ │ │ │ ├── dynamic-scope-internal-align.webp │ │ │ │ ├── dynamic-scope-pop-1.webp │ │ │ │ ├── dynamic-scope-pop-2.webp │ │ │ │ ├── dynamic-scope-pop-3.webp │ │ │ │ ├── dynamic-scope-pop-4.webp │ │ │ │ ├── dynamic-scope-pop-5.webp │ │ │ │ ├── dynamic-scope-ref-remote-1.webp │ │ │ │ ├── dynamic-scope-ref-remote-2.webp │ │ │ │ ├── dynamic-scope-ref-remote-3.webp │ │ │ │ ├── dynamic-scope-ref-remote-4.webp │ │ │ │ ├── lexical-scope-1.webp │ │ │ │ ├── lexical-scope-2.webp │ │ │ │ ├── lexical-scope-3.webp │ │ │ │ ├── lexical-scope-ref-local.webp │ │ │ │ ├── lexical-scope-ref-remote-1.webp │ │ │ │ ├── lexical-scope-ref-remote-2.webp │ │ │ │ ├── lexical-scope-ref-remote-3.webp │ │ │ │ ├── scopes-multiple-ids.webp │ │ │ │ ├── scopes-schema-resources.webp │ │ │ │ └── scopes-static-anchors.webp │ │ └── 2025 │ │ │ ├── gsoc24 │ │ │ └── gsoc24-banner-main.png │ │ │ ├── oracle-case-study │ │ │ ├── banner.webp │ │ │ ├── blog_frontpage.webp │ │ │ ├── converged_database.webp │ │ │ ├── form.webp │ │ │ └── json-schema-form.webp │ │ │ ├── rxdb-case-study │ │ │ └── cover.jpeg │ │ │ └── stable-json-schema │ │ │ └── mt-taranaki.webp │ ├── scroll.svg │ ├── stage-bg.svg │ ├── tools │ │ ├── adding_your_tool.png │ │ ├── logos │ │ │ ├── json-everything.svg │ │ │ └── justinrainbow-json-schema.png │ │ └── try_bowtie.png │ └── what-is-json-schema.png ├── logo-blue.svg ├── logo-white.svg ├── logo.svg └── understanding │ ├── fail.png │ ├── fail.svg │ ├── jsonschema.css │ ├── jsonschema.js │ ├── logo.ico │ ├── logo.pdf │ ├── logo.png │ ├── octopus.png │ ├── octopus.svg │ ├── pass.png │ ├── pass.svg │ └── schema.png ├── store.ts ├── styles └── globals.css ├── svgr.d.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/adding-your-tooling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/ISSUE_TEMPLATE/adding-your-tooling.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/ISSUE_TEMPLATE/docs.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/build-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/build-preview.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/deploy-preview.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/link-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/link-checker.yml -------------------------------------------------------------------------------- /.github/workflows/new-implementation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/new-implementation.yml -------------------------------------------------------------------------------- /.github/workflows/pr-body-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/pr-body-validation.yml -------------------------------------------------------------------------------- /.github/workflows/pr-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/pr-dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/production-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/production-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/pull-request-target.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/stale-issues-prs.yml -------------------------------------------------------------------------------- /.github/workflows/sync-contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/sync-contributors.yml -------------------------------------------------------------------------------- /.github/workflows/sync-project-roadmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/sync-project-roadmap.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-update-landscape-tooling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/trigger-update-landscape-tooling.yml -------------------------------------------------------------------------------- /.github/workflows/validate-tooling-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.github/workflows/validate-tooling-data.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .github 3 | _includes -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/.zshrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/CONTRIBUTING-docs.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components.json -------------------------------------------------------------------------------- /components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/Accordion.tsx -------------------------------------------------------------------------------- /components/AmbassadorsBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/AmbassadorsBanner.tsx -------------------------------------------------------------------------------- /components/AmbassadorsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/AmbassadorsCard.tsx -------------------------------------------------------------------------------- /components/AmbassadorsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/AmbassadorsList.tsx -------------------------------------------------------------------------------- /components/CarbonsAds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/CarbonsAds.tsx -------------------------------------------------------------------------------- /components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/Card.tsx -------------------------------------------------------------------------------- /components/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/Code.tsx -------------------------------------------------------------------------------- /components/DarkModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/DarkModeToggle.tsx -------------------------------------------------------------------------------- /components/DocTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/DocTable.tsx -------------------------------------------------------------------------------- /components/DocsHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/DocsHelp.tsx -------------------------------------------------------------------------------- /components/Faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/Faq.tsx -------------------------------------------------------------------------------- /components/GettingStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/GettingStarted.tsx -------------------------------------------------------------------------------- /components/Headlines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/Headlines.tsx -------------------------------------------------------------------------------- /components/JsonEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/JsonEditor.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/NavigationButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/NavigationButtons.tsx -------------------------------------------------------------------------------- /components/ScrollButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ScrollButton.tsx -------------------------------------------------------------------------------- /components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/Sidebar.tsx -------------------------------------------------------------------------------- /components/SiteLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/SiteLayout.tsx -------------------------------------------------------------------------------- /components/StyledMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/StyledMarkdown.tsx -------------------------------------------------------------------------------- /components/StyledMarkdownBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/StyledMarkdownBlock.tsx -------------------------------------------------------------------------------- /components/TableOfContentMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/TableOfContentMarkdown.tsx -------------------------------------------------------------------------------- /components/TabsGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/TabsGroup.tsx -------------------------------------------------------------------------------- /components/jsonSchemaLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/jsonSchemaLinks.ts -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/context.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/components/Accordion.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Accordion.cy.tsx -------------------------------------------------------------------------------- /cypress/components/AmbassadorsBanner.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/AmbassadorsBanner.cy.tsx -------------------------------------------------------------------------------- /cypress/components/AmbassadorsCard.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/AmbassadorsCard.cy.tsx -------------------------------------------------------------------------------- /cypress/components/AmbassadorsList.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/AmbassadorsList.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Badge.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Badge.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Button.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Button.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Card.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Card.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Checkbox.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Checkbox.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Code.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Code.cy.tsx -------------------------------------------------------------------------------- /cypress/components/DarkModeToggle.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/DarkModeToggle.cy.tsx -------------------------------------------------------------------------------- /cypress/components/DocTable.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/DocTable.cy.tsx -------------------------------------------------------------------------------- /cypress/components/DocsHelp.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/DocsHelp.cy.tsx -------------------------------------------------------------------------------- /cypress/components/DropdownMenu.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/DropdownMenu.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Faq.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Faq.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Headlines.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Headlines.cy.tsx -------------------------------------------------------------------------------- /cypress/components/JsonEditor.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/JsonEditor.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Layout.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Layout.cy.tsx -------------------------------------------------------------------------------- /cypress/components/NavigationButtons.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/NavigationButtons.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Radio.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Radio.cy.tsx -------------------------------------------------------------------------------- /cypress/components/ScrollButton.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/ScrollButton.cy.tsx -------------------------------------------------------------------------------- /cypress/components/SearchBar.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/SearchBar.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Sidebar.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Sidebar.cy.tsx -------------------------------------------------------------------------------- /cypress/components/Tag.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/Tag.cy.tsx -------------------------------------------------------------------------------- /cypress/components/ui/alert.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/ui/alert.cy.tsx -------------------------------------------------------------------------------- /cypress/components/ui/card.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/components/ui/card.cy.tsx -------------------------------------------------------------------------------- /cypress/e2e/homepage.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/e2e/homepage.cy.ts -------------------------------------------------------------------------------- /cypress/plugins/mockNextRouterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/plugins/mockNextRouterUtils.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/support/component-index.html -------------------------------------------------------------------------------- /cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/support/component.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /data/ambassadors-contributions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/ambassadors-contributions.json -------------------------------------------------------------------------------- /data/ambassadors.json: -------------------------------------------------------------------------------- 1 | ../_includes/community/programs/ambassadors/ambassadors.json -------------------------------------------------------------------------------- /data/case-studies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/case-studies.json -------------------------------------------------------------------------------- /data/community-users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/community-users.json -------------------------------------------------------------------------------- /data/faq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/faq.json -------------------------------------------------------------------------------- /data/keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/keywords.yml -------------------------------------------------------------------------------- /data/roadmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/roadmap.json -------------------------------------------------------------------------------- /data/tooling-data.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/tooling-data.schema.json -------------------------------------------------------------------------------- /data/tooling-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/tooling-data.yaml -------------------------------------------------------------------------------- /data/use-cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/data/use-cases.json -------------------------------------------------------------------------------- /lib/calendarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/calendarUtils.ts -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/extractPathWithoutFragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/extractPathWithoutFragment.ts -------------------------------------------------------------------------------- /lib/getFindResultsByGlobalRegExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/getFindResultsByGlobalRegExp.ts -------------------------------------------------------------------------------- /lib/getPartsOfJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/getPartsOfJson.ts -------------------------------------------------------------------------------- /lib/getScopesOfParsedJsonSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/getScopesOfParsedJsonSchema.ts -------------------------------------------------------------------------------- /lib/getStaticMarkdownPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/getStaticMarkdownPaths.ts -------------------------------------------------------------------------------- /lib/getStaticMarkdownProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/getStaticMarkdownProps.ts -------------------------------------------------------------------------------- /lib/getStaticPropsFromSingleMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/getStaticPropsFromSingleMarkdown.ts -------------------------------------------------------------------------------- /lib/markdownUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/markdownUtils.ts -------------------------------------------------------------------------------- /lib/slugifyMarkdownHeadline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/slugifyMarkdownHeadline.ts -------------------------------------------------------------------------------- /lib/useSetUrlParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/useSetUrlParam.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/makefile -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/next.config.js -------------------------------------------------------------------------------- /nyc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/nyc.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/404.page.tsx -------------------------------------------------------------------------------- /pages/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/[slug].page.tsx -------------------------------------------------------------------------------- /pages/_app.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/_app.page.tsx -------------------------------------------------------------------------------- /pages/_document.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/_document.page.tsx -------------------------------------------------------------------------------- /pages/ambassadors/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/ambassadors/index.page.tsx -------------------------------------------------------------------------------- /pages/blog/generateRssFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/generateRssFeed.tsx -------------------------------------------------------------------------------- /pages/blog/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/index.page.tsx -------------------------------------------------------------------------------- /pages/blog/posts/6-river-systems-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/6-river-systems-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/GSOD-docs-project-2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/GSOD-docs-project-2024.md -------------------------------------------------------------------------------- /pages/blog/posts/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/[slug].page.tsx -------------------------------------------------------------------------------- /pages/blog/posts/and-then-there-were-three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/and-then-there-were-three.md -------------------------------------------------------------------------------- /pages/blog/posts/apidays-paris-2023-recap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/apidays-paris-2023-recap.md -------------------------------------------------------------------------------- /pages/blog/posts/apidays-paris-2024-recap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/apidays-paris-2024-recap.md -------------------------------------------------------------------------------- /pages/blog/posts/applicability-json-schema-fundamentals-part-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/applicability-json-schema-fundamentals-part-1.md -------------------------------------------------------------------------------- /pages/blog/posts/bowtie-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/bowtie-intro.md -------------------------------------------------------------------------------- /pages/blog/posts/bundling-json-schema-compound-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/bundling-json-schema-compound-documents.md -------------------------------------------------------------------------------- /pages/blog/posts/code-of-conduct-for-json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/code-of-conduct-for-json-schema.md -------------------------------------------------------------------------------- /pages/blog/posts/cookpad-case-study-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/cookpad-case-study-en.md -------------------------------------------------------------------------------- /pages/blog/posts/cookpad-case-study-jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/cookpad-case-study-jp.md -------------------------------------------------------------------------------- /pages/blog/posts/custom-annotations-will-continue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/custom-annotations-will-continue.md -------------------------------------------------------------------------------- /pages/blog/posts/dynamicref-and-generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/dynamicref-and-generics.md -------------------------------------------------------------------------------- /pages/blog/posts/fixing-json-schema-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/fixing-json-schema-output.md -------------------------------------------------------------------------------- /pages/blog/posts/future-of-json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/future-of-json-schema.md -------------------------------------------------------------------------------- /pages/blog/posts/get-started-with-json-schema-in-node-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/get-started-with-json-schema-in-node-js.md -------------------------------------------------------------------------------- /pages/blog/posts/github-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/github-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/gsoc24-wrapup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/gsoc24-wrapup.md -------------------------------------------------------------------------------- /pages/blog/posts/hello-2023--hello-json-schema-community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/hello-2023--hello-json-schema-community.md -------------------------------------------------------------------------------- /pages/blog/posts/hello-world-hello-postman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/hello-world-hello-postman.md -------------------------------------------------------------------------------- /pages/blog/posts/hyperborea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/hyperborea.md -------------------------------------------------------------------------------- /pages/blog/posts/interpreting-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/interpreting-output.md -------------------------------------------------------------------------------- /pages/blog/posts/joining-postman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/joining-postman.md -------------------------------------------------------------------------------- /pages/blog/posts/json-schema-adopters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/json-schema-adopters.md -------------------------------------------------------------------------------- /pages/blog/posts/json-schema-ambassadors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/json-schema-ambassadors.md -------------------------------------------------------------------------------- /pages/blog/posts/json-schema-in-5-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/json-schema-in-5-minutes.md -------------------------------------------------------------------------------- /pages/blog/posts/json-schema-joins-the-openjsf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/json-schema-joins-the-openjsf.md -------------------------------------------------------------------------------- /pages/blog/posts/manfred-case-study-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/manfred-case-study-es.md -------------------------------------------------------------------------------- /pages/blog/posts/manfred-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/manfred-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/modelling-inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/modelling-inheritance.md -------------------------------------------------------------------------------- /pages/blog/posts/new-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/new-website.md -------------------------------------------------------------------------------- /pages/blog/posts/oracle-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/oracle-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/postman-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/postman-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/remote-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/remote-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/rxdb-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/rxdb-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/schema-static-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/schema-static-analysis.md -------------------------------------------------------------------------------- /pages/blog/posts/stable-json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/stable-json-schema.md -------------------------------------------------------------------------------- /pages/blog/posts/the-architectural-scope-of-json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/the-architectural-scope-of-json-schema.md -------------------------------------------------------------------------------- /pages/blog/posts/the-last-breaking-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/the-last-breaking-change.md -------------------------------------------------------------------------------- /pages/blog/posts/tyler-technologies-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/tyler-technologies-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/understanding-lexical-dynamic-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/understanding-lexical-dynamic-scopes.md -------------------------------------------------------------------------------- /pages/blog/posts/validating-openapi-and-json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/validating-openapi-and-json-schema.md -------------------------------------------------------------------------------- /pages/blog/posts/w3c-wot-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/w3c-wot-case-study.md -------------------------------------------------------------------------------- /pages/blog/posts/website-analytics-snapshot-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/blog/posts/website-analytics-snapshot-2023.md -------------------------------------------------------------------------------- /pages/community/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/community/index.page.tsx -------------------------------------------------------------------------------- /pages/docs/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/docs/index.page.tsx -------------------------------------------------------------------------------- /pages/draft-05/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-05/index.md -------------------------------------------------------------------------------- /pages/draft-05/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-05/index.page.tsx -------------------------------------------------------------------------------- /pages/draft-05/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-05/release-notes.md -------------------------------------------------------------------------------- /pages/draft-06/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-06/[slug].page.tsx -------------------------------------------------------------------------------- /pages/draft-06/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-06/index.md -------------------------------------------------------------------------------- /pages/draft-06/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-06/index.page.tsx -------------------------------------------------------------------------------- /pages/draft-06/json-hyper-schema-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-06/json-hyper-schema-release-notes.md -------------------------------------------------------------------------------- /pages/draft-06/json-schema-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-06/json-schema-release-notes.md -------------------------------------------------------------------------------- /pages/draft-07/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-07/[slug].page.tsx -------------------------------------------------------------------------------- /pages/draft-07/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-07/index.md -------------------------------------------------------------------------------- /pages/draft-07/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-07/index.page.tsx -------------------------------------------------------------------------------- /pages/draft-07/json-hyper-schema-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-07/json-hyper-schema-release-notes.md -------------------------------------------------------------------------------- /pages/draft-07/json-schema-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft-07/json-schema-release-notes.md -------------------------------------------------------------------------------- /pages/draft/2019-09/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2019-09/[slug].page.tsx -------------------------------------------------------------------------------- /pages/draft/2019-09/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2019-09/index.md -------------------------------------------------------------------------------- /pages/draft/2019-09/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2019-09/index.page.tsx -------------------------------------------------------------------------------- /pages/draft/2019-09/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2019-09/release-notes.md -------------------------------------------------------------------------------- /pages/draft/2020-12/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2020-12/[slug].page.tsx -------------------------------------------------------------------------------- /pages/draft/2020-12/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2020-12/index.md -------------------------------------------------------------------------------- /pages/draft/2020-12/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2020-12/index.page.tsx -------------------------------------------------------------------------------- /pages/draft/2020-12/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/draft/2020-12/release-notes.md -------------------------------------------------------------------------------- /pages/implementers/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/implementers/[slug].page.tsx -------------------------------------------------------------------------------- /pages/implementers/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/implementers/_index.md -------------------------------------------------------------------------------- /pages/implementers/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/implementers/index.page.tsx -------------------------------------------------------------------------------- /pages/implementers/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/implementers/interfaces.md -------------------------------------------------------------------------------- /pages/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/index.page.tsx -------------------------------------------------------------------------------- /pages/learn/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/[slug].page.tsx -------------------------------------------------------------------------------- /pages/learn/file-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/file-system.md -------------------------------------------------------------------------------- /pages/learn/getting-started-step-by-step/getting-started-step-by-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/getting-started-step-by-step/getting-started-step-by-step.md -------------------------------------------------------------------------------- /pages/learn/getting-started-step-by-step/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/getting-started-step-by-step/index.page.tsx -------------------------------------------------------------------------------- /pages/learn/getting-started-step-by-step/next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/getting-started-step-by-step/next-steps.md -------------------------------------------------------------------------------- /pages/learn/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/glossary.md -------------------------------------------------------------------------------- /pages/learn/guides/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/guides/index.page.tsx -------------------------------------------------------------------------------- /pages/learn/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/index.page.tsx -------------------------------------------------------------------------------- /pages/learn/json-schema-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/json-schema-examples.md -------------------------------------------------------------------------------- /pages/learn/miscellaneous-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/learn/miscellaneous-examples.md -------------------------------------------------------------------------------- /pages/md-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/md-style-guide.md -------------------------------------------------------------------------------- /pages/overview/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/[slug].page.tsx -------------------------------------------------------------------------------- /pages/overview/case-studies/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/case-studies/index.page.tsx -------------------------------------------------------------------------------- /pages/overview/code-of-conduct/_index.md: -------------------------------------------------------------------------------- 1 | ../../../_includes/dot-github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /pages/overview/code-of-conduct/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/code-of-conduct/index.page.tsx -------------------------------------------------------------------------------- /pages/overview/faq/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/faq/index.page.tsx -------------------------------------------------------------------------------- /pages/overview/pro-help/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/pro-help/index.page.tsx -------------------------------------------------------------------------------- /pages/overview/roadmap/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/roadmap/index.page.tsx -------------------------------------------------------------------------------- /pages/overview/similar-technologies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/similar-technologies.md -------------------------------------------------------------------------------- /pages/overview/sponsors/_index.md: -------------------------------------------------------------------------------- 1 | ../../../_includes/community/programs/sponsors/sponsors.md -------------------------------------------------------------------------------- /pages/overview/sponsors/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/sponsors/index.page.tsx -------------------------------------------------------------------------------- /pages/overview/use-cases/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/use-cases/index.page.tsx -------------------------------------------------------------------------------- /pages/overview/what-is-jsonschema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/overview/what-is-jsonschema.md -------------------------------------------------------------------------------- /pages/specification-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification-links.md -------------------------------------------------------------------------------- /pages/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification.md -------------------------------------------------------------------------------- /pages/specification/json-hyper-schema/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification/json-hyper-schema/_index.md -------------------------------------------------------------------------------- /pages/specification/json-hyper-schema/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification/json-hyper-schema/index.page.tsx -------------------------------------------------------------------------------- /pages/specification/migration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification/migration/_index.md -------------------------------------------------------------------------------- /pages/specification/migration/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification/migration/index.page.tsx -------------------------------------------------------------------------------- /pages/specification/release-notes/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification/release-notes/_index.md -------------------------------------------------------------------------------- /pages/specification/release-notes/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/specification/release-notes/index.page.tsx -------------------------------------------------------------------------------- /pages/tools/JSONSchemaTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/JSONSchemaTool.ts -------------------------------------------------------------------------------- /pages/tools/components/GroupByMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/GroupByMenu.tsx -------------------------------------------------------------------------------- /pages/tools/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/SearchBar.tsx -------------------------------------------------------------------------------- /pages/tools/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/Sidebar.tsx -------------------------------------------------------------------------------- /pages/tools/components/ToolingDetailModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/ToolingDetailModal.tsx -------------------------------------------------------------------------------- /pages/tools/components/ToolingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/ToolingTable.tsx -------------------------------------------------------------------------------- /pages/tools/components/ui/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/ui/Badge.tsx -------------------------------------------------------------------------------- /pages/tools/components/ui/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/ui/Checkbox.tsx -------------------------------------------------------------------------------- /pages/tools/components/ui/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/ui/DropdownMenu.tsx -------------------------------------------------------------------------------- /pages/tools/components/ui/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/ui/Radio.tsx -------------------------------------------------------------------------------- /pages/tools/components/ui/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/components/ui/Tag.tsx -------------------------------------------------------------------------------- /pages/tools/hooks/useToolsTransform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/hooks/useToolsTransform.tsx -------------------------------------------------------------------------------- /pages/tools/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/index.page.tsx -------------------------------------------------------------------------------- /pages/tools/lib/analytics.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/lib/analytics.schema.json -------------------------------------------------------------------------------- /pages/tools/lib/getDistinctEntries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/lib/getDistinctEntries.ts -------------------------------------------------------------------------------- /pages/tools/lib/postAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/lib/postAnalytics.ts -------------------------------------------------------------------------------- /pages/tools/lib/toTitleCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/tools/lib/toTitleCase.ts -------------------------------------------------------------------------------- /pages/understanding-json-schema/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/[slug].page.tsx -------------------------------------------------------------------------------- /pages/understanding-json-schema/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/_index.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/about.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/basics.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/conventions.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/credits.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/index.page.tsx -------------------------------------------------------------------------------- /pages/understanding-json-schema/keywords/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/keywords/index.page.tsx -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/[slug].page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/[slug].page.tsx -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/_index.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/annotations.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/array.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/boolean.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/combining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/combining.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/comments.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/composition.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/conditionals.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/const.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/enum.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/generic.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/index.page.tsx -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/metadata.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/non_json_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/non_json_data.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/null.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/null.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/numeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/numeric.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/object.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/regular_expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/regular_expressions.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/schema.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/string.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/reference/type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/reference/type.md -------------------------------------------------------------------------------- /pages/understanding-json-schema/structuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/understanding-json-schema/structuring.md -------------------------------------------------------------------------------- /pages/work-in-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/pages/work-in-progress.md -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/UnderstandingJSONSchema.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/UnderstandingJSONSchema.pdf -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/_headers -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/data/getting-started-examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/instances/conditional-ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/instances/conditional-ok.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/instances/default-extended-ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/instances/default-extended-ok.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/instances/default-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/instances/default-ko.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/instances/default-ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/instances/default-ok.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/instances/enumerated-ok.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [1, 2, 3] 3 | } 4 | -------------------------------------------------------------------------------- /public/data/getting-started-examples/instances/regex-ok.json: -------------------------------------------------------------------------------- 1 | { 2 | "code": "ABC-123" 3 | } 4 | -------------------------------------------------------------------------------- /public/data/getting-started-examples/schemas/conditional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/schemas/conditional.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/schemas/default-extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/schemas/default-extended.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/schemas/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/schemas/default.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/schemas/enumerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/schemas/enumerated.json -------------------------------------------------------------------------------- /public/data/getting-started-examples/schemas/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/data/getting-started-examples/schemas/regex.json -------------------------------------------------------------------------------- /public/draft-00/draft-zyp-json-schema-00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-00/draft-zyp-json-schema-00.txt -------------------------------------------------------------------------------- /public/draft-00/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-00/hyper-schema.json -------------------------------------------------------------------------------- /public/draft-00/json-ref: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-00/json-ref.json -------------------------------------------------------------------------------- /public/draft-00/links: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-00/links.json -------------------------------------------------------------------------------- /public/draft-00/schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-00/schema.json -------------------------------------------------------------------------------- /public/draft-01/draft-zyp-json-schema-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-01/draft-zyp-json-schema-01.html -------------------------------------------------------------------------------- /public/draft-01/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-01/hyper-schema.json -------------------------------------------------------------------------------- /public/draft-01/json-ref: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-01/json-ref.json -------------------------------------------------------------------------------- /public/draft-01/links: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-01/links.json -------------------------------------------------------------------------------- /public/draft-01/schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-01/schema.json -------------------------------------------------------------------------------- /public/draft-02/draft-zyp-json-schema-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-02/draft-zyp-json-schema-02.txt -------------------------------------------------------------------------------- /public/draft-02/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-02/hyper-schema.json -------------------------------------------------------------------------------- /public/draft-02/json-ref: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-02/json-ref.json -------------------------------------------------------------------------------- /public/draft-02/links: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-02/links.json -------------------------------------------------------------------------------- /public/draft-02/schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-02/schema.json -------------------------------------------------------------------------------- /public/draft-03/draft-zyp-json-schema-03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-03/draft-zyp-json-schema-03.pdf -------------------------------------------------------------------------------- /public/draft-03/examples/address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-03/examples/address -------------------------------------------------------------------------------- /public/draft-03/examples/calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-03/examples/calendar -------------------------------------------------------------------------------- /public/draft-03/examples/card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-03/examples/card -------------------------------------------------------------------------------- /public/draft-03/examples/geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-03/examples/geo -------------------------------------------------------------------------------- /public/draft-03/examples/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-03/examples/interfaces -------------------------------------------------------------------------------- /public/draft-03/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-03/hyper-schema.json -------------------------------------------------------------------------------- /public/draft-03/json-ref: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-03/json-ref.json -------------------------------------------------------------------------------- /public/draft-03/links: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-03/links.json -------------------------------------------------------------------------------- /public/draft-03/schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-03/schema.json -------------------------------------------------------------------------------- /public/draft-04/draft-fge-json-schema-validation-00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-04/draft-fge-json-schema-validation-00.html -------------------------------------------------------------------------------- /public/draft-04/draft-luff-json-hyper-schema-00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-04/draft-luff-json-hyper-schema-00.html -------------------------------------------------------------------------------- /public/draft-04/draft-zyp-json-schema-04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-04/draft-zyp-json-schema-04.html -------------------------------------------------------------------------------- /public/draft-04/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-04/hyper-schema.json -------------------------------------------------------------------------------- /public/draft-04/json-schema-core.html: -------------------------------------------------------------------------------- 1 | draft-zyp-json-schema-04.html -------------------------------------------------------------------------------- /public/draft-04/json-schema-hyperschema.html: -------------------------------------------------------------------------------- 1 | draft-luff-json-hyper-schema-00.html -------------------------------------------------------------------------------- /public/draft-04/json-schema-validation.html: -------------------------------------------------------------------------------- 1 | draft-fge-json-schema-validation-00.html -------------------------------------------------------------------------------- /public/draft-04/links: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-04/links.json -------------------------------------------------------------------------------- /public/draft-04/schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-04/schema.json -------------------------------------------------------------------------------- /public/draft-05/draft-wright-json-schema-00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-05/draft-wright-json-schema-00.pdf -------------------------------------------------------------------------------- /public/draft-05/draft-wright-json-schema-hyperschema-00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-05/draft-wright-json-schema-hyperschema-00.pdf -------------------------------------------------------------------------------- /public/draft-05/draft-wright-json-schema-validation-00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-05/draft-wright-json-schema-validation-00.pdf -------------------------------------------------------------------------------- /public/draft-06/draft-wright-json-schema-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-06/draft-wright-json-schema-01.html -------------------------------------------------------------------------------- /public/draft-06/draft-wright-json-schema-hyperschema-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-06/draft-wright-json-schema-hyperschema-01.html -------------------------------------------------------------------------------- /public/draft-06/draft-wright-json-schema-validation-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-06/draft-wright-json-schema-validation-01.html -------------------------------------------------------------------------------- /public/draft-06/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-06/hyper-schema.json -------------------------------------------------------------------------------- /public/draft-06/json-schema-core.html: -------------------------------------------------------------------------------- 1 | draft-wright-json-schema-01.html -------------------------------------------------------------------------------- /public/draft-06/json-schema-hypermedia.html: -------------------------------------------------------------------------------- 1 | draft-wright-json-schema-hyperschema-01.html -------------------------------------------------------------------------------- /public/draft-06/json-schema-validation.html: -------------------------------------------------------------------------------- 1 | draft-wright-json-schema-validation-01.html -------------------------------------------------------------------------------- /public/draft-06/links: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-06/links.json -------------------------------------------------------------------------------- /public/draft-06/schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-06/schema.json -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-json-schema-00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-json-schema-00.pdf -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-json-schema-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-json-schema-01.html -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-json-schema-hyperschema-00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-json-schema-hyperschema-00.html -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-json-schema-hyperschema-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-json-schema-hyperschema-01.html -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-json-schema-validation-00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-json-schema-validation-00.pdf -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-json-schema-validation-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-json-schema-validation-01.html -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-relative-json-pointer-00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-relative-json-pointer-00.html -------------------------------------------------------------------------------- /public/draft-07/draft-handrews-relative-json-pointer-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/draft-handrews-relative-json-pointer-01.html -------------------------------------------------------------------------------- /public/draft-07/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-07/hyper-schema.json -------------------------------------------------------------------------------- /public/draft-07/hyper-schema-output: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-07/hyper-schema-output.json -------------------------------------------------------------------------------- /public/draft-07/json-schema-core.html: -------------------------------------------------------------------------------- 1 | draft-handrews-json-schema-01.html -------------------------------------------------------------------------------- /public/draft-07/json-schema-hypermedia.html: -------------------------------------------------------------------------------- 1 | draft-handrews-json-schema-hyperschema-01.html -------------------------------------------------------------------------------- /public/draft-07/json-schema-validation.html: -------------------------------------------------------------------------------- 1 | draft-handrews-json-schema-validation-01.html -------------------------------------------------------------------------------- /public/draft-07/links: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-07/links.json -------------------------------------------------------------------------------- /public/draft-07/relative-json-pointer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft-07/relative-json-pointer.html -------------------------------------------------------------------------------- /public/draft-07/schema: -------------------------------------------------------------------------------- 1 | ../../_includes/draft-07/schema.json -------------------------------------------------------------------------------- /public/draft/2019-09/draft-handrews-json-schema-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2019-09/draft-handrews-json-schema-02.html -------------------------------------------------------------------------------- /public/draft/2019-09/draft-handrews-json-schema-hyperschema-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2019-09/draft-handrews-json-schema-hyperschema-02.html -------------------------------------------------------------------------------- /public/draft/2019-09/draft-handrews-json-schema-validation-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2019-09/draft-handrews-json-schema-validation-02.html -------------------------------------------------------------------------------- /public/draft/2019-09/draft-handrews-relative-json-pointer-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2019-09/draft-handrews-relative-json-pointer-02.html -------------------------------------------------------------------------------- /public/draft/2019-09/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../../_includes/draft/2019-09/hyper-schema.json -------------------------------------------------------------------------------- /public/draft/2019-09/json-schema-core.html: -------------------------------------------------------------------------------- 1 | draft-handrews-json-schema-02.html -------------------------------------------------------------------------------- /public/draft/2019-09/json-schema-hypermedia.html: -------------------------------------------------------------------------------- 1 | draft-handrews-json-schema-hyperschema-02.html -------------------------------------------------------------------------------- /public/draft/2019-09/json-schema-validation.html: -------------------------------------------------------------------------------- 1 | draft-handrews-json-schema-validation-02.html -------------------------------------------------------------------------------- /public/draft/2019-09/links: -------------------------------------------------------------------------------- 1 | ../../../_includes/draft/2019-09/links.json -------------------------------------------------------------------------------- /public/draft/2019-09/meta/applicator: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/meta/applicator.json -------------------------------------------------------------------------------- /public/draft/2019-09/meta/content: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/meta/content.json -------------------------------------------------------------------------------- /public/draft/2019-09/meta/core: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/meta/core.json -------------------------------------------------------------------------------- /public/draft/2019-09/meta/format: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/meta/format.json -------------------------------------------------------------------------------- /public/draft/2019-09/meta/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/meta/hyper-schema.json -------------------------------------------------------------------------------- /public/draft/2019-09/meta/meta-data: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/meta/meta-data.json -------------------------------------------------------------------------------- /public/draft/2019-09/meta/validation: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/meta/validation.json -------------------------------------------------------------------------------- /public/draft/2019-09/output/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/output/hyper-schema.json -------------------------------------------------------------------------------- /public/draft/2019-09/output/schema: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/output/schema.json -------------------------------------------------------------------------------- /public/draft/2019-09/output/verbose-example: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2019-09/output/verbose-example.json -------------------------------------------------------------------------------- /public/draft/2019-09/schema: -------------------------------------------------------------------------------- 1 | ../../../_includes/draft/2019-09/schema.json -------------------------------------------------------------------------------- /public/draft/2020-12/draft-bhutton-json-schema-00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2020-12/draft-bhutton-json-schema-00.html -------------------------------------------------------------------------------- /public/draft/2020-12/draft-bhutton-json-schema-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2020-12/draft-bhutton-json-schema-01.html -------------------------------------------------------------------------------- /public/draft/2020-12/draft-bhutton-json-schema-validation-00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2020-12/draft-bhutton-json-schema-validation-00.html -------------------------------------------------------------------------------- /public/draft/2020-12/draft-bhutton-json-schema-validation-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2020-12/draft-bhutton-json-schema-validation-01.html -------------------------------------------------------------------------------- /public/draft/2020-12/draft-bhutton-relative-json-pointer-00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/draft/2020-12/draft-bhutton-relative-json-pointer-00.html -------------------------------------------------------------------------------- /public/draft/2020-12/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../../_includes/draft/2020-12/hyper-schema.json -------------------------------------------------------------------------------- /public/draft/2020-12/json-schema-core.html: -------------------------------------------------------------------------------- 1 | draft-bhutton-json-schema-01.html -------------------------------------------------------------------------------- /public/draft/2020-12/json-schema-validation.html: -------------------------------------------------------------------------------- 1 | draft-bhutton-json-schema-validation-01.html -------------------------------------------------------------------------------- /public/draft/2020-12/links: -------------------------------------------------------------------------------- 1 | ../../../_includes/draft/2020-12/links.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/applicator: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/applicator.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/content: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/content.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/core: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/core.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/format-annotation: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/format-annotation.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/format-assertion: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/format-assertion.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/hyper-schema: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/hyper-schema.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/meta-data: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/meta-data.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/unevaluated: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/unevaluated.json -------------------------------------------------------------------------------- /public/draft/2020-12/meta/validation: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/meta/validation.json -------------------------------------------------------------------------------- /public/draft/2020-12/output/schema: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/output/schema.json -------------------------------------------------------------------------------- /public/draft/2020-12/output/verbose-example: -------------------------------------------------------------------------------- 1 | ../../../../_includes/draft/2020-12/output/verbose-example.json -------------------------------------------------------------------------------- /public/draft/2020-12/relative-json-pointer.html: -------------------------------------------------------------------------------- 1 | draft-bhutton-relative-json-pointer-00.html -------------------------------------------------------------------------------- /public/draft/2020-12/schema: -------------------------------------------------------------------------------- 1 | ../../../_includes/draft/2020-12/schema.json -------------------------------------------------------------------------------- /public/favicon-lightblue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/favicon-lightblue.ico -------------------------------------------------------------------------------- /public/favicon-white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/favicon-white.ico -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/arrow.svg -------------------------------------------------------------------------------- /public/icons/book-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/book-dark.svg -------------------------------------------------------------------------------- /public/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/book.svg -------------------------------------------------------------------------------- /public/icons/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/bulb.svg -------------------------------------------------------------------------------- /public/icons/bulb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/bulb2.svg -------------------------------------------------------------------------------- /public/icons/cancel-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/cancel-dark.svg -------------------------------------------------------------------------------- /public/icons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/cancel.svg -------------------------------------------------------------------------------- /public/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/checkmark.svg -------------------------------------------------------------------------------- /public/icons/clipboard-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/clipboard-dark.svg -------------------------------------------------------------------------------- /public/icons/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/clipboard.svg -------------------------------------------------------------------------------- /public/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/close.svg -------------------------------------------------------------------------------- /public/icons/compass-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/compass-dark.svg -------------------------------------------------------------------------------- /public/icons/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/compass.svg -------------------------------------------------------------------------------- /public/icons/contribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/contribute.svg -------------------------------------------------------------------------------- /public/icons/copied.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/copied.svg -------------------------------------------------------------------------------- /public/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/copy.svg -------------------------------------------------------------------------------- /public/icons/dialect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/dialect.svg -------------------------------------------------------------------------------- /public/icons/environment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/environment.svg -------------------------------------------------------------------------------- /public/icons/external-link-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/external-link-black.svg -------------------------------------------------------------------------------- /public/icons/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/external-link.svg -------------------------------------------------------------------------------- /public/icons/eye-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/eye-dark.svg -------------------------------------------------------------------------------- /public/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/eye.svg -------------------------------------------------------------------------------- /public/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/filter.svg -------------------------------------------------------------------------------- /public/icons/grad-cap-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/grad-cap-dark.svg -------------------------------------------------------------------------------- /public/icons/grad-cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/grad-cap.svg -------------------------------------------------------------------------------- /public/icons/green-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/green-tick.svg -------------------------------------------------------------------------------- /public/icons/icons8-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/icons8-info.svg -------------------------------------------------------------------------------- /public/icons/info-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/info-blue.svg -------------------------------------------------------------------------------- /public/icons/info-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/info-yellow.svg -------------------------------------------------------------------------------- /public/icons/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/language.svg -------------------------------------------------------------------------------- /public/icons/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/left-arrow.svg -------------------------------------------------------------------------------- /public/icons/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/license.svg -------------------------------------------------------------------------------- /public/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/list.svg -------------------------------------------------------------------------------- /public/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/menu.svg -------------------------------------------------------------------------------- /public/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/moon.svg -------------------------------------------------------------------------------- /public/icons/outlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/outlink.svg -------------------------------------------------------------------------------- /public/icons/red-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/red-cross.svg -------------------------------------------------------------------------------- /public/icons/roadmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/roadmap.svg -------------------------------------------------------------------------------- /public/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/rss.svg -------------------------------------------------------------------------------- /public/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/star.svg -------------------------------------------------------------------------------- /public/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/sun.svg -------------------------------------------------------------------------------- /public/icons/theme-switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/theme-switch.svg -------------------------------------------------------------------------------- /public/icons/toc-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/toc-menu.svg -------------------------------------------------------------------------------- /public/icons/tooling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/tooling.svg -------------------------------------------------------------------------------- /public/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/warning.svg -------------------------------------------------------------------------------- /public/icons/x-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/icons/x-mark.svg -------------------------------------------------------------------------------- /public/illustrations/schema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/illustrations/schema.svg -------------------------------------------------------------------------------- /public/img/ambassadors/Andreas Eberhart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/Andreas Eberhart.jpg -------------------------------------------------------------------------------- /public/img/ambassadors/Ege Korkan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/Ege Korkan.jpg -------------------------------------------------------------------------------- /public/img/ambassadors/Esther Okafor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/Esther Okafor.jpg -------------------------------------------------------------------------------- /public/img/ambassadors/illustrations/case-studies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/illustrations/case-studies.png -------------------------------------------------------------------------------- /public/img/ambassadors/illustrations/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/illustrations/content.png -------------------------------------------------------------------------------- /public/img/ambassadors/illustrations/contributing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/illustrations/contributing.png -------------------------------------------------------------------------------- /public/img/ambassadors/illustrations/ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/illustrations/ecosystem.png -------------------------------------------------------------------------------- /public/img/ambassadors/illustrations/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/illustrations/speaker.png -------------------------------------------------------------------------------- /public/img/ambassadors/illustrations/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/ambassadors/illustrations/video.png -------------------------------------------------------------------------------- /public/img/avatars/benhutton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/benhutton.webp -------------------------------------------------------------------------------- /public/img/avatars/benjagm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/benjagm.webp -------------------------------------------------------------------------------- /public/img/avatars/blessing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/blessing.webp -------------------------------------------------------------------------------- /public/img/avatars/daniel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/daniel.png -------------------------------------------------------------------------------- /public/img/avatars/dhairya.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/dhairya.webp -------------------------------------------------------------------------------- /public/img/avatars/gregsdennis.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/gregsdennis.webp -------------------------------------------------------------------------------- /public/img/avatars/jasondesrosiers.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/jasondesrosiers.jpeg -------------------------------------------------------------------------------- /public/img/avatars/julian.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/julian.webp -------------------------------------------------------------------------------- /public/img/avatars/jviotti.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/jviotti.webp -------------------------------------------------------------------------------- /public/img/avatars/loiclefevre.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/loiclefevre.webp -------------------------------------------------------------------------------- /public/img/avatars/melinda.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/melinda.webp -------------------------------------------------------------------------------- /public/img/avatars/mikeralphson.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/mikeralphson.webp -------------------------------------------------------------------------------- /public/img/avatars/onyedikachi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/onyedikachi.jpg -------------------------------------------------------------------------------- /public/img/avatars/simonplenderleith.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/simonplenderleith.webp -------------------------------------------------------------------------------- /public/img/avatars/valeria.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/valeria.webp -------------------------------------------------------------------------------- /public/img/avatars/yanick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/yanick.jpg -------------------------------------------------------------------------------- /public/img/avatars/yeray.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/avatars/yeray.webp -------------------------------------------------------------------------------- /public/img/community/ambassadors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/community/ambassadors.png -------------------------------------------------------------------------------- /public/img/event/Json-Schema-Blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/event/Json-Schema-Blog.png -------------------------------------------------------------------------------- /public/img/event/meet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/event/meet.png -------------------------------------------------------------------------------- /public/img/home-page/community-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/home-page/community-illustration.svg -------------------------------------------------------------------------------- /public/img/home-page/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/home-page/community.svg -------------------------------------------------------------------------------- /public/img/home-page/cover-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/home-page/cover-1.jpeg -------------------------------------------------------------------------------- /public/img/home-page/cover-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/home-page/cover-2.jpeg -------------------------------------------------------------------------------- /public/img/home-page/slack-json-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/home-page/slack-json-schema.png -------------------------------------------------------------------------------- /public/img/home-page/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/home-page/slack.png -------------------------------------------------------------------------------- /public/img/json_schema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/json_schema.svg -------------------------------------------------------------------------------- /public/img/logos/6river-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/6river-logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/6river-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/6river-logo.svg -------------------------------------------------------------------------------- /public/img/logos/Postman_logo-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/Postman_logo-grey.svg -------------------------------------------------------------------------------- /public/img/logos/Slack-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/Slack-mark.svg -------------------------------------------------------------------------------- /public/img/logos/algolia-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/algolia-logo-white.png -------------------------------------------------------------------------------- /public/img/logos/bowtie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/bowtie.svg -------------------------------------------------------------------------------- /public/img/logos/cookpad-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/cookpad-logo.png -------------------------------------------------------------------------------- /public/img/logos/dark-mode/airbnb_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/dark-mode/airbnb_white.png -------------------------------------------------------------------------------- /public/img/logos/dark-mode/apideck_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/dark-mode/apideck_white.svg -------------------------------------------------------------------------------- /public/img/logos/dark-mode/asyncapi_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/dark-mode/asyncapi_white.svg -------------------------------------------------------------------------------- /public/img/logos/dark-mode/common-room_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/dark-mode/common-room_white.svg -------------------------------------------------------------------------------- /public/img/logos/dark-mode/dev_events_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/dark-mode/dev_events_logo.png -------------------------------------------------------------------------------- /public/img/logos/dark-mode/llc_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/dark-mode/llc_white.svg -------------------------------------------------------------------------------- /public/img/logos/dark-mode/slack_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/dark-mode/slack_white.svg -------------------------------------------------------------------------------- /public/img/logos/github-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/github-logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/github-logo.svg -------------------------------------------------------------------------------- /public/img/logos/github_logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/github_logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/globe-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/globe-white.svg -------------------------------------------------------------------------------- /public/img/logos/icons8-linkedin-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/icons8-linkedin-2.svg -------------------------------------------------------------------------------- /public/img/logos/icons8-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/icons8-youtube.svg -------------------------------------------------------------------------------- /public/img/logos/logo-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/logo-blue.svg -------------------------------------------------------------------------------- /public/img/logos/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/manfred-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/manfred-color.svg -------------------------------------------------------------------------------- /public/img/logos/netlify-white-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/netlify-white-logo.png -------------------------------------------------------------------------------- /public/img/logos/openjs_foundation-logo-horizontal-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/openjs_foundation-logo-horizontal-color.svg -------------------------------------------------------------------------------- /public/img/logos/openjs_foundation-logo-horizontal-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/openjs_foundation-logo-horizontal-white.svg -------------------------------------------------------------------------------- /public/img/logos/orbit-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/orbit-logo-white.png -------------------------------------------------------------------------------- /public/img/logos/postman_logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/postman_logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/remote-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/remote-logo.png -------------------------------------------------------------------------------- /public/img/logos/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/rss.svg -------------------------------------------------------------------------------- /public/img/logos/rxdb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/rxdb-logo.svg -------------------------------------------------------------------------------- /public/img/logos/slack_logo_small-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/slack_logo_small-white.svg -------------------------------------------------------------------------------- /public/img/logos/speaker-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/speaker-white.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/airbnb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/airbnb-logo.png -------------------------------------------------------------------------------- /public/img/logos/sponsors/anon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/anon-black.png -------------------------------------------------------------------------------- /public/img/logos/sponsors/anon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/anon-white.png -------------------------------------------------------------------------------- /public/img/logos/sponsors/apideck-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/apideck-logo.png -------------------------------------------------------------------------------- /public/img/logos/sponsors/apideck-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/apideck-white.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/apideck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/apideck.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/asyncapi-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/asyncapi-logo-dark.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/copycopter-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/copycopter-white.png -------------------------------------------------------------------------------- /public/img/logos/sponsors/copycopter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/copycopter.png -------------------------------------------------------------------------------- /public/img/logos/sponsors/dottxt-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/dottxt-logo-dark.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/dottxt-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/dottxt-logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/endjin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/endjin-logo.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/it_flashcards-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/it_flashcards-white.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/it_flashcards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/it_flashcards.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/llc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/llc-logo.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/n-ix-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/n-ix-logo.png -------------------------------------------------------------------------------- /public/img/logos/sponsors/n8n-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/n8n-logo-dark.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/n8n-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/n8n-logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/octue-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/octue-black.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/octue-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/octue-white.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/postman_logo-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/postman_logo-orange.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/retool-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/retool-logo.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/route4me-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/route4me-logo-dark.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/route4me-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/route4me-logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/rxdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/rxdb.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/sourcemeta-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/sourcemeta-logo-dark.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/sourcemeta-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/sourcemeta-logo-light.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/stoplight-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/stoplight-logo.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/supadata-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/supadata-logo-dark.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/supadata-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/supadata-logo-light.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/vps-server-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/vps-server-logo.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/wda-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/wda-dark.svg -------------------------------------------------------------------------------- /public/img/logos/sponsors/wda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/sponsors/wda.svg -------------------------------------------------------------------------------- /public/img/logos/supported/common-room.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/supported/common-room.svg -------------------------------------------------------------------------------- /public/img/logos/supported/netlify-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/supported/netlify-logo.png -------------------------------------------------------------------------------- /public/img/logos/supported/new-orbit-logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/supported/new-orbit-logo-color.svg -------------------------------------------------------------------------------- /public/img/logos/supported/orbit-logo-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/supported/orbit-logo-color.png -------------------------------------------------------------------------------- /public/img/logos/supported/slack-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/supported/slack-logo.svg -------------------------------------------------------------------------------- /public/img/logos/toast_logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/toast_logo-white.svg -------------------------------------------------------------------------------- /public/img/logos/toast_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/toast_logo.svg -------------------------------------------------------------------------------- /public/img/logos/tyler-tech-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/tyler-tech-logo.svg -------------------------------------------------------------------------------- /public/img/logos/usedby/github-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/usedby/github-white.png -------------------------------------------------------------------------------- /public/img/logos/usedby/microsoft-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/usedby/microsoft-white.png -------------------------------------------------------------------------------- /public/img/logos/usedby/postman-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/usedby/postman-white.png -------------------------------------------------------------------------------- /public/img/logos/usedby/zapier-logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/usedby/zapier-logo_white.png -------------------------------------------------------------------------------- /public/img/logos/wot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/wot-logo.png -------------------------------------------------------------------------------- /public/img/logos/x-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/logos/x-twitter.svg -------------------------------------------------------------------------------- /public/img/media-keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/media-keywords.png -------------------------------------------------------------------------------- /public/img/posts/2021/bundling-json-schema-compound-documents/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2021/bundling-json-schema-compound-documents/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2021/code-of-conduct-for-json-schema/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2021/code-of-conduct-for-json-schema/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2021/cookpad-case-study/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2021/cookpad-case-study/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2021/cookpad-case-study/fridge.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2021/cookpad-case-study/fridge.webp -------------------------------------------------------------------------------- /public/img/posts/2021/cookpad-case-study/office.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2021/cookpad-case-study/office.webp -------------------------------------------------------------------------------- /public/img/posts/2021/validating-openapi-and-json-schema/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2021/validating-openapi-and-json-schema/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/and-then-there-were-three/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/and-then-there-were-three/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/bowtie-intro/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/bowtie-intro/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/dynamicref-and-generics/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/dynamicref-and-generics/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/fixing-json-schema-output/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/fixing-json-schema-output/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/fundamentals-part-1/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/fundamentals-part-1/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/fundamentals-part-1/tt/XOR1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/fundamentals-part-1/tt/XOR1.webp -------------------------------------------------------------------------------- /public/img/posts/2022/fundamentals-part-1/tt/XOR2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/fundamentals-part-1/tt/XOR2.webp -------------------------------------------------------------------------------- /public/img/posts/2022/fundamentals-part-1/tt/allOf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/fundamentals-part-1/tt/allOf.webp -------------------------------------------------------------------------------- /public/img/posts/2022/fundamentals-part-1/tt/anyOf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/fundamentals-part-1/tt/anyOf.webp -------------------------------------------------------------------------------- /public/img/posts/2022/fundamentals-part-1/tt/oneOf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/fundamentals-part-1/tt/oneOf.webp -------------------------------------------------------------------------------- /public/img/posts/2022/get-started-with-json-schema-in-node-js/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/get-started-with-json-schema-in-node-js/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/hello-world-hello-postman/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/hello-world-hello-postman/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/hyperborea/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/hyperborea/cover.jpg -------------------------------------------------------------------------------- /public/img/posts/2022/joining-postman/baldy-hs-web.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/joining-postman/baldy-hs-web.webp -------------------------------------------------------------------------------- /public/img/posts/2022/json-schema-in-5-minutes/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/json-schema-in-5-minutes/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/json-schema-joins-the-openjsf/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/json-schema-joins-the-openjsf/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/stability/arches.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/stability/arches.webp -------------------------------------------------------------------------------- /public/img/posts/2022/the-architectural-scope-of-json-schema/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/the-architectural-scope-of-json-schema/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/the-last-breaking-change/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/the-last-breaking-change/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/tyler-technologies-case-study/2187563_0051.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/tyler-technologies-case-study/2187563_0051.webp -------------------------------------------------------------------------------- /public/img/posts/2022/tyler-technologies-case-study/2187563_0278.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/tyler-technologies-case-study/2187563_0278.webp -------------------------------------------------------------------------------- /public/img/posts/2022/tyler-technologies-case-study/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/tyler-technologies-case-study/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/w3c-wot-case-study/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/w3c-wot-case-study/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2022/w3c-wot-case-study/wot-examples.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2022/w3c-wot-case-study/wot-examples.webp -------------------------------------------------------------------------------- /public/img/posts/2023/6-river-systems-case-study/chuck.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/6-river-systems-case-study/chuck.webp -------------------------------------------------------------------------------- /public/img/posts/2023/6-river-systems-case-study/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/6-river-systems-case-study/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/6-river-systems-case-study/manage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/6-river-systems-case-study/manage.webp -------------------------------------------------------------------------------- /public/img/posts/2023/apidays-paris-2023-recap/apidays-paris-2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/apidays-paris-2023-recap/apidays-paris-2023.png -------------------------------------------------------------------------------- /public/img/posts/2023/apidays-paris-2023-recap/booth-apidays.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/apidays-paris-2023-recap/booth-apidays.jpeg -------------------------------------------------------------------------------- /public/img/posts/2023/custom-annotations-will-continue/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/custom-annotations-will-continue/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/github-case-study/building.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/github-case-study/building.webp -------------------------------------------------------------------------------- /public/img/posts/2023/github-case-study/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/github-case-study/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/github-case-study/working.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/github-case-study/working.webp -------------------------------------------------------------------------------- /public/img/posts/2023/hello-2023--hello-json-schema-community/jai.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/hello-2023--hello-json-schema-community/jai.webp -------------------------------------------------------------------------------- /public/img/posts/2023/interpreting-output/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/interpreting-output/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/json-schema-adopters/join-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/json-schema-adopters/join-button.png -------------------------------------------------------------------------------- /public/img/posts/2023/json-schema-adopters/patrick-tomasso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/json-schema-adopters/patrick-tomasso.jpg -------------------------------------------------------------------------------- /public/img/posts/2023/modelling-inheritance/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/modelling-inheritance/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/new-website/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/new-website/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/new-website/site-2016.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/new-website/site-2016.webp -------------------------------------------------------------------------------- /public/img/posts/2023/postman-case-study/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/postman-case-study/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/remote-case-study/Remote-Contract details.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/remote-case-study/Remote-Contract details.webp -------------------------------------------------------------------------------- /public/img/posts/2023/remote-case-study/Remote-Form builder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/remote-case-study/Remote-Form builder.webp -------------------------------------------------------------------------------- /public/img/posts/2023/remote-case-study/blog-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/remote-case-study/blog-image.webp -------------------------------------------------------------------------------- /public/img/posts/2023/remote-case-study/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/remote-case-study/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/schema-static-analysis/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/schema-static-analysis/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2023/website-analytics-snapshot-2023/Screenshot 2023-07-21 at 12.12.31.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/website-analytics-snapshot-2023/Screenshot 2023-07-21 at 12.12.31.webp -------------------------------------------------------------------------------- /public/img/posts/2023/website-analytics-snapshot-2023/Screenshot 2023-07-31 at 10.39.20.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/website-analytics-snapshot-2023/Screenshot 2023-07-31 at 10.39.20.webp -------------------------------------------------------------------------------- /public/img/posts/2023/website-analytics-snapshot-2023/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2023/website-analytics-snapshot-2023/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2024/GSOD-docs-project-2024/duy-pham.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/GSOD-docs-project-2024/duy-pham.webp -------------------------------------------------------------------------------- /public/img/posts/2024/apidays-paris-2024-recap/json-schema-conference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/apidays-paris-2024-recap/json-schema-conference.png -------------------------------------------------------------------------------- /public/img/posts/2024/apidays-paris-2024-recap/json-schema-team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/apidays-paris-2024-recap/json-schema-team.jpg -------------------------------------------------------------------------------- /public/img/posts/2024/apidays-paris-2024-recap/loic-lefevre-talk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/apidays-paris-2024-recap/loic-lefevre-talk.jpg -------------------------------------------------------------------------------- /public/img/posts/2024/json-schema-ambassadors/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/json-schema-ambassadors/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2024/manfred-case-study/MAC_Export.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/manfred-case-study/MAC_Export.webp -------------------------------------------------------------------------------- /public/img/posts/2024/manfred-case-study/MAC_Structure.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/manfred-case-study/MAC_Structure.webp -------------------------------------------------------------------------------- /public/img/posts/2024/manfred-case-study/background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/manfred-case-study/background.webp -------------------------------------------------------------------------------- /public/img/posts/2024/manfred-case-study/manfred_team.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/manfred-case-study/manfred_team.webp -------------------------------------------------------------------------------- /public/img/posts/2024/manfred-case-study/period.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/manfred-case-study/period.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/cover.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/directed-graph.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/directed-graph.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-1.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-2.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-internal-align.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-internal-align.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-1.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-2.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-3.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-4.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-pop-5.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-1.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-2.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-3.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/dynamic-scope-ref-remote-4.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-1.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-2.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-3.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-local.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-local.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-remote-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-remote-1.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-remote-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-remote-2.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-remote-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/lexical-scope-ref-remote-3.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/scopes-multiple-ids.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/scopes-multiple-ids.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/scopes-schema-resources.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/scopes-schema-resources.webp -------------------------------------------------------------------------------- /public/img/posts/2024/understanding-lexical-dynamic-scopes/scopes-static-anchors.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2024/understanding-lexical-dynamic-scopes/scopes-static-anchors.webp -------------------------------------------------------------------------------- /public/img/posts/2025/gsoc24/gsoc24-banner-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/gsoc24/gsoc24-banner-main.png -------------------------------------------------------------------------------- /public/img/posts/2025/oracle-case-study/banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/oracle-case-study/banner.webp -------------------------------------------------------------------------------- /public/img/posts/2025/oracle-case-study/blog_frontpage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/oracle-case-study/blog_frontpage.webp -------------------------------------------------------------------------------- /public/img/posts/2025/oracle-case-study/converged_database.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/oracle-case-study/converged_database.webp -------------------------------------------------------------------------------- /public/img/posts/2025/oracle-case-study/form.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/oracle-case-study/form.webp -------------------------------------------------------------------------------- /public/img/posts/2025/oracle-case-study/json-schema-form.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/oracle-case-study/json-schema-form.webp -------------------------------------------------------------------------------- /public/img/posts/2025/rxdb-case-study/cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/rxdb-case-study/cover.jpeg -------------------------------------------------------------------------------- /public/img/posts/2025/stable-json-schema/mt-taranaki.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/posts/2025/stable-json-schema/mt-taranaki.webp -------------------------------------------------------------------------------- /public/img/scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/scroll.svg -------------------------------------------------------------------------------- /public/img/stage-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/stage-bg.svg -------------------------------------------------------------------------------- /public/img/tools/adding_your_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/tools/adding_your_tool.png -------------------------------------------------------------------------------- /public/img/tools/logos/json-everything.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/tools/logos/json-everything.svg -------------------------------------------------------------------------------- /public/img/tools/logos/justinrainbow-json-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/tools/logos/justinrainbow-json-schema.png -------------------------------------------------------------------------------- /public/img/tools/try_bowtie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/tools/try_bowtie.png -------------------------------------------------------------------------------- /public/img/what-is-json-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/img/what-is-json-schema.png -------------------------------------------------------------------------------- /public/logo-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/logo-blue.svg -------------------------------------------------------------------------------- /public/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/logo-white.svg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/understanding/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/fail.png -------------------------------------------------------------------------------- /public/understanding/fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/fail.svg -------------------------------------------------------------------------------- /public/understanding/jsonschema.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/jsonschema.css -------------------------------------------------------------------------------- /public/understanding/jsonschema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/jsonschema.js -------------------------------------------------------------------------------- /public/understanding/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/logo.ico -------------------------------------------------------------------------------- /public/understanding/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/logo.pdf -------------------------------------------------------------------------------- /public/understanding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/logo.png -------------------------------------------------------------------------------- /public/understanding/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/octopus.png -------------------------------------------------------------------------------- /public/understanding/octopus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/octopus.svg -------------------------------------------------------------------------------- /public/understanding/pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/pass.png -------------------------------------------------------------------------------- /public/understanding/pass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/pass.svg -------------------------------------------------------------------------------- /public/understanding/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/public/understanding/schema.png -------------------------------------------------------------------------------- /store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/store.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/styles/globals.css -------------------------------------------------------------------------------- /svgr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/svgr.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-org/website/HEAD/yarn.lock --------------------------------------------------------------------------------