I'm noticing when I deploy a schema to a serverles...
# spicedb
k
I'm noticing when I deploy a schema to a serverless instance through the playground, it auto-appends my environment prefix to the relevant parts of the schema. For example...
Copy code
definition meeting {
    relation spectator: user
    relation speaker: user
    permission spectate = spectator + speaker
    permission speak = speaker
}

definition user {}
...in the playground becomes...
Copy code
definition my_project_9/meeting {
    relation spectator: my_project_9/user
    relation speaker: my_project_9/user
    permission spectate = spectator + speaker
    permission speak = speaker
}

definition my_project_9/user {}
...once deployed to authzed serverless. I want to take advantage of this auto-prefixing. I have multiple environments for dev, qa, prod, etc. Each point to a different AuthZed serverless permissions system. Each need their own unique prefix like
my_project_1/
or
my_project_2
etc. I'd like to define only one schema, and have it deploy with the proper prefix automagically. I know this has been implemented internally to AuthZed for the playground, but is there some way I can call the parser myself?