{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://therundown.io/schemas/DeltasResponse", "title": "DeltasResponse", "type": "object", "properties": { "meta": { "$ref": "#/components/schemas/Meta" }, "deltas": { "type": "array", "items": { "type": "object", "properties": { "data": { "type": "string", "description": "Raw JSON string of the delta payload" } } } } } }