{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-schema/azure-container-instances-image-registry-credential-schema.json",
"title": "ImageRegistryCredential",
"description": "Image registry credential.",
"type": "object",
"properties": {
"password": {
"description": "The password for the private registry.",
"type": "string"
},
"server": {
"description": "The Docker image registry server without a protocol such as \"http\" and \"https\".",
"type": "string"
},
"username": {
"description": "The username for the private registry.",
"type": "string"
}
},
"required": [
"server",
"username"
]
}