{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/twitter/refs/heads/main/json-structure/x-api-activity-streaming-response-structure.json", "name": "ActivityStreamingResponse", "description": "An activity event or error that can be returned by the x activity streaming API.", "type": "object", "properties": { "data": { "type": "object", "properties": { "event_type": { "type": "string" }, "event_uuid": { "$ref": "#/components/schemas/ActivityEventId" }, "filter": { "$ref": "#/components/schemas/ActivitySubscriptionFilter" }, "payload": { "$ref": "#/components/schemas/ActivityStreamingResponsePayload" }, "tag": { "type": "string" } } }, "errors": { "type": "array", "minItems": 1, "items": { "$ref": "#/components/schemas/Problem" }, "example": [] } } }