Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions api/openapi-spec/v1.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5140,6 +5140,9 @@ components:
readOnly: true
deleted:
$ref: '#/components/schemas/deleted'
pendingOperations:
description: Present while operations affecting the item's content have not completed. Read-only.
$ref: '#/components/schemas/pendingOperations'
file:
$ref: '#/components/schemas/openGraphFile'
fileSystemInfo:
Expand Down Expand Up @@ -5459,6 +5462,29 @@ components:
type: string
format: date-time
description: Represents the date and time the photo was taken. Read-only.
pendingOperations:
type: object
readOnly: true
description: |
Present while operations affecting the item's content have not
completed, whether still queued or already running. While present,
requests for the item's content fail, the content is withheld until
processing completes and the facet disappears.
properties:
pendingContentUpdate:
type: object
readOnly: true
description: |
An update to the item's content has not completed, for example
post-processing such as virus scanning after an upload. In MS
Graph reads may return stale data while this is present, in
OpenCloud content requests fail instead.
properties:
queuedDateTime:
type: string
format: date-time
description: Time the operation was queued. May be absent. Read-only.
readOnly: true
motionPhoto:
type: object
readOnly: true
Expand Down