{
    "$id": "properties-directory/scalar/thermal-correction-to-energy",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Thermal correction to energy property schema",
    "type": "object",
    "required": [
        "name",
        "units",
        "value"
    ],
    "properties": {
        "name": {
            "enum": [
                "thermal_correction_to_energy"
            ],
            "type": "string"
        },
        "units": {
            "oneOf": [
                {
                    "enum": [
                        "kcal/mol",
                        "kJ/mol",
                        "eV",
                        "J/mol",
                        "hartree",
                        "cm-1",
                        "Ry",
                        "eV/atom"
                    ]
                },
                {
                    "enum": [
                        "eV/A^2"
                    ]
                }
            ]
        },
        "value": {
            "type": "number"
        }
    }
}