{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SodaListing", "title": "SodaListing", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "etag": { "type": "string" }, "lastModified": { "type": "string", "format": "date-time" }, "created": { "type": "string", "format": "date-time" }, "mediaType": { "type": "string" }, "value": { "type": "object", "additionalProperties": true } } } }, "hasMore": { "type": "boolean" }, "count": { "type": "integer" }, "offset": { "type": "integer" }, "limit": { "type": "integer" } } }