Microsoft Graph · Schema

microsoft.graph.privilegedAccessGroupEligibilityScheduleRequest

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprivilegedaccessgroupeligibilityschedulereques-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.privilegedAccessGroupEligibilityScheduleRequest",
  "title": "microsoft.graph.privilegedAccessGroupEligibilityScheduleRequest",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.privilegedAccessScheduleRequest"
    },
    {
      "title": "privilegedAccessGroupEligibilityScheduleRequest",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "accessId": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.privilegedAccessGroupRelationships"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The identifier of membership or ownership eligibility relationship to the group. Required. The possible values are: owner, member, unknownFutureValue."
        },
        "groupId": {
          "type": "string",
          "description": "The identifier of the group representing the scope of the membership and ownership eligibility through PIM for Groups. Required.",
          "nullable": true
        },
        "principalId": {
          "type": "string",
          "description": "The identifier of the principal whose membership or ownership eligibility to the group is managed through PIM for Groups. Required.",
          "nullable": true
        },
        "targetScheduleId": {
          "type": "string",
          "description": "The identifier of the schedule that's created from the eligibility request. Optional.",
          "nullable": true
        },
        "group": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.group"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "References the group that is the scope of the membership or ownership eligibility request through PIM for Groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.",
          "x-ms-navigationProperty": true
        },
        "principal": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.directoryObject"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.",
          "x-ms-navigationProperty": true
        },
        "targetSchedule": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.privilegedAccessGroupEligibilitySchedule"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Schedule created by this request.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.privilegedAccessGroupEligibilityScheduleRequest"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.privilegedAccessGroupEligibilityScheduleRequest"
}