{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://wix-rich-content/button-content-data-schema.json",
    "type": "object",
    "properties": {
      "button": {
        "$id": "/properties/button",
        "type": "object",
        "properties": {
          "buttonTheme": {
            "$id": "/properties/button/properties/buttonTheme",
            "type": "number",
            "title": "Active Button",
            "default": "0",
            "examples": ["0", "1", "2", "3", "4"]
          },
          "backgroundColor": {
            "$id": "/properties/button/properties/backgroundColor",
            "type": "string",
            "title": "Background Color",
            "default": "#0261FF",
            "examples": ["#0261FF", "#ABCAFF"]
          },
          "borderColor": {
            "$id": "/properties/button/properties/borderColor",
            "type": "string",
            "title": "Border Color",
            "default": "#0261FF",
            "examples": ["#0261FF", "#ABCAFF"]
          },
          "textColor": {
            "$id": "/properties/button/properties/textColor",
            "type": "string",
            "title": "Text Color",
            "default": "#0261FF",
            "examples": ["#0261FF", "#ABCAFF"]
          },
          "pickerType": {
            "type": "string",
            "title": "pickerType",
            "default": ""
          },
          "borderRadius": {
            "$id": "/properties/button/properties/borderRadius",
            "type": "number",
            "title": "Border Radius",
            "default": "0",
            "examples": ["5", "17"]
          },
          "borderWidth": {
            "$id": "/properties/button/properties/borderWidth",
            "type": "number",
            "title": "Border Width",
            "default": "0",
            "examples": ["5", "17"]
          },
          "buttonSize": {
            "$id": "/properties/button/properties/buttonSize",
            "type": "string",
            "title": "Button Size",
            "default": "M",
            "examples": ["S", "M", "L", "F"]
          },
          "buttonText": {
            "$id": "/properties/button/properties/buttonText",
            "type": "string",
            "title": "Button Text",
            "default": "Click Me!",
            "examples": ["Click Me!"]
          },
          "url": {
            "$id": "/properties/url",
            "type": "string",
            "title": "url",
            "default": "https://example-link.com/",
            "examples": ["google.com"]
          },
          "target": {
            "$id": "/properties/button/properties/target",
            "type": "boolean",
            "title": "target",
            "default": "true",
            "examples": ["true", "false"]
          },
          "rel": {
            "$id": "/properties/button/properties/rel",
            "type": "boolean",
            "title": "rel",
            "default": "true",
            "examples": ["true", "false"]
          }
        }
      },
      "config": {
        "$id": "/properties/config",
        "type": "object",
        "properties": {
          "width": {
            "$id": "/properties/config/properties/width",
            "type": "string",
            "title": "width",
            "default": "fit-content"
          },
          "alignment": {
            "$id": "/properties/config/properties/alignment",
            "type": "string",
            "title": "alignment",
            "default": "center",
            "examples": ["center", "right", "left"]
          }
        }
      }
    },
    "required": ["url", "rel", "target"]
  }
  