changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "appeared": {
+ "description": "metadata of what landed. Fetch bytes with get_relay",
+ "items": {
+ "properties": {
+ "depositedBy": {
+ "type": "string"
+ },
+ "from": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "kind": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "provenance": {
+ "enum": [
+ "authored",
+ "as-received"
+ ],
+ "type": "string"
+ },
+ "to": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "kind",
+ "from",
+ "to",
+ "depositedBy",
+ "provenance"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "timedOut": {
+ "description": "true when the window closed empty. A fact about the window, not about whether anything was sent",
+ "type": "boolean"
+ },
+ "waitedMs": {
+ "description": "how long this call actually waited",
+ "type": "number"
+ }
+ },
+ "required": [
+ "timedOut",
+ "waitedMs",
+ "appeared"
+ ],
+ "type": "object"
+}