{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EnvironmentCreate",
"title": "EnvironmentCreate",
"type": "object",
"description": "Request body for creating a new environment",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the new environment"
},
"production": {
"type": "boolean",
"description": "Whether this is a production environment"
}
}
}