Microsoft Graph · Schema

resourceLink

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
linkType object
name string The link text that is visible in the Places app. The maximum length is 200 characters.
value string The URL of the resource link. The maximum length is 200 characters.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphresourcelink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.resourceLink",
  "title": "resourceLink",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "linkType": {
      "$ref": "#/components/schemas/microsoft.graph.resourceLinkType"
    },
    "name": {
      "type": "string",
      "description": "The link text that is visible in the Places app. The maximum length is 200 characters.",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "The URL of the resource link. The maximum length is 200 characters.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}