place.stream.multistream.defs
Lexicon Version: 1
Definitions
Section titled “Definitions”targetView
Section titled “targetView”Type: object
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
uri | string | ✅ | Format: at-uri | |
cid | string | ✅ | Format: cid | |
record | unknown | ✅ | ||
latestEvent | place.stream.multistream.defs#event | ❌ |
Type: object
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
message | string | ✅ | ||
status | string | ✅ | Enum: inactive, pending, active, error | |
createdAt | string | ✅ | Format: datetime |
Lexicon Source
Section titled “Lexicon Source”{ "lexicon": 1, "id": "place.stream.multistream.defs", "defs": { "targetView": { "type": "object", "required": ["uri", "cid", "record"], "properties": { "uri": { "type": "string", "format": "at-uri" }, "cid": { "type": "string", "format": "cid" }, "record": { "type": "unknown" }, "latestEvent": { "type": "ref", "ref": "place.stream.multistream.defs#event" } } }, "event": { "type": "object", "required": ["message", "status", "createdAt"], "properties": { "message": { "type": "string" }, "status": { "type": "string", "enum": ["inactive", "pending", "active", "error"] }, "createdAt": { "type": "string", "format": "datetime" } } } }}