Payload schema
configobject
Birth-time configuration, recorded verbatim onto state.
slugstring
The project's URL slug, unique within its organization.
onboardingActivebooleanoptional
Start the onboarding agent flow for the creating user.
creatorEmailstringoptional
The creating user's login email, when known. Seeds owner-scoped project state such as the inbound email sender allowlist.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "The project's URL slug, unique within its organization."
},
"onboardingActive": {
"description": "Start the onboarding agent flow for the creating user.",
"type": "boolean"
},
"creatorEmail": {
"description": "The creating user's login email, when known. Seeds owner-scoped project state such as the inbound email sender allowlist.",
"type": "string"
}
},
"required": [
"slug"
],
"description": "Birth-time configuration, recorded verbatim onto state."
}
},
"required": [
"config"
]
}