{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StreamSource", "title": "StreamSource", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "type": { "type": "string", "enum": [ "javascript", "server", "mobile", "webhook" ] }, "writeKey": { "type": "string", "description": "API key for sending events to this source" }, "status": { "type": "string", "enum": [ "active", "inactive" ] }, "eventsToday": { "type": "integer" }, "createdAt": { "type": "string", "format": "date-time" } } }