Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Statuses are string values that can track any state of your exhibit, so exhibit health can be monitored remotely. The statuses available are unique per exhibit and must be configured through the manifest (learn more about the manifest in the Exhibit Manifest Configuration doc). For example:

Code Block
languagejsonjs
export const MANIFEST = {
    "manifest": {
        "statuses": [
            {
                "id": "screen-status",
                "type": "String",
                "display": "Screen is currently showing:",
                "order": 0
            },
            {
                "id": "last-game-played",
                "type": "String",
                "display": "Last game played:",
                "order": 1
            }
        ],
        "controls": [],
        "settings": []
    }
}

would configure statuses for the following exhibit instance in the Gumband UI:

...