Atlassian · Schema
AuditRecords
Container for a list of audit records.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| limit | integer | The requested or default limit on the number of audit items to be returned. |
| offset | integer | The number of audit items skipped before the first item in this list. |
| records | array | The list of audit items. |
| total | integer | The total number of audit items returned. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AuditRecords",
"title": "AuditRecords",
"additionalProperties": false,
"description": "Container for a list of audit records.",
"properties": {
"limit": {
"description": "The requested or default limit on the number of audit items to be returned.",
"format": "int32",
"readOnly": true,
"type": "integer"
},
"offset": {
"description": "The number of audit items skipped before the first item in this list.",
"format": "int32",
"readOnly": true,
"type": "integer"
},
"records": {
"description": "The list of audit items.",
"items": {
"$ref": "#/components/schemas/AuditRecordBean"
},
"readOnly": true,
"type": "array"
},
"total": {
"description": "The total number of audit items returned.",
"format": "int64",
"readOnly": true,
"type": "integer"
}
},
"type": "object"
}