{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.deltaParticipants", "title": "microsoft.graph.deltaParticipants", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "deltaParticipants", "required": [ "@odata.type" ], "type": "object", "properties": { "sequenceNumber": { "type": "number", "description": "The sequence number for the roster update that is used to identify the notification order.", "format": "int64", "nullable": true }, "participants": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.participant" }, "description": "The collection of participants that were updated since the last roster update.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.deltaParticipants" }