Input for updating an asset
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AssetInput", "title": "AssetInput", "type": "object", "description": "Input for updating an asset", "properties": { "title": { "type": "string", "description": "Title of the asset" }, "description": { "type": "string", "description": "Description of the asset" }, "labels": { "type": "array", "description": "Labels to associate with the asset", "items": { "type": "string" } } } }