Commit 4ee78342663ef458942eef2007084fcf881b3f87
1 parent
979dd260
Exists in
master
and in
4 other branches
Fix json keys in groups API documentation
Showing
1 changed file
with
14 additions
and
14 deletions
Show diff stats
doc/api/groups.md
... | ... | @@ -70,22 +70,22 @@ GET /groups/:id/members |
70 | 70 | ```json |
71 | 71 | [ |
72 | 72 | { |
73 | - id: 1, | |
74 | - username: "raymond_smith", | |
75 | - email: "ray@smith.org", | |
76 | - name: "Raymond Smith", | |
77 | - state: "active", | |
78 | - created_at: "2012-10-22T14:13:35Z", | |
79 | - access_level: 30 | |
73 | + "id": 1, | |
74 | + "username": "raymond_smith", | |
75 | + "email": "ray@smith.org", | |
76 | + "name": "Raymond Smith", | |
77 | + "state": "active", | |
78 | + "created_at": "2012-10-22T14:13:35Z", | |
79 | + "access_level": 30 | |
80 | 80 | }, |
81 | 81 | { |
82 | - id: 2, | |
83 | - username: "john_doe", | |
84 | - email: "joh@doe.org", | |
85 | - name: "John Doe", | |
86 | - state: "active", | |
87 | - created_at: "2012-10-22T14:13:35Z", | |
88 | - access_level: 30 | |
82 | + "id": 2, | |
83 | + "username": "john_doe", | |
84 | + "email": "joh@doe.org", | |
85 | + "name": "John Doe", | |
86 | + "state": "active", | |
87 | + "created_at": "2012-10-22T14:13:35Z", | |
88 | + "access_level": 30 | |
89 | 89 | } |
90 | 90 | ] |
91 | 91 | ``` | ... | ... |