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": "2025-10-28T17:57:49.828Z",  "lastModifiedAt": "2025-10-28T17:57:49.828Z"}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  - lastModifiedAtunevaluatedProperties:  not: {}examples:  - 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;}The Python code for this model.
class SystemMetadata(CommonGrantsBaseModel):    """System-managed metadata fields for tracking record creation and modification."""
    created_at: UTCDateTime = Field(        ...,        alias="createdAt",        description="The timestamp (in UTC) at which the record was created.",    )    last_modified_at: UTCDateTime = Field(        ...,        alias="lastModifiedAt",        description="The timestamp (in UTC) at which the record was last modified.",    )Changelog
Section titled “Changelog”| Version | Changes | 
|---|---|
| 0.1.0 |  
  |