{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/terrain-discovery-environment-api/main/json-schema/terrain-analysis-schema.json", "title": "Terrain Analysis", "description": "A bioinformatics analysis job submitted through the CyVerse Discovery Environment Terrain API.", "type": "object", "properties": { "id": { "type": "string", "description": "Unique UUID identifier for the analysis" }, "name": { "type": "string", "description": "User-provided name for this analysis job" }, "description": { "type": "string", "description": "Optional description of the analysis" }, "app_id": { "type": "string", "description": "UUID of the application used for this analysis" }, "app_name": { "type": "string", "description": "Display name of the application" }, "system_id": { "type": "string", "description": "Execution system (de for Discovery Environment, tapis for TACC)" }, "status": { "type": "string", "enum": ["Submitted", "Running", "Completed", "Failed", "Canceled"], "description": "Current execution status of the analysis" }, "start_date": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the analysis started" }, "end_date": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp when the analysis completed" }, "result_folder_path": { "type": "string", "description": "iRODS path where output files are stored" }, "username": { "type": "string", "description": "CyVerse username of the analysis owner" } }, "required": ["id", "name", "app_id", "system_id", "status"] }