{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Outcome", "title": "Outcome", "type": "object", "properties": { "field": { "type": "string", "description": "Field that stores the outcome value." }, "goal": { "type": "string", "enum": [ "Maximize", "Minimize" ], "description": "Optimization goal for the prediction." }, "label": { "type": "string", "description": "Label for the outcome." } } }