Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| type | string | |
| writeKey | string | API key for sending events to this source |
| status | string | |
| eventsToday | integer | |
| createdAt | string |
JSON Schema
{
"$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"
}
}
}