VMware · Schema
LibraryInfo
Content library details
Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the content library |
| name | string | Name of the content library |
| description | string | |
| type | string | |
| creation_time | string | |
| last_modified_time | string | |
| last_sync_time | string | |
| storage_backings | array | |
| version | string |
JSON Schema
{
"$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"
}
}
}