{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/actions-cache-list", "title": "Repository actions caches", "description": "Repository actions caches", "type": "object", "properties": { "total_count": { "description": "Total number of caches", "type": "integer", "example": 2 }, "actions_caches": { "description": "Array of caches", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer", "example": 2 }, "ref": { "type": "string", "example": "refs/heads/main" }, "key": { "type": "string", "example": "Linux-node-958aff96db2d75d67787d1e634ae70b659de937b" }, "version": { "type": "string", "example": "73885106f58cc52a7df9ec4d4a5622a5614813162cb516c759a30af6bf56e6f0" }, "last_accessed_at": { "type": "string", "format": "date-time", "example": "2019-01-24T22:45:36.000Z" }, "created_at": { "type": "string", "format": "date-time", "example": "2019-01-24T22:45:36.000Z" }, "size_in_bytes": { "type": "integer", "example": 1024 } } } } }, "required": [ "total_count", "actions_caches" ] }