Makes a schema available to sandbox requests under the given data source uuid, emulating a data source that exists in the warehouse. The uuid does not need to be a real production uuid – any identifying string works.
See also
csiapps-sandbox for an overview of sandbox mode and its limitations
Examples
register_sandbox_schema("dummy-1234", '{
"type": "object",
"required": ["id"],
"properties": {"id": {"type": "string"}}
}')
#> csiapps sandbox: schema registered for source 'dummy-1234'
clear_sandbox()
#> csiapps sandbox: entire sandbox cleared
