Skip to main content

Json

type Json = 
| number
| boolean
| string
| (Json | null)[]
| JsonObject;

JSON-serializable values.

The Json type describes JSON-serializable values and serves as an upper bound on keys and values in the Skip Runtime, ensuring that they can be serialized and managed by the reactive computation engine.