diff --git a/lib/sb3_definitions.json b/lib/sb3_definitions.json index fd18416..6e7ec01 100644 --- a/lib/sb3_definitions.json +++ b/lib/sb3_definitions.json @@ -31,10 +31,19 @@ }, "scalarVal": { "oneOf": [ - {"$ref":"#/definitions/stringOrNumber"}, - {"type": "boolean"} + {"$ref": "#/definitions/stringOrNumber"}, + {"type": "boolean"}, + { + "type": "object", + "properties": { + "customType": {"type": "boolean"}, + "typeId": {"type": "string"}, + "serialized": {} + }, + "required": ["customType", "typeId", "serialized"] + } ] - }, + } "assetId": { "type": "string", "pattern": "^[a-fA-F0-9]{32}$"