Microsoft Graph · Schema

metaDataKeyValuePair

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
key string Key of the metadata.
value object Value of the metadata. Should be an object.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmetadatakeyvaluepair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.metaDataKeyValuePair",
  "title": "metaDataKeyValuePair",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Key of the metadata.",
      "nullable": true
    },
    "value": {
      "description": "Value of the metadata. Should be an object."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}