Red Hat · Schema
Organization
A Quay organization.
CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the organization. |
| string | The organization contact email. | |
| invoice_email | boolean | Whether invoices are sent to the organization email. |
| is_admin | boolean | Whether the current user is an admin of this organization. |
| is_member | boolean | Whether the current user is a member of this organization. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Organization",
"type": "object",
"description": "A Quay organization.",
"properties": {
"name": {
"type": "string",
"description": "The name of the organization."
},
"email": {
"type": "string",
"description": "The organization contact email."
},
"invoice_email": {
"type": "boolean",
"description": "Whether invoices are sent to the organization email."
},
"is_admin": {
"type": "boolean",
"description": "Whether the current user is an admin of this organization."
},
"is_member": {
"type": "boolean",
"description": "Whether the current user is a member of this organization."
}
}
}