File tree 1 file changed +42
-4
lines changed
1 file changed +42
-4
lines changed Original file line number Diff line number Diff line change @@ -22,22 +22,60 @@ our Objects and their JSON, XML and YAML representation.
22
22
23
23
###Category
24
24
Categories are used to tag the projects. Each category can have a parent, so
25
- a hierarchical category structure is possible.
25
+ a hierarchical category structure is possible but currently limited to only one
26
+ inheritance(?)
26
27
27
28
####JSON
28
- ``` JSON
29
+ ``` json
29
30
[{
30
31
"id" : 2412 ,
31
32
"name" : " german" ,
32
33
"parent" : 2315
33
34
}]
34
35
```
35
36
####XML
36
-
37
+ ``` xml
38
+ <root >
39
+ <script />
40
+ <list-item >
41
+ <id >2412</id >
42
+ <name >german</name >
43
+ <parent >2315</parent >
44
+ </list-item >
45
+ </root >
46
+ ```
37
47
####YAML
38
-
48
+ ``` yaml
49
+ - id : 2412
50
+ name : german
51
+ parent : 2315
52
+ ` ` `
39
53
40
54
###Kind
55
+ Kinds are used to determine to which broader category the
56
+
57
+ ####JSON
58
+ ` ` ` json
59
+ [{
60
+ " id" : 13,
61
+ " name" : "website"
62
+ }]
63
+ ```
64
+ ####XML
65
+ ``` xml
66
+ <root >
67
+ <script />
68
+ <list-item >
69
+ <id >13</id >
70
+ <name >website</name >
71
+ </list-item >
72
+ </root >
73
+ ```
74
+ ####YAML
75
+ ``` yaml
76
+ - id : 13
77
+ name : website
78
+ ` ` `
41
79
42
80
###Language
43
81
You can’t perform that action at this time.
0 commit comments