Anatomy of a Record
The anatomy of a record in the /api/v1/db JSON — the system fields every record carries, the difference between _id / _system_object_id / _global_object_id, and how field values (linked, nested, local
{
"_objecttype": "person",
"_mask": "_all_fields",
"_system_object_id": 4711,
"_global_object_id": "4711@fylr",
"_uuid": "b2c3…",
"_standard": { "1": { "text": { "en-US": "Ada Lovelace" } } },
"_owner": { "user": { "_id": 3, "displayname": "…" } },
"person": {
"_id": 128,
"_version": 4,
"_pool": { "_basetype": "pool", "pool": { "_id": 9, "name": { "en-US": "Photos" } } },
"name": "Lovelace",
"first_name": "Ada"
}
}The three ids
Id
Unique within
Notes
System fields
Top level
Field
Type
Meaning
Inside the objecttype block
Field
Type
Meaning
How field values serialize
See also
Last updated