Data constant

Type: object

Allows you to define an arbitrary data constant. Any valid JSON type can be used.

No Additional Properties
Examples:

{
    "type": "data",
    "value": "🚀 Hello world!"
}
{
    "type": "data",
    "value": [
        "foo",
        "bar",
        "baz",
        true,
        null,
        {
            "nested": {
                "object": {
                    "inside": "here"
                }
            }
        }
    ]
}

Type: const
Specific value: "data"

Type: object