Object Identifier Class

Сlass dsobjid-<uuid> contains a unique identifier of an object. You should not not specify it explicitly in a template as it is added automatically to a page by the plugin on page save. Object identifier can be used as a primary key for serialising an object into a database table or for machine processing of an object.

Example:

<tr class="dsobject dsobjtype-user-details dsobjid-93e3bc30-8bba-11ea-bc55-0242ac130003">
...
<td class="dsattr-lastname">
Doe
</td>
<td class="dsattr-firstname">
John
</td>
...
</tr>

Resulting JSON:

{
"id": "93e3bc30-8bba-11ea-bc55-0242ac130003",
"_type": "user-details",
...
"lastname": "Doe",
"firstname": "John",
...
}