{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://santeriloitomaa.eu/SanteriLoitomaa/schemas/raw/branch/main/ewn-schema.json", "title": "Note/Warning/Error list", "description": "A list of Notes, Warnings, and Errors", "type": "object", "patternProperties": { "": { "type": "object", "description": "A Note/Warning/Error. The name of the object is used as the unique code for this specific Note/Warning/Error.", "properties": { "type" : { "type": "string", "description": "The type this Note/Warning/Error is", "enum": ["Note", "Warning", "Error", "Deprecated"] }, "desc": { "type": "string", "description": "Description of the Note/Warning/Error given to the user. Why is this here? What needs to be fixed?" }, "weight": { "type": "integer", "description": "The \"weight\" of the Note/Warning/Error. How heavy is its impact on the validity of the output." }, "hgl name": { "type": ["string", "array"], "description": "Name of the column of which's cell should be highlighted if this Note/Warning/Error is found." }, "hgl hex": { "type": "string", "description": "Hex value of the color the highlight should be." } }, "required": [ "type", "desc", "weight" ] } } }