Update model.json example

This commit is contained in:
Lucien Greathouse
2018-02-04 07:31:33 -08:00
parent c6cdd8a815
commit ab644c3dfa

View File

@@ -1,24 +1,24 @@
{ {
"name": "hello", "Name": "hello",
"className": "Model", "ClassName": "Model",
"children": [ "Children": [
{ {
"name": "Some Part", "Name": "Some Part",
"className": "Part", "ClassName": "Part",
"children": [], "Children": [],
"properties": {} "Properties": {}
}, },
{ {
"name": "Some StringValue", "Name": "Some StringValue",
"className": "StringValue", "ClassName": "StringValue",
"children": [], "Children": [],
"properties": { "Properties": {
"Value": { "Value": {
"type": "string", "Type": "String",
"value": "Hello, world!" "Value": "Hello, world!"
} }
} }
} }
], ],
"properties": {} "Properties": {}
} }