Red Hat · Schema

User

A Quay user account.

CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source

Properties

Name Type Description
username string The username.
email string The user's email address.
verified boolean Whether the user's email has been verified.
organizations array Organizations the user belongs to.
View JSON Schema on GitHub

JSON Schema

red-hat-quay-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "User",
  "type": "object",
  "description": "A Quay user account.",
  "properties": {
    "username": {
      "type": "string",
      "description": "The username."
    },
    "email": {
      "type": "string",
      "description": "The user's email address."
    },
    "verified": {
      "type": "boolean",
      "description": "Whether the user's email has been verified."
    },
    "organizations": {
      "type": "array",
      "description": "Organizations the user belongs to."
    }
  }
}