Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the asset |
| type | string | Resource type |
| subtype | string | Asset subtype |
| created | string | Asset creation timestamp |
| updated | string | Asset last updated timestamp |
| revision_ids | array | List of revision identifiers |
| payload | object | Asset payload containing metadata |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Asset",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the asset"
},
"type": {
"type": "string",
"description": "Resource type"
},
"subtype": {
"type": "string",
"description": "Asset subtype"
},
"created": {
"type": "string",
"description": "Asset creation timestamp"
},
"updated": {
"type": "string",
"description": "Asset last updated timestamp"
},
"revision_ids": {
"type": "array",
"description": "List of revision identifiers"
},
"payload": {
"type": "object",
"description": "Asset payload containing metadata"
}
}
}