SystemMetadata
System-managed metadata that is automatically added to records.
Property | Type | Required | Description |
---|---|---|---|
createdAt | utcDateTime | Yes | The timestamp (in UTC) at which the record was created |
lastModifiedAt | utcDateTime | Yes | The timestamp (in UTC) at which the record was last modified |
Formats
Section titled “Formats”A JSON example of this model.
{ "createdAt": "2024-02-28T12:00:00Z", "lastModifiedAt": "2024-02-28T12:00:00Z"}
The JSON Schema for this model.
$schema: https://json-schema.org/draft/2020-12/schema$id: SystemMetadata.yamltype: objectproperties: createdAt: type: string format: date-time description: The timestamp (in UTC) at which the record was created. lastModifiedAt: type: string format: date-time description: The timestamp (in UTC) at which the record was last modified.required: - createdAt - lastModifiedAtexamples: - createdAt: 2025-01-01T17:01:01 lastModifiedAt: 2025-01-02T17:30:00description: Standard system-level metadata about a given record.
The TypeSpec code for this model.
@example(Examples.Metadata.system)model SystemMetadata { /** The timestamp (in UTC) at which the record was created. */ @visibility(Lifecycle.Read) createdAt: utcDateTime;
/** The timestamp (in UTC) at which the record was last modified. */ @visibility(Lifecycle.Read) lastModifiedAt: utcDateTime;}