Microsoft Purview · Schema

OKR

An Objective and Key Result

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
id string
name string
description string
businessDomainId string
type string
parentOkrId string
status string
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

microsoft-purview-okr-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OKR",
  "title": "OKR",
  "type": "object",
  "description": "An Objective and Key Result",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "businessDomainId": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "Objective",
        "KeyResult"
      ]
    },
    "parentOkrId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Draft",
        "Published"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}