survey-library
survey-library copied to clipboard
Question - .NET Schema server side validation
Hi, I wanted to validate the survey schema once received through my .NET API I've copied the reference code below. Is there a .NET flavour for this, if not I will create one.
import { Model } from "survey-core";
const surveyJson = { ... };
const survey = new Model(surveyJson);
survey.data = initialSurveyResultJson;
survey.clearIncorrectValues(true);
const correctSurveyResultJson = survey.data;