Box · Schema

Metadata instances

A list of metadata instances that have been applied to a file or folder.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
entries array A list of metadata instances, as applied to this file or folder.
limit integer The limit that was used for this page of results.
View JSON Schema on GitHub

JSON Schema

box-metadatas-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Metadatas",
  "title": "Metadata instances",
  "type": "object",
  "x-box-resource-id": "metadatas",
  "x-box-tag": "file_metadata",
  "description": "A list of metadata instances that have been applied to a file or folder.",
  "properties": {
    "entries": {
      "type": "array",
      "description": "A list of metadata instances, as applied to this file or folder.",
      "items": {
        "$ref": "#/components/schemas/Metadata"
      }
    },
    "limit": {
      "description": "The limit that was used for this page of results.",
      "example": 100,
      "type": "integer"
    }
  }
}