Box · Schema

File version (Mini)

A mini representation of a file version, used when nested within another resource.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-fileversion-mini-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileVersion--Mini",
  "title": "File version (Mini)",
  "type": "object",
  "x-box-resource-id": "file_version--mini",
  "x-box-variant": "mini",
  "description": "A mini representation of a file version, used when\nnested within another resource.",
  "allOf": [
    {
      "$ref": "#/components/schemas/FileVersion--Base"
    },
    {
      "properties": {
        "sha1": {
          "type": "string",
          "description": "The SHA1 hash of this version of the file.",
          "example": "134b65991ed521fcfe4724b7d814ab8ded5185dc"
        }
      }
    }
  ]
}