{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.recycleBin", "title": "microsoft.graph.recycleBin", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.baseItem" }, { "title": "recycleBin", "required": [ "@odata.type" ], "type": "object", "properties": { "settings": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.recycleBinSettings" }, { "type": "object", "nullable": true } ] }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.recycleBinItem" }, "description": "List of the recycleBinItems deleted by a user.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.recycleBin" } } } ], "x-ms-discriminator-value": "#microsoft.graph.recycleBin" }