d
The following object prototype should and is expected to automatically extract / generate the constructors defined within:
Copy code
{
  "card": [
    {
      "title": "",
      "component": {
        "isComponent": true,
        "component_title": "",
        "code": {
          "type": "string",
          "regex": "/(\\\\\\\\w+)?\\\\\\\\n[\\\\\\\\s\\\\\\\\S]+?\\\\\\\\n/g"
        },
        "updated_at": "timestampā€ 
//no explanation on what format it expects and ā€˜dateā€™ is not a thing anywhere in coding
      },
      "override": {
        "isOverride": true,
        "title": "",
        "code": {
          "type": "string",
          "regex": "/(\\\\\\\\w+)?\\\\\\\\n[\\\\\\\\s\\\\\\\\S]+?\\\\\\\\n/g"
        },
        "updated_at": "datetime"
      }
    }
  ]
}
In addition, the use of variables is so confusing I donā€™t even know where to begin. Global vars arenā€™t even accessible. Or worse, some are and some arenā€™t with zero explanation. The idea of defining workflow vars causes nothing but further dilution as you cannot call global vars from there (which I thought was the entire point of something global) and you have to manually rewrite every global var you want in there. Which then makes duplicates. I think. Iā€™m so utterly confused.