The Air Conditioner Fan Mode capability doesn’t list any specific values.
"id": "airConditionerFanMode",
"version": 1,
"status": "proposed",
"name": "Air Conditioner Fan Mode",
"attributes": {
"fanMode": {
"schema": {
"type": "object",
"properties": {
"value": {
"title": "String",
"type": "string",
"maxLength": 255
}
},
"additionalProperties": false,
"required": []
},
"enumCommands": []
},
"supportedAcFanModes": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": []
},
"enumCommands": []
}
},
"commands": {
"setFanMode": {
"arguments": [
{
"name": "fanMode",
"optional": false,
"schema": {
"title": "String",
"type": "string",
"maxLength": 255
}
}
]
}
}
}
There is an Air Purifier Fan Mode capability.
"id": "airPurifierFanMode",
"version": 1,
"status": "proposed",
"name": "Air Purifier Fan Mode",
"attributes": {
"airPurifierFanMode": {
"schema": {
"type": "object",
"properties": {
"value": {
"title": "AirPurifierFanMode",
"type": "string",
"enum": [
"auto",
"sleep",
"low",
"medium",
"high",
"quiet",
"windFree"
]
}
},
"additionalProperties": false,
"required": []
},
"enumCommands": []
},
"supportedAirPurifierFanModes": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"type": "string",
"enum": [
"auto",
"sleep",
"low",
"medium",
"high",
"quiet",
"windFree"
]
}
}
},
"additionalProperties": false,
"required": []
},
"enumCommands": []
}
},
"commands": {
"setAirPurifierFanMode": {
"arguments": [
{
"name": "airPurifierFanMode",
"optional": false,
"schema": {
"title": "AirPurifierFanMode",
"type": "string",
"enum": [
"auto",
"sleep",
"low",
"medium",
"high",
"quiet",
"windFree"
]
}
}
]
}
}
}