{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EnvironmentVariable",
"title": "EnvironmentVariable",
"type": "object",
"properties": {
"variable": {
"type": "string",
"description": "The name of the environment variable"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the variable was created"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "When the variable was last updated"
},
"context_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the context this variable belongs to"
}
}
}