This file defines a series of regimes and cycles.
The root object contains two main keys: regimes and cycles.
regimes: An array of regime objects.cycles: An array of cycle objects.
Each object in the regimes array represents a single regime and has the following structure:
name(string): The name of the regime (e.g., "Вакуум").condition(object): Defines the conditions for the regime.type(string): The type of condition. Possible values are"temp","time", or"both".temp(number): The temperature value.time(number): The time value in minutes.
repeat(object): Defines if the regime should be repeated independently or as part of a cycle.count(number): The number of repetitions. Default is1.
cycle(object): Defines the cycle information for the regime.active(boolean):trueif the regime is part of a cycle,falseotherwise.id(number): The ID of the cycle this regime belongs to. Default is0.
note(string): A field for a status string.state(object): Represents the state of the regime.active(boolean):trueif the regime is currently active.error(boolean):trueif an error has occurred.message(string): A message associated with the current state.
Each object in the cycles array defines a cycle that can be referenced by regimes.
id(number): The unique identifier for the cycle.repeat(number): The number of times the entire cycle should be repeated. Default is1.