{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StoreItems", "title": "StoreItems", "description": "Object containing summarized information from a store.", "type": "object", "properties": { "id": { "description": "ID of the store.", "type": "number" }, "name": { "description": "Name of the store.", "type": "string" }, "hosts": { "description": "Array of hosts corresponding to the store.", "type": "array", "items": { "type": "string", "description": "Host address." } } } }