events.iterate.com

Event type

events.iterate.com/secret/used

Records that secret material was substituted into an egress request — the audit fact behind the description's usage counters.

Payload schema

usedAtstring

ISO timestamp of the substitution, stamped by the DO.

usedBystringoptional

Who substituted the material (usually the project id).

urlstringoptional

The pinned egress URL the request targeted.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "usedAt": {
      "type": "string",
      "description": "ISO timestamp of the substitution, stamped by the DO."
    },
    "usedBy": {
      "description": "Who substituted the material (usually the project id).",
      "type": "string"
    },
    "url": {
      "description": "The pinned egress URL the request targeted.",
      "type": "string"
    }
  },
  "required": [
    "usedAt"
  ]
}