GitHub Actions · Schema

ActionsCacheEntry

Properties

Name Type Description
id integer
ref string
key string
version string
last_accessed_at string
created_at string
size_in_bytes integer
View JSON Schema on GitHub

JSON Schema

github-actions-actions-cache-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActionsCacheEntry",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "ref": {
      "type": "string"
    },
    "key": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "last_accessed_at": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "size_in_bytes": {
      "type": "integer"
    }
  }
}