{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.privilegedAccessSchedule", "title": "microsoft.graph.privilegedAccessSchedule", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "privilegedAccessSchedule", "required": [ "@odata.type" ], "type": "object", "properties": { "createdDateTime": { "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": "When the schedule was created. Optional.", "format": "date-time", "nullable": true }, "createdUsing": { "type": "string", "description": "The identifier of the access assignment or eligibility request that created this schedule. Optional.", "nullable": true }, "modifiedDateTime": { "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": "When the schedule was last modified. Optional.", "format": "date-time", "nullable": true }, "scheduleInfo": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.requestSchedule" }, { "type": "object", "nullable": true } ], "description": "Represents the period of the access assignment or eligibility. The scheduleInfo can represent a single occurrence or multiple recurring instances. Required." }, "status": { "type": "string", "description": "The status of the access assignment or eligibility request. The possible values are: Canceled, Denied, Failed, Granted, PendingAdminDecision, PendingApproval, PendingProvisioning, PendingScheduleCreation, Provisioned, Revoked, and ScheduleCreated. Not nullable. Optional.", "nullable": true }, "@odata.type": { "type": "string" } }, "discriminator": { "propertyName": "@odata.type", "mapping": { "#microsoft.graph.privilegedAccessGroupAssignmentSchedule": "#/components/schemas/microsoft.graph.privilegedAccessGroupAssignmentSchedule", "#microsoft.graph.privilegedAccessGroupEligibilitySchedule": "#/components/schemas/microsoft.graph.privilegedAccessGroupEligibilitySchedule" } } } ] }