subjectRightsRequest リソースの種類

名前空間: microsoft.graph

サブジェクト権利要求のプロパティを表します。これは、個人データに対してアクションを実行するコントローラーの対象となるデータによる正式な要求です。

エンティティ から継承します。

メソッド

メソッド 戻り値の種類 説明
list subjectRightsRequests subjectRightsRequest コレクション subjectRightsRequest オブジェクトとそのプロパティの一覧を取得します。
subjectRightsRequest を作成する subjectRightsRequest 新しい subjectRightsRequest オブジェクトを 作成します。
get subjectRightsRequest subjectRightsRequest subjectRightsRequest オブジェクトのプロパティとリレーションシップを読み取ります。
subjectRightsRequest を更新する subjectRightsRequest subjectRightsRequest オブジェクトのプロパティを更新します。
getFinalAttachment ストリーム 要求の最後の添付ファイルを取得します。 添付ファイルは、プライバシー管理者によって含まれるすべてのファイルを含む zip ファイルです。
getFinalReport ストリーム 要求の最終レポートを取得します。 レポートは、プライバシー管理者によって含まれるファイルに関する情報を含むテキスト ファイルです。
メモを一覧表示する authoredNote コレクション notes ナビゲーション プロパティから authoredNote リソースを取得します。
authoredNote を作成する authoredNote 新しい authoredNote オブジェクトを作成します。

プロパティ

プロパティ 種類 説明
assignedTo identity 要求が割り当てられている ID。
closedDateTime DateTimeOffset 要求が閉じられた日時。 Timestamp 型は、ISO 8601 形式を使用して日付と時刻の情報を表し、常に UTC 時間です。 たとえば、2014 年 1 月 1 日午前 0 時 (UTC) は、2014-01-01T00:00:00Z です。
createdBy identitySet 要求を作成したエンティティの ID 情報。
createdDateTime DateTimeOffset 要求が作成された日時。 Timestamp 型は、ISO 8601 形式を使用して日付と時刻の情報を表し、常に UTC 時間です。 たとえば、2014 年 1 月 1 日午前 0 時 (UTC) は、2014-01-01T00:00:00Z です。
dataSubject dataSubject データ主体に関する情報。
dataSubjectType dataSubjectType データ主体の型。 可能な値は、customercurrentEmployeeformerEmployeeprospectiveEmployeestudentteacherfacultyotherunknownFutureValue です。
description String 要求の説明。
displayName String 要求の名前。
歴史 subjectRightsRequestHistory コレクション 履歴変更イベントのコレクション。
洞察 力 subjectRightsRequestDetail 要求に関する分析情報。
internalDueDateTime DateTimeOffset 要求が内部的に期限を過ごしている日付と時刻。 Timestamp 型は、ISO 8601 形式を使用して日付と時刻の情報を表し、常に UTC 時間です。 たとえば、2014 年 1 月 1 日午前 0 時 (UTC) は、2014-01-01T00:00:00Z です。
lastModifiedBy identitySet 要求を最後に変更したエンティティの ID 情報。
lastModifiedDateTime DateTimeOffset 要求が最後に変更された日時。 Timestamp 型は、ISO 8601 形式を使用して日付と時刻の情報を表し、常に UTC 時間です。 たとえば、2014 年 1 月 1 日午前 0 時 (UTC) は、2014-01-01T00:00:00Z です。
規制 String collection この要求が満たす規制の一覧。
stages subjectRightsRequestStageDetail コレクション 要求のさまざまなステージに関する情報。
status subjectRightsRequestStatus 要求の状態。. 可能な値は activeclosedunknownFutureValue です。
type subjectRightsRequestType 要求の種類。 指定できる値は次のとおりです。 export``delete``access``tagForAction``unknownFutureValue

リレーションシップ

リレーションシップ 説明
notes authoredNote コレクション 要求に割り当て済みのノートの一覧。
team team 要求用に作成されたMicrosoft Teams チームに関する情報。

JSON 表記

リソースの JSON 表記を次に示します。

{
  "@odata.type": "#microsoft.graph.subjectRightsRequest",
    "type": "access",
    "dataSubjectType": "customer",
    "regulations": [
        "String"
    ],
    "displayName": "String",
    "description": "String",
    "status": "active",
    "internalDueDateTime": "String (timestamp)",
    "closedDateTime": "String (timestamp)",
    "lastModifiedDateTime": "String (timestamp)",
    "id": "String (identifier)",
    "createdDateTime": "String (timestamp)",
    "stages": [
        {
            "stage": "contentRetrieval",
            "status": "completed",
            "error": 
            {
                "@odata.type": "microsoft.graph.publicError"
            }
        },
        {
            "stage": "contentReview",
            "status": "current",
            "error": 
            {
                "@odata.type": "microsoft.graph.publicError"
            }
        },
        {
            "stage": "generateReport",
            "status": "notStarted",
            "error": 
            {
                "@odata.type": "microsoft.graph.publicError"
            }
        },
        {
            "stage": "caseResolved",
            "status": "notStarted",
            "error": 
            {
                "@odata.type": "microsoft.graph.publicError"
            }
        }
    ],
    "insight": {
        "@odata.type": "microsoft.graph.subjectRightsRequestDetail"
    },
    "createdBy": {
        "@odata.type": "microsoft.graph.identitySet"
    },
    "lastModifiedBy": {
        "@odata.type": "microsoft.graph.identitySet"
    },
    "dataSubject": {
        "@odata.type": "microsoft.graph.dataSubject",
    },
    "team": {
        "@odata.type": "microsoft.graph.team"
    }
}