events.iterate.com

Event type

events.iterate.com/repo/cloudflare-artifact-event-received

A Cloudflare Artifacts lifecycle or Git event captured from the deployment's event queue and routed to this repo stream.

Payload schema

artifactNamestring

The Artifacts repository the event is about.

bodyRecord<string, any>

Cloudflare's event body, verbatim.

cloudflareEventTypestringoptional

Cloudflare's event type, when the queue surfaced one.

namespacestring

The Artifacts namespace (per deployment).

Additional properties beyond the listed fields are allowed.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "artifactName": {
      "type": "string",
      "description": "The Artifacts repository the event is about."
    },
    "body": {
      "type": "object",
      "properties": {},
      "additionalProperties": {},
      "description": "Cloudflare's event body, verbatim."
    },
    "cloudflareEventType": {
      "description": "Cloudflare's event type, when the queue surfaced one.",
      "type": "string"
    },
    "namespace": {
      "type": "string",
      "description": "The Artifacts namespace (per deployment)."
    }
  },
  "required": [
    "artifactName",
    "body",
    "namespace"
  ],
  "additionalProperties": {}
}