Microsoft Graph · Schema

keyValue

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
key string Key for the key-value pair.
value string Value for the key-value pair.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphkeyvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.keyValue",
  "title": "keyValue",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Key for the key-value pair.",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "Value for the key-value pair.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}