{ "$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" }