UsageEventDebugRecord
Debug view: usage_events entry for an endpoint
Properties
| Property | Type | Required | Description |
|---|---|---|---|
event_timestamp |
string | Yes | |
event_type |
string | Yes | |
metadata |
string | Yes | |
quantity |
number | Yes | |
unit |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Debug view: usage_events entry for an endpoint",
"required": [
"event_type",
"quantity",
"unit",
"metadata",
"event_timestamp"
],
"properties": {
"event_timestamp": {
"type": "string"
},
"event_type": {
"type": "string"
},
"metadata": {
"type": "string"
},
"quantity": {
"type": "number",
"format": "double"
},
"unit": {
"type": "string"
}
}
}