Red Hat · Schema

Repository

A container image repository in the Quay registry.

CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source

Properties

Name Type Description
namespace string The namespace the repository belongs to.
name string The name of the repository.
description string A description of the repository.
is_public boolean Whether the repository is publicly accessible.
kind string The type of repository.
tag_count integer The number of tags in the repository.
status_token string The status token for repository notifications.
View JSON Schema on GitHub

JSON Schema

red-hat-quay-repository-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Repository",
  "type": "object",
  "description": "A container image repository in the Quay registry.",
  "properties": {
    "namespace": {
      "type": "string",
      "description": "The namespace the repository belongs to."
    },
    "name": {
      "type": "string",
      "description": "The name of the repository."
    },
    "description": {
      "type": "string",
      "description": "A description of the repository."
    },
    "is_public": {
      "type": "boolean",
      "description": "Whether the repository is publicly accessible."
    },
    "kind": {
      "type": "string",
      "description": "The type of repository."
    },
    "tag_count": {
      "type": "integer",
      "description": "The number of tags in the repository."
    },
    "status_token": {
      "type": "string",
      "description": "The status token for repository notifications."
    }
  }
}