{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LibraryInfo", "title": "LibraryInfo", "type": "object", "description": "Content library details", "properties": { "id": { "type": "string", "description": "Unique identifier of the content library", "example": "abc123" }, "name": { "type": "string", "description": "Name of the content library", "example": "Example Title" }, "description": { "type": "string", "example": "A sample description." }, "type": { "type": "string", "enum": [ "LOCAL", "SUBSCRIBED" ], "example": "LOCAL" }, "creation_time": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" }, "last_modified_time": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" }, "last_sync_time": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" }, "storage_backings": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "datastore_id": { "type": "string" } } }, "example": [] }, "version": { "type": "string", "example": "example_value" } } }