Microsoft Graph · Schema

publicationFacet

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
checkedOutBy object The user who checked out the file.
level string The state of publication for this document. Either published or checkout. Read-only.
versionId string The unique identifier for the version that is visible to the current caller. Read-only.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphpublicationfacet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.publicationFacet",
  "title": "publicationFacet",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "checkedOutBy": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.identitySet"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The user who checked out the file."
    },
    "level": {
      "type": "string",
      "description": "The state of publication for this document. Either published or checkout. Read-only.",
      "nullable": true
    },
    "versionId": {
      "type": "string",
      "description": "The unique identifier for the version that is visible to the current caller. Read-only.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}