Automatic Record Metadata
As you design your Object Type Data Schema, keep in mind that there are several things that are automatically generated, stored, and kept up to date as metadata for a record, so you can conveniently use these values throughout your solution and don't need to include them in the Data Schema itself.
createdAt
: ISO 8601 date and timeupdatedAt
: ISO 8601 date and timehash
: using all Record details that are not in_metaData
, this unique 64-character alphanumeric value is updated with every modification of a Record and can be used in your solution for version control, change validation, and concurrency control (only the version of the record you expect to be updated, is updated), and other purposesschema
: identifier for the Object Type Data Schematype
: for Object Types that you create in Contextual, always "custom"secrets
: an array containing the names of any properties that were typed assecret
in your Data Schema
Last updated