Azure Container Instances · JSON Structure

Azure Container Instances Image Registry Credential Structure

Image registry credential.

Type: object Properties: 3 Required: 2
AzureCloudContainer InstancesContainersMicrosoftServerless

ImageRegistryCredential is a JSON Structure definition published by Azure Container Instances, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

password server username

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-structure/azure-container-instances-image-registry-credential-structure.json",
  "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"
  ],
  "name": "ImageRegistryCredential"
}