{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "작물구조 3D 매핑 reference interface",
  "type": "object",
  "required": [
    "component",
    "accepted",
    "status",
    "target",
    "mapId",
    "counts",
    "bounds",
    "obstacles"
  ],
  "properties": {
    "component": {
      "const": "unist/crop-structure-mapping"
    },
    "accepted": {
      "type": "boolean"
    },
    "status": {
      "type": "string"
    },
    "target": {
      "const": "vpu"
    },
    "mapId": {
      "type": "string"
    },
    "counts": {
      "type": "object"
    },
    "bounds": {
      "type": [
        "object",
        "null"
      ]
    },
    "obstacles": {
      "type": "array"
    }
  }
}
