{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "LibraryInfo", "type": "object", "description": "Content library details", "properties": { "id": { "type": "string", "description": "Unique identifier of the content library" }, "name": { "type": "string", "description": "Name of the content library" }, "description": { "type": "string" }, "type": { "type": "string" }, "creation_time": { "type": "string" }, "last_modified_time": { "type": "string" }, "last_sync_time": { "type": "string" }, "storage_backings": { "type": "array" }, "version": { "type": "string" } } }