I currently have a TypeScript interface that includes one property as a float and the other as a string. Although I am able to insert JSON data directly into a table, I am curious if there is a way to specify data types within the JSON data itself.
interface students{
percentage: Number;
name: string;
}