[
  {
    "name": "Product detail",
    "slug": "product_details",
    "fields":[
      {
        "name": "Hide/show",
        "slug": "display",
        "type": "boolean",
        "description": "This allows you to customize your payment page with any content you want, and the payment form will use the product details designated in this widget."
      },
      {
        "name": "Product Selector",
        "slug": "product_selector",
        "type": "select",
        "description": "Choose existing product"
      },
      {
        "name": "Name",
        "slug": "product_name",
        "type": "string",
        "description": ""
      },
      {
        "name": "Images",
        "slug": "product_images",
        "type": "gallery",
        "description": ""
      },
      {
        "name": "Description",
        "slug": "product_description",
        "type": "textarea",
        "description": ""
      },
      {
        "name": "Pricing",
        "slug": "product_pricing",
        "type": "repeater",
        "description": "",
        "fields": [
          {
            "name": "Name",
            "type": "string"
          },
          {
            "name": "Price",
            "type": "number"
          },
          {
            "name": "Currency",
            "type": "select",
            "values": ["USD","GBP","EUR"]
          },
          {
            "name": "Frequency",
            "type": "select",
            "values": ["One time","Daily","Weekly", "Monthly", "Quarterly", "Bi-annually", "Annually"]
          }
        ]
      }
    ]
  }
]