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"
]
}