ExampleSearchResults schema from Wordnik
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wordnik/refs/heads/main/json-schema/wordnik-example-search-results-schema.json", "title": "ExampleSearchResults", "description": "ExampleSearchResults schema from Wordnik", "type": "object", "properties": { "examples": { "type": "array", "items": { "$ref": "#/components/schemas/Example" } }, "facets": { "type": "array", "items": { "$ref": "#/components/schemas/Facet" } } } }