Structured response bodyBody structurat al răspunsului
application/json
Structured response bodyBody structurat al răspunsului
Complete response schemaSchema completă a răspunsului
{
"$ref": "#/components/schemas/AuditList",
"type": "object",
"additionalProperties": false,
"required": [
"events"
],
"properties": {
"events": {
"type": "array",
"maxItems": 100,
"items": {
"$ref": "#/components/schemas/AuditEvent",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"occurred_at",
"actor_kind",
"action",
"correlation_id",
"outcome",
"metadata"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"occurred_at": {
"type": "string",
"format": "date-time"
},
"actor_kind": {
"type": "string",
"enum": [
"system",
"user"
]
},
"actor_user_id": {
"type": "string",
"format": "uuid"
},
"actor_username": {
"type": "string"
},
"action": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"object_type": {
"type": "string"
},
"object_id": {
"type": "string"
},
"object_version": {
"type": "string"
},
"correlation_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"outcome": {
"type": "string",
"enum": [
"success",
"failure",
"denied"
]
},
"metadata": {
"type": "object"
}
}
}
},
"next_cursor": {
"type": "string",
"format": "uuid"
}
}
}{
"events": [
{
"id": "11111111-1111-4111-8111-000000000001",
"occurred_at": "2026-08-01T10:00:00Z",
"actor_kind": "system",
"action": "synthetic-example",
"correlation_id": "11111111-1111-4111-8111-000000000001",
"outcome": "success",
"metadata": {}
}
]
}