changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": true,
+ "properties": {
+ "available": {
+ "type": "boolean"
+ },
+ "disclaimer": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "error": {
+ "type": "string"
+ },
+ "execution_mode": {
+ "enum": [
+ "paper_only",
+ "read_only"
+ ]
+ },
+ "generated_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "kind": {
+ "const": "crypto_record",
+ "type": "string"
+ },
+ "product": {
+ "const": "riptide"
+ },
+ "real_orders": {
+ "const": false
+ },
+ "schema": {
+ "const": "riptide.public.v1"
+ }
+ },
+ "required": [
+ "schema",
+ "product",
+ "kind",
+ "generated_at",
+ "execution_mode",
+ "real_orders",
+ "disclaimer"
+ ],
+ "type": "object"
+}