Render · Schema
registryCredential
CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for this credential |
| name | string | Descriptive name for this credential |
| registry | object | |
| username | string | The username associated with the credential |
| updatedAt | string | Last updated time for the credential |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/registryCredential",
"title": "registryCredential",
"type": "object",
"required": [
"id",
"name",
"username",
"registry",
"updatedAt"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for this credential"
},
"name": {
"type": "string",
"description": "Descriptive name for this credential"
},
"registry": {
"$ref": "#/components/schemas/registryCredentialRegistry"
},
"username": {
"type": "string",
"description": "The username associated with the credential"
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "Last updated time for the credential"
}
}
}