Microsoft Graph · Schema

website

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
address string The URL of the website.
displayName string The display name of the web site.
type object The possible values are: other, home, work, blog, profile.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphwebsite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.website",
  "title": "website",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "The URL of the website.",
      "nullable": true
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the web site.",
      "nullable": true
    },
    "type": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.websiteType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The possible values are: other, home, work, blog, profile."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}