String (Data Type) - MerchantCalico/bovines-and-buttercups-archive GitHub Wiki
A String is a piece of text encased by quotation marks. If there needs to be quotation marks in the text itself, they will need to escaped with a backslash.
Examples
{
"name": "Cool Custom Flower"
}
A piece of text that depicts Cool Custom Flower
{
"name": "\"Mushroom\""
}
A piece of text that depicts "Mushroom", this includes escaped quotation marks.