Contains a JSON Schema for Cardscript, along with a validation utility.
$ npm install cardscript-schema --saveconstcardscriptSchema=require('@wmfs/cardscript-schema')constresult=cardscriptSchema.validateForm({"type": "AdaptiveCard","body": [{"type": "TextBlock","text": "Change me!","color": "attention","horizontalAlignment": "center"}],"$schema": "http://adaptivecards.io/schemas/adaptive-card.json","version": "1.0"})if(result.elementsValid){// All is well!!}else{// Do something with result.errors array.}$ npm test