Properties
| Name | Type | Description |
|---|---|---|
| ownerId | string | The ID of the owner for this image. This should match the owner of the service as well as the owner of any specified registry credential. |
| registryCredentialId | string | Optional reference to the registry credential passed to the image repository to retrieve this image. |
| imagePath | string | Path to the image used for this server (e.g docker.io/library/nginx:latest). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/image",
"title": "image",
"type": "object",
"required": [
"imagePath",
"ownerId"
],
"properties": {
"ownerId": {
"type": "string",
"description": "The ID of the owner for this image. This should match the owner of the service as well as the owner of any specified registry credential."
},
"registryCredentialId": {
"type": "string",
"description": "Optional reference to the registry credential passed to the image repository to retrieve this image."
},
"imagePath": {
"type": "string",
"description": "Path to the image used for this server (e.g docker.io/library/nginx:latest)."
}
}
}