The result format for listings
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-schema/rest-v1-listing-schema.json", "title": "listing", "description": "The result format for listings", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "string" } }, "_links": { "type": "object", "properties": { "next": { "type": "object", "properties": { "href": { "type": "string", "description": "Relative link to next result page." } } } } } }, "required": [ "items" ] }