changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "createdAt": {
+ "description": "ISO 8601 session creation time",
+ "type": "string"
+ },
+ "customerId": {
+ "description": "Customer id the session was created with",
+ "type": "string"
+ },
+ "isBuyOrSell": {
+ "description": "Order direction",
+ "enum": [
+ "BUY",
+ "SELL"
+ ],
+ "type": "string"
+ },
+ "ref": {
+ "description": "Referral code if one was set",
+ "type": "string"
+ },
+ "status": {
+ "description": "SESSION_CREATED -> PROCESSING -> COMPLETED | FAILED | CANCELLED | EXPIRED",
+ "type": "string"
+ },
+ "updatedAt": {
+ "description": "ISO 8601 time of the last webhook update",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status"
+ ],
+ "type": "object"
+}