{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Set Component Position",
  "description": "Set the position of a component on the canvas.",
  "type": "object",
  "required": ["x", "y"],
  "properties": {
    "x": {
      "type": "integer",
      "title": "X Position",
      "description": "Horizontal position in pixels",
      "examples": [100, 250, 400]
    },
    "y": {
      "type": "integer",
      "title": "Y Position",
      "description": "Vertical position in pixels",
      "examples": [100, 250, 400]
    }
  }
}
