SearchCompletedEvent
A search finished: what it revealed, or nothing (which is ambiguous).
Full documentation: SearchCompletedEvent. Wire type: search_completed.
Default visibility: player
Message codes: exploration.search.found, exploration.search.nothing
JSON Schema
{
"$defs": {
"Visibility": {
"description": "Who may see an event.\n\nThe wire values are `\"player\"` and `\"referee\"` \u2014 lowercase, serialized into every\nevent; changing them is a `schema_version` bump.",
"enum": [
"player",
"referee"
],
"title": "Visibility",
"type": "string"
}
},
"description": "A search finished: what it revealed, or nothing (which is ambiguous).",
"properties": {
"code": {
"title": "Code",
"type": "string"
},
"visibility": {
"$ref": "#/$defs/Visibility",
"default": "player"
},
"event_type": {
"const": "search_completed",
"default": "search_completed",
"title": "Event Type",
"type": "string"
},
"character_id": {
"title": "Character Id",
"type": "string"
},
"kind": {
"title": "Kind",
"type": "string"
},
"found": {
"default": [],
"items": {
"type": "string"
},
"title": "Found",
"type": "array"
}
},
"required": [
"code",
"character_id",
"kind"
],
"title": "SearchCompletedEvent",
"type": "object"
}