{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "온실 레일 진입·안전 제어 reference interface",
  "type": "object",
  "required": [
    "component",
    "accepted",
    "status",
    "target",
    "command",
    "allowedSpeedMps",
    "blockingReasons",
    "energyMode"
  ],
  "properties": {
    "component": {
      "const": "kitech/greenhouse-rail-entry-safety"
    },
    "accepted": {
      "type": "boolean"
    },
    "status": {
      "type": "string"
    },
    "target": {
      "const": "mcu"
    },
    "command": {
      "type": "string"
    },
    "allowedSpeedMps": {
      "type": "number"
    },
    "blockingReasons": {
      "type": "array"
    },
    "energyMode": {
      "type": "string"
    }
  }
}
