Microsoft Graph · Schema

microsoft.graph.printDocument

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprintdocument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.printDocument",
  "title": "microsoft.graph.printDocument",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "printDocument",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "contentType": {
          "type": "string",
          "description": "The document's content (MIME) type. Read-only.",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "The document's name. Read-only.",
          "nullable": true
        },
        "downloadedDateTime": {
          "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 time the document was downloaded. Read-only",
          "format": "date-time",
          "nullable": true
        },
        "size": {
          "type": "number",
          "description": "The document's size in bytes. Read-only.",
          "format": "int64"
        },
        "uploadedDateTime": {
          "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 time the document was uploaded. Read-only",
          "format": "date-time",
          "nullable": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.printDocument"
}