Moving a to-do to the trash
A DeleteAction for a Task moved to the trash in its source.
{
"@type": "DeleteAction",
"@key": ["@type", "source", "sourceId"],
"source": "things-todo",
"sourceId": "Pb3Lx9Tc6Mw2Jf8Ry5Dk1h",
"timestamp": "2026-04-12T08:05:19.000Z",
"agent": {
"@type": "Agent",
"@key": ["@type", "source"],
"source": "things-todo",
"sameAs": ["@me"]
},
"object": {
"@type": "Task",
"@key": ["@type", "source", "sourceId"],
"source": "things-todo",
"sourceId": "Pb3Lx9Tc6Mw2Jf8Ry5Dk1h",
"name": "Old packing list"
}
}{
"@context": {
"@vocab": "https://schema.chronicle.app/",
"doc": "https://schema.chronicle.app/docs/"
},
"@type": "DeleteAction",
"doc:key": {
"@list": ["@type", "source", "sourceId"]
},
"source": "things-todo",
"sourceId": "Pb3Lx9Tc6Mw2Jf8Ry5Dk1h",
"timestamp": {
"@value": "2026-04-12T08:05:19.000Z",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"agent": {
"@type": "Agent",
"doc:key": {
"@list": ["@type", "source"]
},
"source": "things-todo",
"sameAs": ["@me"]
},
"object": {
"@type": "Task",
"doc:key": {
"@list": ["@type", "source", "sourceId"]
},
"source": "things-todo",
"sourceId": "Pb3Lx9Tc6Mw2Jf8Ry5Dk1h",
"name": "Old packing list"
}
}@prefix : <https://schema.chronicle.app/> .
@prefix doc: <https://schema.chronicle.app/docs/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
[
a :DeleteAction;
doc:key ("@type" "source" "sourceId");
:source "things-todo";
:sourceId "Pb3Lx9Tc6Mw2Jf8Ry5Dk1h";
:timestamp "2026-04-12T08:05:19.000Z"^^xsd:dateTime;
:agent [
a :Agent;
doc:key ("@type" "source");
:source "things-todo";
:sameAs "@me"
];
:object [
a :Task;
doc:key ("@type" "source" "sourceId");
:source "things-todo";
:sourceId "Pb3Lx9Tc6Mw2Jf8Ry5Dk1h";
:name "Old packing list"
]
] .