{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://schema.mydesignsystem.com/divider.schema.json",
  "title": "Divider",
  "description": "Dividers bring clarity to a layout by grouping and dividing content in close proximity.",
  "type": "object",
  "properties": {
    "variant": {
      "title": "Style of the divider",
      "type": "string",
      "description": "Choose a variant for the divider",
      "enum": ["default", "accent"],
      "default": "default"
    },
    "className": {
      "type": "string",
      "title": "Additional Classes",
      "description": "Add additional css classes that should be applied to the divider"
    },
    "component": {
      "title": "`ks-component` attribute",
      "description": "Optional custom component identifier",
      "type": "string"
    }
  },
  "additionalProperties": false
}
