···1-{
2- "lexicon": 1,
3- "id": "fm.teal.alpha.actor.status",
4- "defs": {
5- "main": {
6- "type": "record",
7- "description": "This lexicon is in a not officially released state. It is subject to change. | A declaration of the status of the actor. Only one can be shown at a time. If there are multiple, the latest record should be picked and earlier records should be deleted or tombstoned.",
8- "key": "literal:self",
9- "record": {
10- "type": "object",
11- "required": ["time", "item"],
12- "properties": {
13- "time": {
14- "type": "string",
15- "format": "datetime",
16- "description": "The unix timestamp of when the item was recorded"
17- },
18- "expiry": {
19- "type": "string",
20- "format": "datetime",
21- "description": "The unix timestamp of the expiry time of the item. If unavailable, default to 10 minutes past the start time."
22- },
23- "item": {
24- "type": "ref",
25- "ref": "fm.teal.alpha.feed.defs#playView"
26- }
27- }
28- }
29- }
30- }
31-}