ImportSourceCredentials

ImportSourceCredentials schema from Azure Container Registry API

AzureContainer ImagesContainersDockerRegistry

Properties

Name Type Description
password string The password used to authenticate with the source registry.
username string The username to authenticate with the source registry.
View JSON Schema on GitHub

JSON Schema

azure-container-registry-import-source-credentials-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-registry/refs/heads/main/json-schema/azure-container-registry-import-source-credentials-schema.json",
  "title": "ImportSourceCredentials",
  "description": "ImportSourceCredentials schema from Azure Container Registry API",
  "type": "object",
  "properties": {
    "password": {
      "description": "The password used to authenticate with the source registry.",
      "type": "string"
    },
    "username": {
      "description": "The username to authenticate with the source registry.",
      "type": "string"
    }
  },
  "required": [
    "password"
  ]
}