{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/anrok/main/json-schema/last-modified-after-filter.json",
"title": "LastModifiedAfterFilter",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"lastModifiedAfter"
]
},
"value": {
"type": "string",
"format": "date-time",
"description": "Only return transactions that were last modified after this time in Anrok. Must be an ISO 8601 date-time in UTC.",
"example": "2025-01-01T00:00:00Z"
}
}
}