{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apis-io/refs/heads/main/json-schema/apis-io-search-search-schema.json", "title": "Search", "description": "An JSON API object with metadata, data, and links.", "type": "object", "properties": { "meta": { "$ref": "#/components/schemas/Meta" }, "data": { "$ref": "#/components/schemas/APIs" }, "links": { "$ref": "#/components/schemas/Link" } }, "required": [ "meta", "data", "links" ] }