{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Environment", "title": "Environment", "type": "object", "description": "A Boomi runtime environment where Atoms are assigned and processes are deployed.", "properties": { "id": { "type": "string", "description": "Unique identifier of the environment." }, "name": { "type": "string", "description": "Display name of the environment." }, "classification": { "type": "string", "description": "Environment classification.", "enum": [ "PRODUCTION", "TEST" ] }, "createdDate": { "type": "string", "format": "date-time", "description": "Timestamp when the environment was created." } } }