Microsoft Purview · Schema

ContentInfo

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
contentFormat string
identifier string
state string
metadata array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-contentinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentInfo",
  "title": "ContentInfo",
  "type": "object",
  "properties": {
    "contentFormat": {
      "type": "string"
    },
    "identifier": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "enum": [
        "rest",
        "motion",
        "use"
      ]
    },
    "metadata": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      }
    }
  }
}