Extensis · Schema

Asset

A digital asset in an Extensis Portfolio catalog.

Digital Asset ManagementFont ManagementCreative AssetsFont LicensingDesign WorkflowsDAM

Properties

Name Type Description
id string Unique identifier for the asset.
name string Name of the asset.
type string Type or media category of the asset.
metadata object Additional metadata properties for the asset.
View JSON Schema on GitHub

JSON Schema

asset.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/extensis/main/json-schema/asset.json",
  "title": "Asset",
  "description": "A digital asset in an Extensis Portfolio catalog.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the asset."
    },
    "name": {
      "type": "string",
      "description": "Name of the asset."
    },
    "type": {
      "type": "string",
      "description": "Type or media category of the asset."
    },
    "metadata": {
      "type": "object",
      "description": "Additional metadata properties for the asset.",
      "additionalProperties": true
    }
  }
}