{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Environment", "title": "Environment", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the environment" }, "name": { "type": "string", "description": "Environment name" }, "variables": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Key-value pairs of environment variables" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the environment was created" } } }