Fixed some typos in the JSON get_data format.
diff --git a/GSoC2010DataSeeder.wiki b/GSoC2010DataSeeder.wiki
index 8a6d826..88cb191 100644
--- a/GSoC2010DataSeeder.wiki
+++ b/GSoC2010DataSeeder.wiki
@@ -233,7 +233,6 @@
 {{{
 {
         "models" : [
-                "models.student.Student":
                 {
                         "name": "Student",
                         "description": "Student details for a specific Program.",
@@ -257,7 +256,6 @@
                                         ...
                                 ]
                 },
-                "models.linkable.Linkable":
                 {
                         "name": "Linkable",
                         "description": "...",
@@ -266,7 +264,6 @@
                                 ...
                         ]
                 }
-                "models.base.ModelWithFieldAttributes":
                 {
                         "name": "ModelWithFieldAttributes",
                         "description": "...",
@@ -277,37 +274,37 @@
                 },
                 ...
         ],
-        "providers" : [ 
-                "StringProperty": [
+        "providers" : { 
+                "StringProperty": {
                         "FixedStringProvider": {
                                 "name": "Fixed string providers",
                                 "description": "Returns a fixed string.",
-                                "parameters" : [ 
+                                "parameters" : { 
                                         "value": {
                                                 "name": "Value",
                                                 "description": "The value of the string to return",
                                                 "required": true
                                         }   
-                                ]   
+                                }
                         },  
                         "RandomWordProvider": {
                                 "name": "Random word provider",
                                 "description": "Returns a random word.",
-                                "parameters" : [ 
+                                "parameters" : { 
                                         "choices": {
                                                 "name": "Choices",
                                                 "description": "A list of words to choose from",
                                                 "required": false
                                         }   
-                                ]   
+                                }   
                         }   
                         ... 
-                ],  
-                "IntegerProperty" : [ 
+                },  
+                "IntegerProperty" : { 
                         ... 
-                ],  
+                },  
                 ... 
-        ]   
+        }   
 }
 }}}