Microsoft Graph · Schema
subjectRightsRequestHistory
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| changedBy | object | Identity of the user who changed the subject rights request. |
| eventDateTime | string | Data and time when the entity was changed. |
| stage | object | The stage when the entity was changed. |
| stageStatus | object | The status of the stage when the entity was changed. The possible values are: notStarted, current, completed, failed, unknownFutureValue. |
| type | string | Type of history. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.subjectRightsRequestHistory",
"title": "subjectRightsRequestHistory",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"changedBy": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.identitySet"
},
{
"type": "object",
"nullable": true
}
],
"description": "Identity of the user who changed the subject rights request."
},
"eventDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "Data and time when the entity was changed.",
"format": "date-time",
"nullable": true
},
"stage": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.subjectRightsRequestStage"
},
{
"type": "object",
"nullable": true
}
],
"description": "The stage when the entity was changed."
},
"stageStatus": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.subjectRightsRequestStageStatus"
},
{
"type": "object",
"nullable": true
}
],
"description": "The status of the stage when the entity was changed. The possible values are: notStarted, current, completed, failed, unknownFutureValue."
},
"type": {
"type": "string",
"description": "Type of history.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}