Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the library folder. |
| name | string | Name of the library folder. |
| description | string | Description of the library folder. |
| parentFolderId | string | ID of the parent folder. Null for top-level folders. |
| callCount | integer | Number of calls stored in this folder. |
| createdBy | string | User ID of the folder creator. |
| created | string | When the folder was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LibraryFolder",
"title": "LibraryFolder",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the library folder."
},
"name": {
"type": "string",
"description": "Name of the library folder."
},
"description": {
"type": "string",
"description": "Description of the library folder."
},
"parentFolderId": {
"type": "string",
"description": "ID of the parent folder. Null for top-level folders."
},
"callCount": {
"type": "integer",
"description": "Number of calls stored in this folder."
},
"createdBy": {
"type": "string",
"description": "User ID of the folder creator."
},
"created": {
"type": "string",
"format": "date-time",
"description": "When the folder was created."
}
}
}