Skip to content

Commit

Permalink
Update Temperature-v1.json (#71)
Browse files Browse the repository at this point in the history
documentation default being null on setpoint was breaking this schema
when deployed in the manager. value has been added and data types have
been extended to allow any numerical value.
  • Loading branch information
JonHall101 authored Nov 1, 2024
2 parents 4cd06ce + 5307640 commit d6354a7
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions Sensors/Temperature-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,28 @@
{
"properties": {
"Documentation": {
"default": null
"default": "Target temperature set by a controller"
},
"Sparkplug_Type": {
"enum": [
"FloatLE",
"FloatBE"
"FloatBE",
"Int8",
"Int16LE",
"Int16BE",
"Int32LE",
"Int32BE",
"Int64LE",
"Int64BE",
"UInt8",
"UInt16LE",
"UInt16BE",
"UInt32LE",
"UInt32BE",
"UInt64LE",
"UInt64BE",
"DoubleLE",
"DoubleBE"
]
}
}
Expand Down

0 comments on commit d6354a7

Please sign in to comment.