collection

A collection, as returned by the getCollections endpoint.

Does not contain the items in the collection, look at collectionWithItems instead.

{
  "id": "800000075",
  "name": "testcollection",
  "owner": "user",
  "public": true,
  "created": "2026-03-16T03:18:41+00:00",
  "changed": "2026-03-16T03:18:41+00:00",
  "itemCount": 3,
  "readonly": true,
  "validUntil": "2026-03-23T03:18:41+00:00"
}
FieldTypeReq.OpenS.Details
idstringYesId of the collection
namestringYesName of the collection
commentstringNoA commnet
ownerstringNoOwner of the collection
publicbooleanNoIs the collection public
itemCountintYesnumber of items
createdstringYesCreation date [ISO 8601]
changedstringYesLast changed date [ISO 8601]
allowedUserArray of stringNoA list of allowed usernames
readonlybooleanNoIf true the collection cannot be edited by the current user
validUntilstringNoDate the collection contents are considered valid until [ISO 8601]

When readonly is true, clients should hide or disable UI actions that modify the collection. The value should reflect the current authenticated user’s access level. When omitted, clients should assume the collection is editable (false).

The validUntil field indicates how long the collection contents can be treated as fresh, inspired by HTTP caching semantics. Clients may use this to determine when to refresh the collection data. An empty or absent value indicates no caching guarantee; clients should refresh the collection data on each access.

Last modified May 8, 2026: Add collections (2cd80f6)