{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EnvironmentInput",
"title": "EnvironmentInput",
"type": "object",
"description": "Input for creating or updating an environment",
"properties": {
"key": {
"type": "string",
"description": "Unique key for the environment"
},
"name": {
"type": "string",
"description": "Human-readable name of the environment"
},
"is_primary": {
"type": "boolean",
"description": "Whether this is the primary environment"
}
}
}