I added to the project the file Objects.json which contains the following code:
{
"circle": [
[1, 3], [2, 1], [3, 2],
],
"line": [
[2, 1], [3, 2], [1, 3],
],
"A_Letter": [
[3, 3], [2, 1], [1, 2],
],
}
How could I add to this file a new key?
If, for instance, I want to remove the "line" key, how could this be done?