{
  "$id": "#/groups",
  "type": "array",
  "description": "List of custom groups to organize related fields in the properties panel.",
  "allOf": [
    {
      "$ref": "examples.json#/groups"
    }
  ],
  "items": {
    "$id": "#/groups/group",
    "type": "object",
    "default": {},
    "required": [
      "id",
      "label"
    ],
    "properties": {
      "id": {
        "$id": "#/groups/group/id",
        "type": "string",
        "description": "Uniquely identifies a group object. Required if using groups."
      },
      "label": {
        "$id": "#/groups/group/label",
        "type": "string",
        "description": "The label of the group, shown as a section header in the properties panel. Required if using groups."
      }
    }
  }
}