{ "$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" } } }