diff --git a/data/main_fields.yaml b/data/main_fields.yaml index 7c2a477..407f773 100644 --- a/data/main_fields.yaml +++ b/data/main_fields.yaml @@ -464,3 +464,23 @@ category: sla description: - Wavelength of the light the material has been designed to be cured with. + +- key: 57 + name: drying_temperature + type: int + unit: °C + example: 45 + category: fff + description: + - Recommended ambient temperature for drying. + +- key: 58 + name: drying_time + type: int + unit: min + example: 480 + category: fff + description: + - Recommended drying time (at `drying_temperature`). + +# First unused key: 59 diff --git a/utils/schema/fields.schema.json b/utils/schema/fields.schema.json index abccba7..7c74980 100644 --- a/utils/schema/fields.schema.json +++ b/utils/schema/fields.schema.json @@ -185,6 +185,12 @@ }, "cure_wavelength": { "$ref": "field_types.schema.json#/definitions/int" + }, + "drying_temperature": { + "$ref": "field_types.schema.json#/definitions/int" + }, + "drying_time": { + "$ref": "field_types.schema.json#/definitions/int" } }, "unevaluatedProperties": false