{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Environment", "title": "Environment", "type": "object", "description": "A deployment environment for publishing content.", "properties": { "uid": { "type": "string", "description": "Unique identifier of the environment." }, "name": { "type": "string", "description": "Display name of the environment." }, "urls": { "type": "array", "description": "List of URL configurations for the environment.", "items": { "type": "object", "properties": { "url": { "type": "string", "format": "uri", "description": "The URL for the environment." }, "locale": { "type": "string", "description": "The locale associated with this URL." } } } }, "created_at": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the environment was created." } } }