Microsoft Graph · Schema

printDocumentUploadProperties

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
contentType string The document's content (MIME) type.
documentName string The document's name.
size number The document's size in bytes.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprintdocumentuploadproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.printDocumentUploadProperties",
  "title": "printDocumentUploadProperties",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "contentType": {
      "type": "string",
      "description": "The document's content (MIME) type."
    },
    "documentName": {
      "type": "string",
      "description": "The document's name."
    },
    "size": {
      "type": "number",
      "description": "The document's size in bytes.",
      "format": "int64"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}