Microsoft Azure · Schema

ManifestAttributesBase

Manifest attribute details.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
digest string Manifest digest.
imageSize integer Image size.
createdTime string
lastUpdateTime string
architecture string CPU architecture.
os string Operating system.
mediaType string Media type.
configMediaType string Config media type.
tags array List of tags.
changeableAttributes object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-manifestattributesbase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManifestAttributesBase",
  "title": "ManifestAttributesBase",
  "type": "object",
  "description": "Manifest attribute details.",
  "properties": {
    "digest": {
      "type": "string",
      "description": "Manifest digest.",
      "example": "example_value"
    },
    "imageSize": {
      "type": "integer",
      "format": "int64",
      "description": "Image size.",
      "example": 10
    },
    "createdTime": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "lastUpdateTime": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "architecture": {
      "type": "string",
      "description": "CPU architecture.",
      "example": "example_value"
    },
    "os": {
      "type": "string",
      "description": "Operating system.",
      "example": "example_value"
    },
    "mediaType": {
      "type": "string",
      "description": "Media type.",
      "example": "example_value"
    },
    "configMediaType": {
      "type": "string",
      "description": "Config media type.",
      "example": "example_value"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of tags.",
      "example": []
    },
    "changeableAttributes": {
      "$ref": "#/components/schemas/RepositoryChangeableAttributes"
    }
  }
}