Microsoft Azure · Schema

Descriptor

Docker V2 image layer descriptor.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
mediaType string Layer media type.
size integer Layer size.
digest string Layer digest.
urls array Specifies a list of URLs from which this object may be downloaded.
annotations object Additional information about the descriptor.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-descriptor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Descriptor",
  "title": "Descriptor",
  "type": "object",
  "description": "Docker V2 image layer descriptor.",
  "properties": {
    "mediaType": {
      "type": "string",
      "description": "Layer media type.",
      "example": "example_value"
    },
    "size": {
      "type": "integer",
      "format": "int64",
      "description": "Layer size.",
      "example": 10
    },
    "digest": {
      "type": "string",
      "description": "Layer digest.",
      "example": "example_value"
    },
    "urls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "description": "Specifies a list of URLs from which this object may be downloaded.",
      "example": "https://www.example.com"
    },
    "annotations": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Additional information about the descriptor.",
      "example": "example_value"
    }
  }
}