Composite

A container for sub-elements.

Attribute Locations

  • Elements puts attribute values on elements.

Fields

elements: array of Element

Schema

{
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "elements": {
      "default": [],
      "type": "array",
      "items": {
        "$ref": "#/definitions/Element"
      }
    },
    "type": {
      "type": "string",
      "enum": [
        "Composite"
      ]
    }
  }
}