Microsoft Azure · Schema

DeletedRepository

Deleted repository result.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
manifestsDeleted array Digests of manifests deleted.
tagsDeleted array Tags deleted.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-deletedrepository-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeletedRepository",
  "title": "DeletedRepository",
  "type": "object",
  "description": "Deleted repository result.",
  "properties": {
    "manifestsDeleted": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Digests of manifests deleted.",
      "example": []
    },
    "tagsDeleted": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags deleted.",
      "example": []
    }
  }
}