events.iterate.com

Event type

events.iterate.com/stream/created

Initializes the core reduced state for a stream.

Payload schema

projectIdstring | null
pathstring
Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "projectId": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "path": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "projectId",
    "path"
  ]
}