{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.userActionContext", "title": "microsoft.graph.userActionContext", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.signInContext" }, { "title": "userActionContext", "required": [ "@odata.type" ], "type": "object", "properties": { "userAction": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.userAction" }, { "type": "object", "nullable": true } ], "description": "Represents the user action that the authenticating identity is performing. The possible values are: registerSecurityInformation, registerOrJoinDevices, unknownFutureValue." }, "@odata.type": { "type": "string", "default": "#microsoft.graph.userActionContext" } } } ], "x-ms-discriminator-value": "#microsoft.graph.userActionContext" }