Actions Cache Usage by repository

GitHub Actions Cache Usage by repository.

APIs.ioEngineeringPlatform

Properties

Name Type Description
full_name string The repository owner and name for the cache usage being shown.
active_caches_size_in_bytes integer The sum of the size in bytes of all the active cache items in the repository.
active_caches_count integer The number of active caches in the repository.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-actions-cache-usage-by-repository-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/actions-cache-usage-by-repository",
  "title": "Actions Cache Usage by repository",
  "description": "GitHub Actions Cache Usage by repository.",
  "type": "object",
  "properties": {
    "full_name": {
      "description": "The repository owner and name for the cache usage being shown.",
      "type": "string",
      "example": "octo-org/Hello-World"
    },
    "active_caches_size_in_bytes": {
      "description": "The sum of the size in bytes of all the active cache items in the repository.",
      "type": "integer",
      "example": 2322142
    },
    "active_caches_count": {
      "description": "The number of active caches in the repository.",
      "type": "integer",
      "example": 3
    }
  },
  "required": [
    "full_name",
    "active_caches_size_in_bytes",
    "active_caches_count"
  ]
}