{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.userConsentRequest", "title": "microsoft.graph.userConsentRequest", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.request" }, { "title": "userConsentRequest", "required": [ "@odata.type" ], "type": "object", "properties": { "reason": { "type": "string", "description": "The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby.", "nullable": true }, "approval": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.approval" }, { "type": "object", "nullable": true } ], "description": "Approval decisions associated with a request.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.userConsentRequest" }