Microsoft Graph · Schema

microsoft.graph.accessPackageResource

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaccesspackageresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.accessPackageResource",
  "title": "microsoft.graph.accessPackageResource",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "accessPackageResource",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "attributes": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.accessPackageResourceAttribute"
          },
          "description": "Contains information about the attributes to be collected from the requestor and sent to the resource application."
        },
        "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": "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.",
          "format": "date-time",
          "nullable": true
        },
        "description": {
          "type": "string",
          "description": "A description for the resource.",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "The display name of the resource, such as the application name, group name or site name.",
          "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": "The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.",
          "format": "date-time",
          "nullable": true
        },
        "originId": {
          "type": "string",
          "description": "The unique identifier of the resource in the origin system. For a Microsoft Entra group, this is the identifier of the group.",
          "nullable": true
        },
        "originSystem": {
          "type": "string",
          "description": "The type of the resource in the origin system, such as SharePointOnline, AadApplication or AadGroup.",
          "nullable": true
        },
        "environment": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.accessPackageResourceEnvironment"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand.",
          "x-ms-navigationProperty": true
        },
        "roles": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.accessPackageResourceRole"
          },
          "description": "Read-only. Nullable. Supports $expand.",
          "x-ms-navigationProperty": true
        },
        "scopes": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.accessPackageResourceScope"
          },
          "description": "Read-only. Nullable. Supports $expand.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.accessPackageResource"
}