Microsoft Azure · Schema

Manifest

Docker V2 manifest.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
schemaVersion integer Schema version.
mediaType string Media type.
layers array List of layer descriptors.
View JSON Schema on GitHub

JSON Schema

azure-container-registry-manifest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Manifest",
  "type": "object",
  "description": "Docker V2 manifest.",
  "properties": {
    "schemaVersion": {
      "type": "integer",
      "description": "Schema version."
    },
    "mediaType": {
      "type": "string",
      "description": "Media type."
    },
    "layers": {
      "type": "array",
      "description": "List of layer descriptors."
    }
  }
}