{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BrowserSiteList", "title": "BrowserSiteList", "allOf": [ { "$ref": "#/components/schemas/Entity" }, { "title": "BrowserSiteList", "type": "object", "properties": { "description": { "type": "string", "nullable": true }, "displayName": { "type": "string" }, "lastModifiedDateTime": { "type": "string", "format": "date-time" }, "revision": { "type": "string" }, "status": { "$ref": "#/components/schemas/BrowserSiteListStatus" }, "@odata.type": { "type": "string" } } } ] }