Skip to content

Commit

Permalink
Merge branch 'json-schema-org:main' into check
Browse files Browse the repository at this point in the history
  • Loading branch information
29deepanshutyagi authored Oct 4, 2024
2 parents b69f07a + 42a20db commit 87af4da
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 19 deletions.
12 changes: 4 additions & 8 deletions components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,10 @@ export default function Layout({
<MainNavigation />
</div>
</header>
{showMobileNav ? (
<div ref={mobileNavRef}>
<MobileNav />
{children}
</div>
) : (
<div>{children}</div>
)}
<div ref={mobileNavRef}>
{showMobileNav && <MobileNav />}
{children}
</div>
<ScrollButton />
<Footer />
</main>
Expand Down
33 changes: 31 additions & 2 deletions data/tooling-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,9 @@
license: 'MIT'
source: 'https://github.com/erosb/json-sKema'
supportedDialects:
draft: ['2019-09']
draft: ['2020-12']
toolingListingNotes: 'Successor of the everit-org/json-schema library'
lastUpdated: '2023-04-10'
lastUpdated: '2024-09-21'

- name: Snow
description: 'Snow, a full-featured JSON Schema validator'
Expand Down Expand Up @@ -2409,3 +2409,32 @@
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2024-09-03'

- name: justinrainbow/json-schema
description: 'A PHP Implementation for validating JSON Structures against a given Schema with support for Schemas of Draft-3 or Draft-4.'
toolingTypes: ['validator']
languages: ['PHP']
toolingListingNotes: 'PHP >= 7.2'
maintainers:
- name: 'Erayd'
username: 'erayd'
platform: 'github'
- name: 'David Porter'
username: 'bighappyface'
platform: 'github'
- name: 'Jordi Boggiano'
username: 'Seldaek'
platform: 'github'
- name: 'Danny van der Sluijs'
username: 'DannyvdSluijs'
platform: 'github'
license: 'MIT'
source: 'https://github.com/jsonrainbow/json-schema'
homepage: 'https://github.com/jsonrainbow/json-schema'
supportedDialects:
draft: ['3', '4']
landscape:
logo: 'justinrainbow-json-schema.png'
bowtie:
identifier: 'php-justinrainbow-json-schema'
lastUpdated: '2024-10-01'
17 changes: 8 additions & 9 deletions pages/specification/json-hyper-schema/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,17 @@ In essence:
- JSON Hyper-Schema is helpful in complex APIs where clients need to define and explicitly understand the relationships between resources and actions, especially when navigating resources without prior knowledge of the API structure.
- It helps create more discoverable and self-documenting APIs, making it easier for clients to interact with them.

### Hyper Schema Documents
### Hyper Schema Specification

- Hyper-Schema: [jsonschema-hyperschema.xml](https://github.com/json-schema-org/json-hyperschema-spec/blob/main/jsonschema-hyperschema.xml)
- Relative JSON Pointer: [relative-json-pointer.xml](https://github.com/json-schema-org/json-schema-spec/blob/master/relative-json-pointer.xml)
- Hyper-Schema: [draft-handrews-json-schema-hyperschema-02](/draft/2019-09/draft-handrews-json-schema-hyperschema-02.html)
- Relative JSON Pointer: [draft-bhutton-relative-json-pointer-00](https://datatracker.ietf.org/doc/html/draft-bhutton-relative-json-pointer-00.html)

**Other documents:**
**Schemas:**

- [JSON Schema meta-schema](https://github.com/json-schema-org/json-schema-spec/blob/master/schema.json)
- [JSON Hyper-Schema meta-schema](https://github.com/json-schema-org/json-hyperschema-spec/blob/main/hyper-schema.json)
- [JSON Hyper-Schema Link Description Object meta-schema](https://github.com/json-schema-org/json-hyperschema-spec/blob/main/links.json)
- [JSON Schema Vocabulary meta-schemas](https://github.com/json-schema-org/json-hyperschema-spec/tree/main/meta/)
- [JSON Schema Output schemas and examples](https://github.com/json-schema-org/json-hyperschema-spec/tree/main/output/)
- [JSON Hyper-Schema meta-schema](/draft/2020-12/hyper-schema)
- [JSON Hyper-Schema vocabulary schema](/draft/2020-12/meta/hyper-schema)
- [JSON Hyper-Schema Link Description Object meta-schema](/draft/2020-12/links)
- [JSON Schema Output schemas and examples](/draft/2019-09/output/hyper-schema)

### Release Notes

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 87af4da

Please sign in to comment.