From ab644c3dfabbe4edcbea2c1b3068bc7ef721419c Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sun, 4 Feb 2018 07:31:33 -0800 Subject: [PATCH] Update model.json example --- test-project/src/hello.model.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/test-project/src/hello.model.json b/test-project/src/hello.model.json index 3f3b8077..bc707e8d 100644 --- a/test-project/src/hello.model.json +++ b/test-project/src/hello.model.json @@ -1,24 +1,24 @@ { - "name": "hello", - "className": "Model", - "children": [ + "Name": "hello", + "ClassName": "Model", + "Children": [ { - "name": "Some Part", - "className": "Part", - "children": [], - "properties": {} + "Name": "Some Part", + "ClassName": "Part", + "Children": [], + "Properties": {} }, { - "name": "Some StringValue", - "className": "StringValue", - "children": [], - "properties": { + "Name": "Some StringValue", + "ClassName": "StringValue", + "Children": [], + "Properties": { "Value": { - "type": "string", - "value": "Hello, world!" + "Type": "String", + "Value": "Hello, world!" } } } ], - "properties": {} + "Properties": {} } \ No newline at end of file