Box · Schema

Conflict error

The error that occurs when a file can not be created due to a conflict.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-conflicterror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConflictError",
  "title": "Conflict error",
  "type": "object",
  "x-box-resource-id": "conflict_error",
  "x-box-tag": "uploads",
  "description": "The error that occurs when a file can not be created due\nto a conflict.",
  "allOf": [
    {
      "$ref": "#/components/schemas/ClientError"
    },
    {
      "properties": {
        "context_info": {
          "type": "object",
          "properties": {
            "conflicts": {
              "type": "array",
              "description": "A list of the file conflicts that caused this error.",
              "items": {
                "$ref": "#/components/schemas/FileConflict"
              }
            }
          }
        }
      }
    }
  ]
}