blob: 74a411f1fe4e7cafe4a4dfbe98008e8ea898ed34 [file] [log] [blame]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001= Gerrit Code Review - /changes/ REST API
Edwin Kempind0a63922013-01-23 16:32:59 +01002
3This page describes the change related REST endpoints.
4Please also take note of the general information on the
5link:rest-api.html[REST API].
6
Edwin Kempin1dbe19e2013-02-22 16:18:58 +01007[[change-endpoints]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08008== Change Endpoints
Edwin Kempind0a63922013-01-23 16:32:59 +01009
Edwin Kempin76202742013-02-15 13:51:50 +010010[[list-changes]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -080011=== Query Changes
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -080012--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +010013'GET /changes/'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -080014--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +010015
Edwin Kempind0a63922013-01-23 16:32:59 +010016Queries changes visible to the caller. The query string must be
17provided by the `q` parameter. The `n` parameter can be used to limit
18the returned results.
19
Edwin Kempine3446292013-02-19 16:40:14 +010020As result a list of link:#change-info[ChangeInfo] entries is returned.
21The change output is sorted by the last update time, most recently
22updated to oldest updated.
23
Edwin Kempind0a63922013-01-23 16:32:59 +010024Query for open changes of watched projects:
Edwin Kempin37440832013-02-06 11:36:00 +010025
26.Request
Edwin Kempind0a63922013-01-23 16:32:59 +010027----
Edwin Kempin2091edb2013-01-23 19:07:38 +010028 GET /changes/?q=status:open+is:watched&n=2 HTTP/1.0
Edwin Kempin37440832013-02-06 11:36:00 +010029----
Edwin Kempind0a63922013-01-23 16:32:59 +010030
Edwin Kempin37440832013-02-06 11:36:00 +010031.Response
32----
Edwin Kempind0a63922013-01-23 16:32:59 +010033 HTTP/1.1 200 OK
34 Content-Disposition: attachment
35 Content-Type: application/json;charset=UTF-8
36
37 )]}'
John Spurlockd25fad12013-03-09 11:48:49 -050038 [
39 {
40 "kind": "gerritcodereview#change",
41 "id": "demo~master~Idaf5e098d70898b7119f6f4af5a6c13343d64b57",
42 "project": "demo",
43 "branch": "master",
44 "change_id": "Idaf5e098d70898b7119f6f4af5a6c13343d64b57",
45 "subject": "One change",
46 "status": "NEW",
47 "created": "2012-07-17 07:18:30.854000000",
48 "updated": "2012-07-17 07:19:27.766000000",
John Spurlockd25fad12013-03-09 11:48:49 -050049 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +010050 "insertions": 26,
51 "deletions": 10,
John Spurlockd25fad12013-03-09 11:48:49 -050052 "_sortkey": "001e7057000006dc",
53 "_number": 1756,
54 "owner": {
55 "name": "John Doe"
56 },
Edwin Kempind0a63922013-01-23 16:32:59 +010057 },
John Spurlockd25fad12013-03-09 11:48:49 -050058 {
59 "kind": "gerritcodereview#change",
60 "id": "demo~master~I09c8041b5867d5b33170316e2abc34b79bbb8501",
61 "project": "demo",
62 "branch": "master",
63 "change_id": "I09c8041b5867d5b33170316e2abc34b79bbb8501",
64 "subject": "Another change",
65 "status": "NEW",
66 "created": "2012-07-17 07:18:30.884000000",
67 "updated": "2012-07-17 07:18:30.885000000",
68 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +010069 "insertions": 12,
70 "deletions": 18,
John Spurlockd25fad12013-03-09 11:48:49 -050071 "_sortkey": "001e7056000006dd",
72 "_number": 1757,
73 "owner": {
74 "name": "John Doe"
75 },
76 "_more_changes": true
77 }
78 ]
Edwin Kempind0a63922013-01-23 16:32:59 +010079----
80
Edwin Kempind0a63922013-01-23 16:32:59 +010081If the `n` query parameter is supplied and additional changes exist
82that match the query beyond the end, the last change object has a
83`_more_changes: true` JSON field set. Callers can resume a query with
Christian Aistleitner55364012013-02-17 12:18:22 +010084the `N` query parameter, supplying the last change's `_sortkey` field
85as the value. When going in the reverse direction with the `P` query
Edwin Kempind0a63922013-01-23 16:32:59 +010086parameter a `_more_changes: true` is put in the first change object if
87there are results *before* the first change returned.
88
89Clients are allowed to specify more than one query by setting the `q`
90parameter multiple times. In this case the result is an array of
91arrays, one per query in the same order the queries were given in.
92
Edwin Kempina64c4b92013-01-23 11:30:40 +010093.Query for the 25 most recent open changes of the projects that you watch
94****
95get::/changes/?q=status:open+is:watched&n=25
96****
97
Edwin Kempind0a63922013-01-23 16:32:59 +010098Query that retrieves changes for a user's dashboard:
Edwin Kempin37440832013-02-06 11:36:00 +010099
100.Request
Edwin Kempind0a63922013-01-23 16:32:59 +0100101----
102 GET /changes/?q=is:open+owner:self&q=is:open+reviewer:self+-owner:self&q=is:closed+owner:self+limit:5&o=LABELS HTTP/1.0
Edwin Kempin37440832013-02-06 11:36:00 +0100103----
Edwin Kempind0a63922013-01-23 16:32:59 +0100104
Edwin Kempin37440832013-02-06 11:36:00 +0100105.Response
106----
Edwin Kempind0a63922013-01-23 16:32:59 +0100107 HTTP/1.1 200 OK
108 Content-Disposition: attachment
109 Content-Type: application/json;charset=UTF-8
110
111 )]}'
112 [
113 [
114 {
115 "kind": "gerritcodereview#change",
116 "id": "demo~master~Idaf5e098d70898b7119f6f4af5a6c13343d64b57",
117 "project": "demo",
118 "branch": "master",
119 "change_id": "Idaf5e098d70898b7119f6f4af5a6c13343d64b57",
120 "subject": "One change",
121 "status": "NEW",
122 "created": "2012-07-17 07:18:30.854000000",
123 "updated": "2012-07-17 07:19:27.766000000",
Edwin Kempindb1f0b82013-02-21 15:07:00 +0100124 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100125 "insertions": 4,
126 "deletions": 7,
Edwin Kempind0a63922013-01-23 16:32:59 +0100127 "_sortkey": "001e7057000006dc",
128 "_number": 1756,
129 "owner": {
130 "name": "John Doe"
131 },
132 "labels": {
133 "Verified": {},
134 "Code-Review": {}
135 }
136 }
137 ],
138 [],
139 []
140 ]
141----
142
Edwin Kempina64c4b92013-01-23 11:30:40 +0100143.Query the changes for your user dashboard
144****
145get::/changes/?q=is:open+owner:self&q=is:open+reviewer:self+-owner:self&q=is:closed+owner:self+limit:5&o=LABELS
146****
147
Edwin Kempind0a63922013-01-23 16:32:59 +0100148Additional fields can be obtained by adding `o` parameters, each
149option requires more database lookups and slows down the query
150response time to the client so they are generally disabled by
151default. Optional fields are:
152
Edwin Kempine3446292013-02-19 16:40:14 +0100153[[labels]]
154--
Edwin Kempind0a63922013-01-23 16:32:59 +0100155* `LABELS`: a summary of each label required for submit, and
156 approvers that have granted (or rejected) with that label.
Edwin Kempine3446292013-02-19 16:40:14 +0100157--
Edwin Kempind0a63922013-01-23 16:32:59 +0100158
Edwin Kempine3446292013-02-19 16:40:14 +0100159[[detailed-labels]]
160--
Dave Borowitz4c7231a2013-01-30 16:18:59 -0800161* `DETAILED_LABELS`: detailed label information, including numeric
Dave Borowitz992ddd72013-02-13 11:53:17 -0800162 values of all existing approvals, recognized label values, values
163 permitted to be set by the current user, and reviewers that may be
164 removed by the current user.
Edwin Kempine3446292013-02-19 16:40:14 +0100165--
Dave Borowitz4c7231a2013-01-30 16:18:59 -0800166
Edwin Kempine3446292013-02-19 16:40:14 +0100167[[current-revision]]
168--
Edwin Kempind0a63922013-01-23 16:32:59 +0100169* `CURRENT_REVISION`: describe the current revision (patch set)
170 of the change, including the commit SHA-1 and URLs to fetch from.
Edwin Kempine3446292013-02-19 16:40:14 +0100171--
Edwin Kempind0a63922013-01-23 16:32:59 +0100172
Edwin Kempine3446292013-02-19 16:40:14 +0100173[[all-revisions]]
174--
Edwin Kempind0a63922013-01-23 16:32:59 +0100175* `ALL_REVISIONS`: describe all revisions, not just current.
Edwin Kempine3446292013-02-19 16:40:14 +0100176--
Edwin Kempind0a63922013-01-23 16:32:59 +0100177
Edwin Kempinea621482013-10-16 12:58:24 +0200178[[download_commands]]
179--
180* `DOWNLOAD_COMMANDS`: include the `commands` field in the
181 link:#fetch-info[FetchInfo] for revisions. Only valid when the
182 `CURRENT_REVISION` or `ALL_REVISIONS` option is selected.
183--
184
David Ostrovsky17d0d332013-09-30 21:36:09 +0200185[[draft_comments]]
186--
187* `DRAFT_COMMENTS`: include the `has_draft_comments` field for
188 revisions. Only valid when the `CURRENT_REVISION` or `ALL_REVISIONS`
189 option is selected.
Dave Borowitz685bad92013-10-03 11:24:07 -0700190--
David Ostrovsky17d0d332013-09-30 21:36:09 +0200191
Edwin Kempine3446292013-02-19 16:40:14 +0100192[[current-commit]]
193--
Edwin Kempind0a63922013-01-23 16:32:59 +0100194* `CURRENT_COMMIT`: parse and output all header fields from the
David Pursehouse98006e82013-10-02 10:15:52 +0900195 commit object, including message. Only valid when the
196 `CURRENT_REVISION` or `ALL_REVISIONS` option is selected.
Edwin Kempine3446292013-02-19 16:40:14 +0100197--
Edwin Kempind0a63922013-01-23 16:32:59 +0100198
Edwin Kempine3446292013-02-19 16:40:14 +0100199[[all-commits]]
200--
Edwin Kempind0a63922013-01-23 16:32:59 +0100201* `ALL_COMMITS`: parse and output all header fields from the
202 output revisions. If only `CURRENT_REVISION` was requested
203 then only the current revision's commit data will be output.
Edwin Kempine3446292013-02-19 16:40:14 +0100204--
Edwin Kempind0a63922013-01-23 16:32:59 +0100205
Edwin Kempine3446292013-02-19 16:40:14 +0100206[[current-files]]
207--
Edwin Kempind0a63922013-01-23 16:32:59 +0100208* `CURRENT_FILES`: list files modified by the commit, including
209 basic line counts inserted/deleted per file. Only valid when
David Pursehouse98006e82013-10-02 10:15:52 +0900210 the `CURRENT_REVISION` or `ALL_REVISIONS` option is selected.
Edwin Kempine3446292013-02-19 16:40:14 +0100211--
Edwin Kempind0a63922013-01-23 16:32:59 +0100212
Edwin Kempine3446292013-02-19 16:40:14 +0100213[[all-files]]
214--
Edwin Kempind0a63922013-01-23 16:32:59 +0100215* `ALL_FILES`: list files modified by the commit, including
216 basic line counts inserted/deleted per file. If only the
David Pursehouse98006e82013-10-02 10:15:52 +0900217 `CURRENT_REVISION` was requested then only that commit's
Edwin Kempind0a63922013-01-23 16:32:59 +0100218 modified files will be output.
Edwin Kempine3446292013-02-19 16:40:14 +0100219--
Edwin Kempind0a63922013-01-23 16:32:59 +0100220
Edwin Kempine3446292013-02-19 16:40:14 +0100221[[detailed-accounts]]
222--
Edwin Kempin4a00e222013-10-16 14:34:24 +0200223* `DETAILED_ACCOUNTS`: include `_account_id`, `email` and `username`
224 fields when referencing accounts.
Edwin Kempine3446292013-02-19 16:40:14 +0100225--
Dave Borowitz8926a882013-02-01 14:32:48 -0800226
John Spurlock74a70cc2013-03-23 16:41:50 -0400227[[messages]]
228--
229* `MESSAGES`: include messages associated with the change.
230--
231
Shawn Pearcedc4a9b22013-07-12 10:54:38 -0700232[[actions]]
233--
234* `CURRENT_ACTIONS`: include information on available actions
235 for the change and its current revision. The caller must be
236 authenticated to obtain the available actions.
237--
238
Shawn Pearce414c5ff2013-09-06 21:51:02 -0700239[[reviewed]]
240--
241* `REVIEWED`: include the `reviewed` field if the caller is
242 authenticated and has commented on the current revision.
243--
244
Sven Selbergae1a10c2014-02-14 14:24:29 +0100245[[patch-set-links]]
246--
Edwin Kempin4eac9642014-04-11 16:07:27 +0200247* `PATCHSET_LINKS`: include the `web_links` field.
Sven Selbergae1a10c2014-02-14 14:24:29 +0100248--
249
Edwin Kempin37440832013-02-06 11:36:00 +0100250.Request
Edwin Kempind0a63922013-01-23 16:32:59 +0100251----
Edwin Kempinea621482013-10-16 12:58:24 +0200252 GET /changes/?q=97&o=CURRENT_REVISION&o=CURRENT_COMMIT&o=CURRENT_FILES&o=DOWNLOAD_COMMANDS HTTP/1.0
Edwin Kempin37440832013-02-06 11:36:00 +0100253----
Edwin Kempind0a63922013-01-23 16:32:59 +0100254
Edwin Kempin37440832013-02-06 11:36:00 +0100255.Response
256----
Edwin Kempind0a63922013-01-23 16:32:59 +0100257 HTTP/1.1 200 OK
258 Content-Disposition: attachment
259 Content-Type: application/json;charset=UTF-8
260
261 )]}'
262 [
263 {
264 "kind": "gerritcodereview#change",
265 "id": "demo~master~I7ea46d2e2ee5c64c0d807677859cfb7d90b8966a",
266 "project": "gerrit",
267 "branch": "master",
268 "change_id": "I7ea46d2e2ee5c64c0d807677859cfb7d90b8966a",
269 "subject": "Use an EventBus to manage star icons",
270 "status": "NEW",
271 "created": "2012-04-25 00:52:25.580000000",
272 "updated": "2012-04-25 00:52:25.586000000",
Edwin Kempindb1f0b82013-02-21 15:07:00 +0100273 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100274 "insertions": 16,
275 "deletions": 7,
Edwin Kempind0a63922013-01-23 16:32:59 +0100276 "_sortkey": "001c9bf400000061",
277 "_number": 97,
278 "owner": {
279 "name": "Shawn Pearce"
280 },
281 "current_revision": "184ebe53805e102605d11f6b143486d15c23a09c",
282 "revisions": {
283 "184ebe53805e102605d11f6b143486d15c23a09c": {
284 "_number": 1,
285 "fetch": {
286 "git": {
287 "url": "git://localhost/gerrit",
Edwin Kempinea621482013-10-16 12:58:24 +0200288 "ref": "refs/changes/97/97/1",
289 "commands": {
290 "Checkout": "git fetch git://localhost/gerrit refs/changes/97/97/1 \u0026\u0026 git checkout FETCH_HEAD",
291 "Cherry-Pick": "git fetch git://localhost/gerrit refs/changes/97/97/1 \u0026\u0026 git cherry-pick FETCH_HEAD",
292 "Format-Patch": "git fetch git://localhost/gerrit refs/changes/97/97/1 \u0026\u0026 git format-patch -1 --stdout FETCH_HEAD",
293 "Pull": "git pull git://localhost/gerrit refs/changes/97/97/1"
294 }
Edwin Kempind0a63922013-01-23 16:32:59 +0100295 },
296 "http": {
Edwin Kempinea621482013-10-16 12:58:24 +0200297 "url": "http://myuser@127.0.0.1:8080/gerrit",
298 "ref": "refs/changes/97/97/1",
299 "commands": {
300 "Checkout": "git fetch http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1 \u0026\u0026 git checkout FETCH_HEAD",
301 "Cherry-Pick": "git fetch http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1 \u0026\u0026 git cherry-pick FETCH_HEAD",
302 "Format-Patch": "git fetch http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1 \u0026\u0026 git format-patch -1 --stdout FETCH_HEAD",
303 "Pull": "git pull http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1"
304 }
305 },
306 "ssh": {
307 "url": "ssh://myuser@*:29418/gerrit",
308 "ref": "refs/changes/97/97/1",
309 "commands": {
310 "Checkout": "git fetch ssh://myuser@*:29418/gerrit refs/changes/97/97/1 \u0026\u0026 git checkout FETCH_HEAD",
311 "Cherry-Pick": "git fetch ssh://myuser@*:29418/gerrit refs/changes/97/97/1 \u0026\u0026 git cherry-pick FETCH_HEAD",
312 "Format-Patch": "git fetch ssh://myuser@*:29418/gerrit refs/changes/97/97/1 \u0026\u0026 git format-patch -1 --stdout FETCH_HEAD",
313 "Pull": "git pull ssh://myuser@*:29418/gerrit refs/changes/97/97/1"
314 }
Edwin Kempind0a63922013-01-23 16:32:59 +0100315 }
316 },
317 "commit": {
318 "parents": [
319 {
320 "commit": "1eee2c9d8f352483781e772f35dc586a69ff5646",
321 "subject": "Migrate contributor agreements to All-Projects."
322 }
323 ],
324 "author": {
325 "name": "Shawn O. Pearce",
326 "email": "sop@google.com",
327 "date": "2012-04-24 18:08:08.000000000",
328 "tz": -420
329 },
330 "committer": {
331 "name": "Shawn O. Pearce",
332 "email": "sop@google.com",
333 "date": "2012-04-24 18:08:08.000000000",
334 "tz": -420
335 },
336 "subject": "Use an EventBus to manage star icons",
337 "message": "Use an EventBus to manage star icons\n\nImage widgets that need to ..."
338 },
339 "files": {
340 "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeCache.java": {
341 "lines_deleted": 8
342 },
343 "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeDetailCache.java": {
344 "lines_inserted": 1
345 },
346 "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeScreen.java": {
347 "lines_inserted": 11,
348 "lines_deleted": 19
349 },
350 "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeTable.java": {
351 "lines_inserted": 23,
352 "lines_deleted": 20
353 },
354 "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarCache.java": {
355 "status": "D",
356 "lines_deleted": 139
357 },
358 "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarredChanges.java": {
359 "status": "A",
360 "lines_inserted": 204
361 },
362 "gerrit-gwtui/src/main/java/com/google/gerrit/client/ui/Screen.java": {
363 "lines_deleted": 9
364 }
365 }
366 }
367 }
368 }
369 ]
370----
371
Edwin Kempinff9e6e32013-02-21 13:07:11 +0100372[[get-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800373=== Get Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800374--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100375'GET /changes/link:#change-id[\{change-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800376--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100377
Edwin Kempinff9e6e32013-02-21 13:07:11 +0100378Retrieves a change.
379
Dave Borowitz0314f732013-10-03 09:34:30 -0700380Additional fields can be obtained by adding `o` parameters, each
381option requires more database lookups and slows down the query
382response time to the client so they are generally disabled by
383default. Fields are described in link:#list-changes[Query Changes].
384
Edwin Kempinff9e6e32013-02-21 13:07:11 +0100385.Request
386----
387 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940 HTTP/1.0
388----
389
390As response a link:#change-info[ChangeInfo] entity is returned that
391describes the change.
392
393.Response
394----
395 HTTP/1.1 200 OK
396 Content-Disposition: attachment
397 Content-Type: application/json;charset=UTF-8
398
399 )]}'
400 {
401 "kind": "gerritcodereview#change",
402 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940",
403 "project": "myProject",
404 "branch": "master",
405 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940",
406 "subject": "Implementing Feature X",
407 "status": "NEW",
408 "created": "2013-02-01 09:59:32.126000000",
409 "updated": "2013-02-21 11:16:36.775000000",
Edwin Kempinff9e6e32013-02-21 13:07:11 +0100410 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100411 "insertions": 34,
412 "deletions": 101,
Edwin Kempinff9e6e32013-02-21 13:07:11 +0100413 "_sortkey": "0023412400000f7d",
414 "_number": 3965,
415 "owner": {
416 "name": "John Doe"
417 }
418 }
419----
420
Edwin Kempin8e492202013-02-21 15:38:25 +0100421[[get-change-detail]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800422=== Get Change Detail
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800423--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100424'GET /changes/link:#change-id[\{change-id\}]/detail'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800425--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100426
Edwin Kempin8e492202013-02-21 15:38:25 +0100427Retrieves a change with link:#labels[labels], link:#detailed-labels[
John Spurlock74a70cc2013-03-23 16:41:50 -0400428detailed labels], link:#detailed-accounts[detailed accounts], and
429link:#messages[messages].
Edwin Kempin8e492202013-02-21 15:38:25 +0100430
Shawn Pearce7f3dccf2013-07-06 19:24:29 -0700431Additional fields can be obtained by adding `o` parameters, each
432option requires more database lookups and slows down the query
433response time to the client so they are generally disabled by
434default. Fields are described in link:#list-changes[Query Changes].
435
Edwin Kempin8e492202013-02-21 15:38:25 +0100436.Request
437----
438 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/detail HTTP/1.0
439----
440
441As response a link:#change-info[ChangeInfo] entity is returned that
442describes the change.
443
444.Response
445----
446 HTTP/1.1 200 OK
447 Content-Disposition: attachment
448 Content-Type: application/json;charset=UTF-8
449
450 )]}'
451 {
452 "kind": "gerritcodereview#change",
453 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940",
454 "project": "myProject",
455 "branch": "master",
456 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940",
457 "subject": "Implementing Feature X",
458 "status": "NEW",
459 "created": "2013-02-01 09:59:32.126000000",
460 "updated": "2013-02-21 11:16:36.775000000",
Edwin Kempin8e492202013-02-21 15:38:25 +0100461 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100462 "insertions": 126,
463 "deletions": 11,
Edwin Kempin8e492202013-02-21 15:38:25 +0100464 "_sortkey": "0023412400000f7d",
465 "_number": 3965,
466 "owner": {
467 "_account_id": 1000096,
468 "name": "John Doe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200469 "email": "john.doe@example.com",
470 "username": "jdoe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100471 },
472 "labels": {
473 "Verified": {
474 "all": [
475 {
476 "value": 0,
477 "_account_id": 1000096,
478 "name": "John Doe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200479 "email": "john.doe@example.com",
480 "username": "jdoe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100481 },
482 {
483 "value": 0,
484 "_account_id": 1000097,
485 "name": "Jane Roe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200486 "email": "jane.roe@example.com",
487 "username": "jroe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100488 }
489 ],
490 "values": {
491 "-1": "Fails",
492 " 0": "No score",
493 "+1": "Verified"
494 }
495 },
496 "Code-Review": {
497 "recommended": {
498 "_account_id": 1000097,
499 "name": "Jane Roe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200500 "email": "jane.roe@example.com",
501 "username": "jroe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100502 },
503 "disliked": {
504 "_account_id": 1000096,
505 "name": "John Doe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200506 "email": "john.doe@example.com",
507 "username": "jdoe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100508 },
509 "all": [
510 {
511 "value": -1,
512 "_account_id": 1000096,
513 "name": "John Doe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200514 "email": "john.doe@example.com",
515 "username": "jdoe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100516 },
517 {
518 "value": 1,
519 "_account_id": 1000097,
520 "name": "Jane Roe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200521 "email": "jane.roe@example.com",
522 "username": "jroe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100523 }
524 ]
525 "values": {
Paul Fertser2474e522014-01-23 10:00:59 +0400526 "-2": "This shall not be merged",
527 "-1": "I would prefer this is not merged as is",
Edwin Kempin8e492202013-02-21 15:38:25 +0100528 " 0": "No score",
529 "+1": "Looks good to me, but someone else must approve",
530 "+2": "Looks good to me, approved"
531 }
532 }
533 },
534 "permitted_labels": {
535 "Verified": [
536 "-1",
537 " 0",
538 "+1"
539 ],
540 "Code-Review": [
541 "-2",
542 "-1",
543 " 0",
544 "+1",
545 "+2"
546 ]
547 },
548 "removable_reviewers": [
549 {
550 "_account_id": 1000096,
551 "name": "John Doe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200552 "email": "john.doe@example.com",
553 "username": "jdoe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100554 },
555 {
556 "_account_id": 1000097,
557 "name": "Jane Roe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200558 "email": "jane.roe@example.com",
559 "username": "jroe"
Edwin Kempin8e492202013-02-21 15:38:25 +0100560 }
John Spurlock74a70cc2013-03-23 16:41:50 -0400561 ],
562 "messages": [
563 {
564 "id": "YH-egE",
565 "author": {
566 "_account_id": 1000096,
567 "name": "John Doe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200568 "email": "john.doe@example.com",
569 "username": "jdoe"
John Spurlock74a70cc2013-03-23 16:41:50 -0400570 },
571 "updated": "2013-03-23 21:34:02.419000000",
572 "message": "Patch Set 1:\n\nThis is the first message.",
573 "revision_number": 1
574 },
575 {
576 "id": "WEEdhU",
577 "author": {
578 "_account_id": 1000097,
579 "name": "Jane Roe",
Edwin Kempin65886f02013-10-16 15:03:17 +0200580 "email": "jane.roe@example.com",
581 "username": "jroe"
John Spurlock74a70cc2013-03-23 16:41:50 -0400582 },
583 "updated": "2013-03-23 21:36:52.332000000",
584 "message": "Patch Set 1:\n\nThis is the second message.\n\nWith a line break.",
585 "revision_number": 1
586 }
Edwin Kempin8e492202013-02-21 15:38:25 +0100587 ]
588 }
589----
590
Edwin Kempin64006bb2013-02-22 08:17:04 +0100591[[get-topic]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800592=== Get Topic
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800593--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100594'GET /changes/link:#change-id[\{change-id\}]/topic'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800595--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100596
Edwin Kempin64006bb2013-02-22 08:17:04 +0100597Retrieves the topic of a change.
598
599.Request
600----
601 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/topic HTTP/1.0
602----
603
604.Response
605----
606 HTTP/1.1 200 OK
607 Content-Disposition: attachment
608 Content-Type: application/json;charset=UTF-8
609
610 )]}'
611 "Documentation"
612----
613
614If the change does not have a topic an empty string is returned.
615
616[[set-topic]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800617=== Set Topic
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800618--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100619'PUT /changes/link:#change-id[\{change-id\}]/topic'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800620--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100621
Edwin Kempin64006bb2013-02-22 08:17:04 +0100622Sets the topic of a change.
623
624The new topic must be provided in the request body inside a
625link:#topic-input[TopicInput] entity.
626
627.Request
628----
629 PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/topic HTTP/1.0
630 Content-Type: application/json;charset=UTF-8
631
632 {
633 "topic": "Documentation"
634 }
635----
636
637As response the new topic is returned.
638
639.Response
640----
641 HTTP/1.1 200 OK
642 Content-Disposition: attachment
643 Content-Type: application/json;charset=UTF-8
644
645 )]}'
646 "Documentation"
647----
648
649If the topic was deleted the response is "`204 No Content`".
650
651[[delete-topic]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800652=== Delete Topic
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800653--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100654'DELETE /changes/link:#change-id[\{change-id\}]/topic'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800655--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100656
Edwin Kempin64006bb2013-02-22 08:17:04 +0100657Deletes the topic of a change.
658
659The request body does not need to include a link:#topic-input[
660TopicInput] entity if no review comment is added.
661
662Please note that some proxies prohibit request bodies for DELETE
663requests. In this case, if you want to specify a commit message, use
664link:#set-topic[PUT] to delete the topic.
665
666.Request
667----
668 DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/topic HTTP/1.0
669----
670
671.Response
672----
673 HTTP/1.1 204 No Content
674----
675
Edwin Kempined5364b2013-02-22 10:39:33 +0100676[[abandon-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800677=== Abandon Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800678--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100679'POST /changes/link:#change-id[\{change-id\}]/abandon'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800680--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100681
Edwin Kempined5364b2013-02-22 10:39:33 +0100682Abandons a change.
683
684The request body does not need to include a link:#abandon-input[
685AbandonInput] entity if no review comment is added.
686
687.Request
688----
689 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/abandon HTTP/1.0
690----
691
692As response a link:#change-info[ChangeInfo] entity is returned that
693describes the abandoned change.
694
695.Response
696----
697 HTTP/1.1 200 OK
698 Content-Disposition: attachment
699 Content-Type: application/json;charset=UTF-8
700
701 )]}'
702 {
703 "kind": "gerritcodereview#change",
704 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940",
705 "project": "myProject",
706 "branch": "master",
707 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940",
708 "subject": "Implementing Feature X",
709 "status": "ABANDONED",
710 "created": "2013-02-01 09:59:32.126000000",
711 "updated": "2013-02-21 11:16:36.775000000",
Edwin Kempined5364b2013-02-22 10:39:33 +0100712 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100713 "insertions": 3,
714 "deletions": 310,
Edwin Kempined5364b2013-02-22 10:39:33 +0100715 "_sortkey": "0023412400000f7d",
716 "_number": 3965,
717 "owner": {
718 "name": "John Doe"
719 }
720 }
721----
722
723If the change cannot be abandoned because the change state doesn't
724allow abandoning of the change, the response is "`409 Conflict`" and
725the error message is contained in the response body.
726
727.Response
728----
729 HTTP/1.1 409 Conflict
730 Content-Disposition: attachment
731 Content-Type: text/plain;charset=UTF-8
732
733 change is merged
734----
735
736[[restore-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800737=== Restore Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800738--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100739'POST /changes/link:#change-id[\{change-id\}]/restore'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800740--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100741
Edwin Kempined5364b2013-02-22 10:39:33 +0100742Restores a change.
743
744The request body does not need to include a link:#restore-input[
745RestoreInput] entity if no review comment is added.
746
747.Request
748----
749 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/restore HTTP/1.0
750----
751
752As response a link:#change-info[ChangeInfo] entity is returned that
753describes the restored change.
754
755.Response
756----
757 HTTP/1.1 200 OK
758 Content-Disposition: attachment
759 Content-Type: application/json;charset=UTF-8
760
761 )]}'
762 {
763 "kind": "gerritcodereview#change",
764 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940",
765 "project": "myProject",
766 "branch": "master",
767 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940",
768 "subject": "Implementing Feature X",
769 "status": "NEW",
770 "created": "2013-02-01 09:59:32.126000000",
771 "updated": "2013-02-21 11:16:36.775000000",
Edwin Kempined5364b2013-02-22 10:39:33 +0100772 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100773 "insertions": 2,
774 "deletions": 13,
Edwin Kempined5364b2013-02-22 10:39:33 +0100775 "_sortkey": "0023412400000f7d",
776 "_number": 3965,
777 "owner": {
778 "name": "John Doe"
779 }
780 }
781----
782
783If the change cannot be restored because the change state doesn't
784allow restoring the change, the response is "`409 Conflict`" and
785the error message is contained in the response body.
786
787.Response
788----
789 HTTP/1.1 409 Conflict
790 Content-Disposition: attachment
791 Content-Type: text/plain;charset=UTF-8
792
793 change is new
794----
795
Edwin Kempincdae63b2013-03-15 15:06:59 +0100796[[rebase-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800797=== Rebase Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800798--
Edwin Kempincdae63b2013-03-15 15:06:59 +0100799'POST /changes/link:#change-id[\{change-id\}]/rebase'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800800--
Edwin Kempincdae63b2013-03-15 15:06:59 +0100801
802Rebases a change.
803
804.Request
805----
806 POST /changes/myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2/rebase HTTP/1.0
807----
808
809As response a link:#change-info[ChangeInfo] entity is returned that
810describes the rebased change. Information about the current patch set
811is included.
812
813.Response
814----
815 HTTP/1.1 200 OK
816 Content-Disposition: attachment
817 Content-Type: application/json;charset=UTF-8
818
819 )]}'
820 {
821 "kind": "gerritcodereview#change",
822 "id": "myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2",
823 "project": "myProject",
824 "branch": "master",
825 "change_id": "I3ea943139cb62e86071996f2480e58bf3eeb9dd2",
826 "subject": "Implement Feature X",
827 "status": "NEW",
828 "created": "2013-02-01 09:59:32.126000000",
829 "updated": "2013-02-21 11:16:36.775000000",
830 "mergeable": false,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100831 "insertions": 33,
832 "deletions": 9,
Edwin Kempincdae63b2013-03-15 15:06:59 +0100833 "_sortkey": "0024cf9a000012bf",
834 "_number": 4799,
835 "owner": {
836 "name": "John Doe"
837 },
838 "current_revision": "27cc4558b5a3d3387dd11ee2df7a117e7e581822",
839 "revisions": {
840 "27cc4558b5a3d3387dd11ee2df7a117e7e581822": {
841 "_number": 2,
842 "fetch": {
843 "http": {
844 "url": "http://gerrit:8080/myProject",
845 "ref": "refs/changes/99/4799/2"
846 }
847 },
848 "commit": {
849 "parents": [
850 {
851 "commit": "b4003890dadd406d80222bf1ad8aca09a4876b70",
852 "subject": "Implement Feature A"
853 }
854 ],
855 "author": {
856 "name": "John Doe",
857 "email": "john.doe@example.com",
858 "date": "2013-05-07 15:21:27.000000000",
859 "tz": 120
860 },
861 "committer": {
862 "name": "Gerrit Code Review",
863 "email": "gerrit-server@example.com",
864 "date": "2013-05-07 15:35:43.000000000",
865 "tz": 120
866 },
867 "subject": "Implement Feature X",
868 "message": "Implement Feature X\n\nAdded feature X."
869 }
870 }
871 }
872----
873
874If the change cannot be rebased, e.g. due to conflicts, the response is
875"`409 Conflict`" and the error message is contained in the response
876body.
877
878.Response
879----
880 HTTP/1.1 409 Conflict
881 Content-Disposition: attachment
882 Content-Type: text/plain;charset=UTF-8
883
884 The change could not be rebased due to a path conflict during merge.
885----
886
Edwin Kempind2ec4152013-02-22 12:17:19 +0100887[[revert-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800888=== Revert Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800889--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100890'POST /changes/link:#change-id[\{change-id\}]/revert'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800891--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100892
Edwin Kempind2ec4152013-02-22 12:17:19 +0100893Reverts a change.
894
895The request body does not need to include a link:#revert-input[
896RevertInput] entity if no review comment is added.
897
898.Request
899----
900 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revert HTTP/1.0
901----
902
903As response a link:#change-info[ChangeInfo] entity is returned that
904describes the reverting change.
905
906.Response
907----
908 HTTP/1.1 200 OK
909 Content-Disposition: attachment
910 Content-Type: application/json;charset=UTF-8
911
912 )]}'
913 {
914 "kind": "gerritcodereview#change",
915 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940",
916 "project": "myProject",
917 "branch": "master",
918 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940",
919 "subject": "Revert \"Implementing Feature X\"",
920 "status": "NEW",
921 "created": "2013-02-01 09:59:32.126000000",
922 "updated": "2013-02-21 11:16:36.775000000",
Edwin Kempind2ec4152013-02-22 12:17:19 +0100923 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +0100924 "insertions": 6,
925 "deletions": 4,
Edwin Kempind2ec4152013-02-22 12:17:19 +0100926 "_sortkey": "0023412400000f7d",
927 "_number": 3965,
928 "owner": {
929 "name": "John Doe"
930 }
931 }
932----
933
934If the change cannot be reverted because the change state doesn't
935allow reverting the change, the response is "`409 Conflict`" and
936the error message is contained in the response body.
937
938.Response
939----
940 HTTP/1.1 409 Conflict
941 Content-Disposition: attachment
942 Content-Type: text/plain;charset=UTF-8
943
944 change is new
945----
946
Edwin Kempin0eddba02013-02-22 15:30:12 +0100947[[submit-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -0800948=== Submit Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800949--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100950'POST /changes/link:#change-id[\{change-id\}]/submit'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -0800951--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +0100952
Edwin Kempin0eddba02013-02-22 15:30:12 +0100953Submits a change.
954
955The request body only needs to include a link:#submit-input[
956SubmitInput] entity if the request should wait for the merge to
957complete.
958
959.Request
960----
961 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/submit HTTP/1.0
962 Content-Type: application/json;charset=UTF-8
963
964 {
965 "wait_for_merge": true
966 }
967----
968
969As response a link:#change-info[ChangeInfo] entity is returned that
970describes the submitted/merged change.
971
972.Response
973----
974 HTTP/1.1 200 OK
975 Content-Disposition: attachment
976 Content-Type: application/json;charset=UTF-8
977
978 )]}'
979 {
980 "kind": "gerritcodereview#change",
981 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940",
982 "project": "myProject",
983 "branch": "master",
984 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940",
985 "subject": "Implementing Feature X",
986 "status": "MERGED",
987 "created": "2013-02-01 09:59:32.126000000",
988 "updated": "2013-02-21 11:16:36.775000000",
Edwin Kempin0eddba02013-02-22 15:30:12 +0100989 "_sortkey": "0023412400000f7d",
990 "_number": 3965,
991 "owner": {
992 "name": "John Doe"
993 }
994 }
995----
996
997If the change cannot be submitted because the submit rule doesn't allow
998submitting the change, the response is "`409 Conflict`" and the error
999message is contained in the response body.
1000
1001.Response
1002----
1003 HTTP/1.1 409 Conflict
1004 Content-Disposition: attachment
1005 Content-Type: text/plain;charset=UTF-8
1006
1007 blocked by Verified
1008----
1009
David Ostrovsky0d69c232013-09-10 23:10:23 +02001010[[publish-draft-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001011=== Publish Draft Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001012--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001013'POST /changes/link:#change-id[\{change-id\}]/publish'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001014--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001015
1016Publishes a draft change.
1017
1018.Request
1019----
1020 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/publish HTTP/1.0
1021 Content-Type: application/json;charset=UTF-8
1022----
1023
1024.Response
1025----
1026 HTTP/1.1 204 No Content
1027----
1028
1029[[delete-draft-change]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001030=== Delete Draft Change
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001031--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001032'DELETE /changes/link:#change-id[\{change-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001033--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001034
1035Deletes a draft change.
1036
1037.Request
1038----
1039 DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940 HTTP/1.0
1040 Content-Type: application/json;charset=UTF-8
1041----
1042
1043.Response
1044----
1045 HTTP/1.1 204 No Content
1046----
1047
David Ostrovsky83e8aee2013-09-30 22:37:26 +02001048[[get-included-in]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001049=== Get Included In
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001050--
David Ostrovsky83e8aee2013-09-30 22:37:26 +02001051'GET /changes/link:#change-id[\{change-id\}]/in'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001052--
David Ostrovsky83e8aee2013-09-30 22:37:26 +02001053
1054Retrieves the branches and tags in which a change is included. As result
1055an link:#included-in-info[IncludedInInfo] entity is returned.
1056
1057.Request
1058----
1059 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/in HTTP/1.0
1060----
1061
1062.Response
1063----
1064 HTTP/1.1 200 OK
1065 Content-Disposition: attachment
1066 Content-Type: application/json;charset=UTF-8
1067
1068 )]}'
1069 {
1070 "kind": "gerritcodereview#includedininfo",
1071 "branches": [
1072 "master"
1073 ],
1074 "tags": []
1075 }
1076----
1077
Edwin Kempin1dbe19e2013-02-22 16:18:58 +01001078[[reviewer-endpoints]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001079== Reviewer Endpoints
Edwin Kempin1dbe19e2013-02-22 16:18:58 +01001080
1081[[list-reviewers]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001082=== List Reviewers
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001083--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001084'GET /changes/link:#change-id[\{change-id\}]/reviewers/'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001085--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001086
Edwin Kempin1dbe19e2013-02-22 16:18:58 +01001087Lists the reviewers of a change.
1088
1089As result a list of link:#reviewer-info[ReviewerInfo] entries is returned.
1090
1091.Request
1092----
1093 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers/ HTTP/1.0
1094----
1095
1096.Response
1097----
1098 HTTP/1.1 200 OK
1099 Content-Disposition: attachment
1100 Content-Type: application/json;charset=UTF-8
1101
1102 )]}'
1103 [
1104 {
1105 "kind": "gerritcodereview#reviewer",
1106 "approvals": {
1107 "Verified": "+1",
1108 "Code-Review": "+2"
1109 },
1110 "_account_id": 1000096,
1111 "name": "John Doe",
1112 "email": "john.doe@example.com"
1113 },
1114 {
1115 "kind": "gerritcodereview#reviewer",
1116 "approvals": {
1117 "Verified": " 0",
1118 "Code-Review": "-1"
1119 },
1120 "_account_id": 1000097,
1121 "name": "Jane Roe",
1122 "email": "jane.roe@example.com"
1123 }
1124 ]
1125----
1126
David Ostrovsky8c5f80a2013-09-02 20:22:39 +02001127[[suggest-reviewers]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001128=== Suggest Reviewers
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001129--
David Ostrovsky8c5f80a2013-09-02 20:22:39 +02001130'GET /changes/link:#change-id[\{change-id\}]/suggest_reviewers?q=J&n=5'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001131--
David Ostrovsky8c5f80a2013-09-02 20:22:39 +02001132
1133Suggest the reviewers for a given query `q` and result limit `n`. If result
1134limit is not passed, then the default 10 is used.
1135
1136As result a list of link:#suggested-reviewer-info[SuggestedReviewerInfo] entries is returned.
1137
1138.Request
1139----
1140 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/suggest_reviewers?q=J HTTP/1.0
1141----
1142
1143.Response
1144----
1145 HTTP/1.1 200 OK
1146 Content-Disposition: attachment
1147 Content-Type: application/json;charset=UTF-8
1148
1149 )]}'
1150 [
1151 {
1152 "kind": "gerritcodereview#suggestedreviewer",
1153 "account": {
1154 "_account_id": 1000097,
1155 "name": "Jane Roe",
1156 "email": "jane.roe@example.com"
1157 }
1158 },
1159 {
1160 "kind": "gerritcodereview#suggestedreviewer",
1161 "group": {
1162 "id": "4fd581c0657268f2bdcc26699fbf9ddb76e3a279",
1163 "name": "Joiner"
1164 }
1165 }
1166 ]
1167----
1168
Edwin Kempina3d02ef2013-02-22 16:31:53 +01001169[[get-reviewer]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001170=== Get Reviewer
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001171--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001172'GET /changes/link:#change-id[\{change-id\}]/reviewers/link:rest-api-accounts.html#account-id[\{account-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001173--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001174
Edwin Kempina3d02ef2013-02-22 16:31:53 +01001175Retrieves a reviewer of a change.
1176
1177As response a link:#reviewer-info[ReviewerInfo] entity is returned that
1178describes the reviewer.
1179
1180.Request
1181----
1182 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers/john.doe@example.com HTTP/1.0
1183----
1184
1185.Response
1186----
1187 HTTP/1.1 200 OK
1188 Content-Disposition: attachment
1189 Content-Type: application/json;charset=UTF-8
1190
1191 )]}'
1192 {
1193 "kind": "gerritcodereview#reviewer",
1194 "approvals": {
1195 "Verified": "+1",
1196 "Code-Review": "+2"
1197 },
1198 "_account_id": 1000096,
1199 "name": "John Doe",
1200 "email": "john.doe@example.com"
1201 }
1202----
1203
Edwin Kempin392328e2013-02-25 12:50:03 +01001204[[add-reviewer]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001205=== Add Reviewer
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001206--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001207'POST /changes/link:#change-id[\{change-id\}]/reviewers'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001208--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001209
Edwin Kempin392328e2013-02-25 12:50:03 +01001210Adds one user or all members of one group as reviewer to the change.
1211
1212The reviewer to be added to the change must be provided in the request
1213body as a link:#reviewer-input[ReviewerInput] entity.
1214
1215.Request
1216----
1217 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers HTTP/1.0
1218 Content-Type: application/json;charset=UTF-8
1219
1220 {
1221 "reviewer": "john.doe@example.com"
1222 }
1223----
1224
1225As response an link:#add-reviewer-result[AddReviewerResult] entity is
1226returned that describes the newly added reviewers.
1227
1228.Response
1229----
1230 HTTP/1.1 200 OK
1231 Content-Disposition: attachment
1232 Content-Type: application/json;charset=UTF-8
1233
1234 )]}'
1235 {
1236 "reviewers": [
1237 {
1238 "kind": "gerritcodereview#reviewer",
1239 "approvals": {
1240 "Verified": " 0",
1241 "Code-Review": " 0"
1242 },
1243 "_account_id": 1000096,
1244 "name": "John Doe",
1245 "email": "john.doe@example.com"
1246 }
1247 ]
1248 }
1249----
1250
1251If a group is specified, adding the group members as reviewers is an
1252atomic operation. This means if an error is returned, none of the
1253members are added as reviewer.
1254
1255If a group with many members is added as reviewer a confirmation may be
1256required.
1257
1258.Request
1259----
1260 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers HTTP/1.0
1261 Content-Type: application/json;charset=UTF-8
1262
1263 {
1264 "reviewer": "MyProjectVerifiers"
1265 }
1266----
1267
1268.Response
1269----
1270 HTTP/1.1 200 OK
1271 Content-Disposition: attachment
1272 Content-Type: application/json;charset=UTF-8
1273
1274 )]}'
1275 {
1276 "error": "The group My Group has 15 members. Do you want to add them all as reviewers?",
1277 "confirm": true
1278 }
1279----
1280
1281To confirm the addition of the reviewers, resend the request with the
Edwin Kempin08da43d2013-02-26 11:06:58 +01001282`confirmed` flag being set.
Edwin Kempin392328e2013-02-25 12:50:03 +01001283
1284.Request
1285----
1286 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers HTTP/1.0
1287 Content-Type: application/json;charset=UTF-8
1288
1289 {
1290 "reviewer": "MyProjectVerifiers",
Edwin Kempin08da43d2013-02-26 11:06:58 +01001291 "confirmed": true
Edwin Kempin392328e2013-02-25 12:50:03 +01001292 }
1293----
1294
Edwin Kempin53301072013-02-25 12:57:07 +01001295[[delete-reviewer]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001296=== Delete Reviewer
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001297--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001298'DELETE /changes/link:#change-id[\{change-id\}]/reviewers/link:rest-api-accounts.html#account-id[\{account-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001299--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001300
Edwin Kempin53301072013-02-25 12:57:07 +01001301Deletes a reviewer from a change.
1302
1303.Request
1304----
1305 DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers/John%20Doe HTTP/1.0
1306----
1307
1308.Response
1309----
1310 HTTP/1.1 204 No Content
1311----
1312
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001313[[revision-endpoints]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001314== Revision Endpoints
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001315
Shawn Pearce728ba882013-07-08 23:13:08 -07001316[[get-commit]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001317=== Get Commit
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001318--
Shawn Pearce728ba882013-07-08 23:13:08 -07001319'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/commit'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001320--
Shawn Pearce728ba882013-07-08 23:13:08 -07001321
1322Retrieves a parsed commit of a revision.
1323
1324.Request
1325----
1326 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/commit HTTP/1.0
1327----
1328
1329As response a link:#commit-info[CommitInfo] entity is returned that
1330describes the revision.
1331
1332.Response
1333----
1334 HTTP/1.1 200 OK
1335 Content-Disposition: attachment
1336 Content-Type: application/json;charset=UTF-8
1337
1338 )]}'
1339 {
1340 "kind": "gerritcodereview#commit",
1341 "parents": [
1342 {
1343 "commit": "1eee2c9d8f352483781e772f35dc586a69ff5646",
1344 "subject": "Migrate contributor agreements to All-Projects."
1345 }
1346 ],
1347 "author": {
1348 "name": "Shawn O. Pearce",
1349 "email": "sop@google.com",
1350 "date": "2012-04-24 18:08:08.000000000",
1351 "tz": -420
1352 },
1353 "committer": {
1354 "name": "Shawn O. Pearce",
1355 "email": "sop@google.com",
1356 "date": "2012-04-24 18:08:08.000000000",
1357 "tz": -420
1358 },
1359 "subject": "Use an EventBus to manage star icons",
1360 "message": "Use an EventBus to manage star icons\n\nImage widgets that need to ..."
1361 }
1362----
1363
1364
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001365[[get-review]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001366=== Get Review
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001367--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001368'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/review'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001369--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001370
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001371Retrieves a review of a revision.
1372
1373.Request
1374----
1375 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/review HTTP/1.0
1376----
1377
1378As response a link:#change-info[ChangeInfo] entity with
1379link:#detailed-labels[detailed labels] and link:#detailed-accounts[
1380detailed accounts] is returned that describes the review of the
1381revision. The revision for which the review is retrieved is contained
1382in the `revisions` field. In addition the `current_revision` field is
John Spurlockd25fad12013-03-09 11:48:49 -05001383set if the revision for which the review is retrieved is the current
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001384revision of the change. Please note that the returned labels are always
1385for the current patch set.
1386
1387.Response
1388----
1389 HTTP/1.1 200 OK
1390 Content-Disposition: attachment
1391 Content-Type: application/json;charset=UTF-8
1392
1393 )]}'
1394 {
1395 "kind": "gerritcodereview#change",
1396 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940",
1397 "project": "myProject",
1398 "branch": "master",
1399 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940",
1400 "subject": "Implementing Feature X",
1401 "status": "NEW",
1402 "created": "2013-02-01 09:59:32.126000000",
1403 "updated": "2013-02-21 11:16:36.775000000",
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001404 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +01001405 "insertions": 34,
1406 "deletions": 45,
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001407 "_sortkey": "0023412400000f7d",
1408 "_number": 3965,
1409 "owner": {
1410 "_account_id": 1000096,
1411 "name": "John Doe",
1412 "email": "john.doe@example.com"
1413 },
1414 "labels": {
1415 "Verified": {
1416 "all": [
1417 {
1418 "value": 0,
1419 "_account_id": 1000096,
1420 "name": "John Doe",
1421 "email": "john.doe@example.com"
1422 },
1423 {
1424 "value": 0,
1425 "_account_id": 1000097,
1426 "name": "Jane Roe",
1427 "email": "jane.roe@example.com"
1428 }
1429 ],
1430 "values": {
1431 "-1": "Fails",
1432 " 0": "No score",
1433 "+1": "Verified"
1434 }
1435 },
1436 "Code-Review": {
1437 "all": [
1438 {
1439 "value": -1,
1440 "_account_id": 1000096,
1441 "name": "John Doe",
1442 "email": "john.doe@example.com"
1443 },
1444 {
1445 "value": 1,
1446 "_account_id": 1000097,
1447 "name": "Jane Roe",
1448 "email": "jane.roe@example.com"
1449 }
1450 ]
1451 "values": {
Paul Fertser2474e522014-01-23 10:00:59 +04001452 "-2": "This shall not be merged",
1453 "-1": "I would prefer this is not merged as is",
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01001454 " 0": "No score",
1455 "+1": "Looks good to me, but someone else must approve",
1456 "+2": "Looks good to me, approved"
1457 }
1458 }
1459 },
1460 "permitted_labels": {
1461 "Verified": [
1462 "-1",
1463 " 0",
1464 "+1"
1465 ],
1466 "Code-Review": [
1467 "-2",
1468 "-1",
1469 " 0",
1470 "+1",
1471 "+2"
1472 ]
1473 },
1474 "removable_reviewers": [
1475 {
1476 "_account_id": 1000096,
1477 "name": "John Doe",
1478 "email": "john.doe@example.com"
1479 },
1480 {
1481 "_account_id": 1000097,
1482 "name": "Jane Roe",
1483 "email": "jane.roe@example.com"
1484 }
1485 ],
1486 "current_revision": "674ac754f91e64a0efb8087e59a176484bd534d1",
1487 "revisions": {
1488 "674ac754f91e64a0efb8087e59a176484bd534d1": {
1489 "_number": 2,
1490 "fetch": {
1491 "http": {
1492 "url": "http://gerrit/myProject",
1493 "ref": "refs/changes/65/3965/2"
1494 }
1495 }
1496 }
1497 }
1498----
1499
Edwin Kempin67498de2013-02-25 16:15:34 +01001500[[set-review]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001501=== Set Review
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001502--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001503'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/review'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001504--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001505
Edwin Kempin67498de2013-02-25 16:15:34 +01001506Sets a review on a revision.
1507
1508The review must be provided in the request body as a
1509link:#review-input[ReviewInput] entity.
1510
1511.Request
1512----
1513 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/review HTTP/1.0
1514 Content-Type: application/json;charset=UTF-8
1515
1516 {
1517 "message": "Some nits need to be fixed.",
1518 "labels": {
1519 "Code-Review": -1
1520 },
1521 "comments": {
1522 "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": [
1523 {
1524 "line": 23,
1525 "message": "[nit] trailing whitespace"
1526 },
1527 {
1528 "line": 49,
1529 "message": "[nit] s/conrtol/control"
1530 }
1531 ]
1532 }
1533 }
1534----
1535
1536As response a link:#review-info[ReviewInfo] entity is returned that
1537describes the applied labels.
1538
1539.Response
1540----
1541 HTTP/1.1 200 OK
1542 Content-Disposition: attachment
1543 Content-Type: application/json;charset=UTF-8
1544
1545 )]}'
1546 {
1547 "labels": {
1548 "Code-Review": -1
1549 }
1550 }
1551----
1552
Edwin Kempincdae63b2013-03-15 15:06:59 +01001553[[rebase-revision]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001554=== Rebase Revision
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001555--
Edwin Kempincdae63b2013-03-15 15:06:59 +01001556'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/rebase'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001557--
Edwin Kempincdae63b2013-03-15 15:06:59 +01001558
1559Rebases a revision.
1560
1561.Request
1562----
1563 POST /changes/myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/rebase HTTP/1.0
1564----
1565
1566As response a link:#change-info[ChangeInfo] entity is returned that
1567describes the rebased change. Information about the current patch set
1568is included.
1569
1570.Response
1571----
1572 HTTP/1.1 200 OK
1573 Content-Disposition: attachment
1574 Content-Type: application/json;charset=UTF-8
1575
1576 )]}'
1577 {
1578 "kind": "gerritcodereview#change",
1579 "id": "myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2",
1580 "project": "myProject",
1581 "branch": "master",
1582 "change_id": "I3ea943139cb62e86071996f2480e58bf3eeb9dd2",
1583 "subject": "Implement Feature X",
1584 "status": "NEW",
1585 "created": "2013-02-01 09:59:32.126000000",
1586 "updated": "2013-02-21 11:16:36.775000000",
1587 "mergeable": false,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +01001588 "insertions": 21,
1589 "deletions": 21,
Edwin Kempincdae63b2013-03-15 15:06:59 +01001590 "_sortkey": "0024cf9a000012bf",
1591 "_number": 4799,
1592 "owner": {
1593 "name": "John Doe"
1594 },
1595 "current_revision": "27cc4558b5a3d3387dd11ee2df7a117e7e581822",
1596 "revisions": {
1597 "27cc4558b5a3d3387dd11ee2df7a117e7e581822": {
1598 "_number": 2,
1599 "fetch": {
1600 "http": {
1601 "url": "http://gerrit:8080/myProject",
1602 "ref": "refs/changes/99/4799/2"
1603 }
1604 },
1605 "commit": {
1606 "parents": [
1607 {
1608 "commit": "b4003890dadd406d80222bf1ad8aca09a4876b70",
1609 "subject": "Implement Feature A"
1610 }
1611 ],
1612 "author": {
1613 "name": "John Doe",
1614 "email": "john.doe@example.com",
1615 "date": "2013-05-07 15:21:27.000000000",
1616 "tz": 120
1617 },
1618 "committer": {
1619 "name": "Gerrit Code Review",
1620 "email": "gerrit-server@example.com",
1621 "date": "2013-05-07 15:35:43.000000000",
1622 "tz": 120
1623 },
1624 "subject": "Implement Feature X",
1625 "message": "Implement Feature X\n\nAdded feature X."
1626 }
1627 }
1628 }
1629----
1630
1631If the revision cannot be rebased, e.g. due to conflicts, the response is
1632"`409 Conflict`" and the error message is contained in the response
1633body.
1634
1635.Response
1636----
1637 HTTP/1.1 409 Conflict
1638 Content-Disposition: attachment
1639 Content-Type: text/plain;charset=UTF-8
1640
1641 The change could not be rebased due to a path conflict during merge.
1642----
1643
Edwin Kempin14b58112013-02-26 16:30:19 +01001644[[submit-revision]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001645=== Submit Revision
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001646--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001647'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/submit'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001648--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001649
Edwin Kempin14b58112013-02-26 16:30:19 +01001650Submits a revision.
1651
1652The request body only needs to include a link:#submit-input[
1653SubmitInput] entity if the request should wait for the merge to
1654complete.
1655
1656.Request
1657----
1658 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/submit HTTP/1.0
1659 Content-Type: application/json;charset=UTF-8
1660
1661 {
1662 "wait_for_merge": true
1663 }
1664----
1665
1666As response a link:#submit-info[SubmitInfo] entity is returned that
1667describes the status of the submitted change.
1668
1669.Response
1670----
1671 HTTP/1.1 200 OK
1672 Content-Disposition: attachment
1673 Content-Type: application/json;charset=UTF-8
1674
1675 )]}'
1676 {
1677 "status": "MERGED"
1678 }
1679----
1680
1681If the revision cannot be submitted, e.g. because the submit rule
1682doesn't allow submitting the revision or the revision is not the
1683current revision, the response is "`409 Conflict`" and the error
1684message is contained in the response body.
1685
1686.Response
1687----
1688 HTTP/1.1 409 Conflict
1689 Content-Type: text/plain;charset=UTF-8
1690
1691 "revision 674ac754f91e64a0efb8087e59a176484bd534d1 is not current revision"
1692----
1693
David Ostrovsky0d69c232013-09-10 23:10:23 +02001694[[publish-draft-revision]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001695=== Publish Draft Revision
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001696--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001697'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/publish'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001698--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001699
1700Publishes a draft revision.
1701
1702.Request
1703----
1704 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/publish HTTP/1.0
1705 Content-Type: application/json;charset=UTF-8
1706----
1707
1708.Response
1709----
1710 HTTP/1.1 204 No Content
1711----
1712
1713[[delete-draft-revision]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001714=== Delete Draft Revision
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001715--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001716'DELETE /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001717--
David Ostrovsky0d69c232013-09-10 23:10:23 +02001718
1719Deletes a draft revision.
1720
1721.Request
1722----
1723 DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1 HTTP/1.0
1724 Content-Type: application/json;charset=UTF-8
1725----
1726
1727.Response
1728----
1729 HTTP/1.1 204 No Content
1730----
1731
Edwin Kempin257d70f2013-03-28 14:31:14 +01001732[[get-patch]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001733=== Get Patch
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001734--
Edwin Kempin257d70f2013-03-28 14:31:14 +01001735'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/patch'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001736--
Edwin Kempin257d70f2013-03-28 14:31:14 +01001737
1738Gets the formatted patch for one revision.
1739
1740.Request
1741----
1742 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/patch HTTP/1.0
1743----
1744
Shawn Pearce98361f72013-05-10 16:27:36 -07001745The formatted patch is returned as text encoded inside base64:
Edwin Kempin257d70f2013-03-28 14:31:14 +01001746
1747.Response
1748----
1749 HTTP/1.1 200 OK
1750 Content-Disposition: attachment
Shawn Pearce98361f72013-05-10 16:27:36 -07001751 Content-Type: text/plain;charset=ISO-8859-1
1752 X-FYI-Content-Encoding: base64
1753 X-FYI-Content-Type: application/mbox
Edwin Kempin257d70f2013-03-28 14:31:14 +01001754
Shawn Pearce98361f72013-05-10 16:27:36 -07001755 RnJvbSA3ZGFkY2MxNTNmZGVhMTdhYTg0ZmYzMmE2ZTI0NWRiYjY...
Edwin Kempin257d70f2013-03-28 14:31:14 +01001756----
1757
David Ostrovsky973f38b2013-08-22 00:24:51 -07001758Adding query parameter `zip` (for example `/changes/.../patch?zip`)
1759returns the patch as a single file inside of a ZIP archive. Clients
1760can expand the ZIP to obtain the plain text patch, avoiding the
1761need for a base64 decoding step. This option implies `download`.
1762
1763Query parameter `download` (e.g. `/changes/.../patch?download`)
1764will suggest the browser save the patch as `commitsha1.diff.base64`,
1765for later processing by command line tools.
1766
Shawn Pearce3a2a2472013-07-17 16:40:45 -07001767[[get-mergeable]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001768=== Get Mergeable
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001769--
Shawn Pearce3a2a2472013-07-17 16:40:45 -07001770'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/mergeable'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001771--
Shawn Pearce3a2a2472013-07-17 16:40:45 -07001772
1773Gets the method the server will use to submit (merge) the change and
1774an indicator if the change is currently mergeable.
1775
1776.Request
1777----
1778 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/mergeable HTTP/1.0
1779----
1780
1781.Response
1782----
1783 HTTP/1.1 200 OK
1784 Content-Disposition: attachment
1785 Content-Type: application/json;charset=UTF-8
1786
1787 )]}'
1788 {
1789 submit_type: "MERGE_IF_NECESSARY",
1790 mergeable: true,
1791 }
1792----
1793
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001794[[get-submit-type]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001795=== Get Submit Type
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001796--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001797'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/submit_type'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001798--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001799
Shawn Pearceb1f730b2013-03-04 07:54:09 -08001800Gets the method the server will use to submit (merge) the change.
1801
1802.Request
1803----
1804 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/submit_type HTTP/1.0
1805----
1806
1807.Response
1808----
1809 HTTP/1.1 200 OK
1810 Content-Disposition: attachment
1811 Content-Type: application/json;charset=UTF-8
1812
1813 )]}'
1814 "MERGE_IF_NECESSARY"
1815----
1816
1817[[test-submit-type]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001818=== Test Submit Type
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001819--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001820'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/test.submit_type'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001821--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001822
Shawn Pearceb1f730b2013-03-04 07:54:09 -08001823Tests the submit_type Prolog rule in the project, or the one given.
1824
1825Request body may be either the Prolog code as `text/plain` or a
1826link:#rule-input[RuleInput] object. The query parameter `filters`
1827may be set to `SKIP` to bypass parent project filters while testing
1828a project-specific rule.
1829
1830.Request
1831----
1832 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/test.submit_type HTTP/1.0
1833 Content-Type: text/plain;charset-UTF-8
1834
1835 submit_type(cherry_pick).
1836----
1837
1838.Response
1839----
1840 HTTP/1.1 200 OK
1841 Content-Disposition: attachment
1842 Content-Type: application/json;charset=UTF-8
1843
1844 )]}'
Shawn Pearce7076f4e2013-08-20 22:11:51 -07001845 "CHERRY_PICK"
Shawn Pearceb1f730b2013-03-04 07:54:09 -08001846----
1847
1848[[test-submit-rule]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001849=== Test Submit Rule
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001850--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001851'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/test.submit_rule'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001852--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001853
Shawn Pearceb1f730b2013-03-04 07:54:09 -08001854Tests the submit_rule Prolog rule in the project, or the one given.
1855
1856Request body may be either the Prolog code as `text/plain` or a
1857link:#rule-input[RuleInput] object. The query parameter `filters`
1858may be set to `SKIP` to bypass parent project filters while testing
1859a project-specific rule.
1860
1861.Request
1862----
Shawn Pearcea3cce712014-03-21 08:16:11 -07001863 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/test.submit_rule?filters=SKIP HTTP/1.0
Shawn Pearceb1f730b2013-03-04 07:54:09 -08001864 Content-Type: text/plain;charset-UTF-8
1865
1866 submit_rule(submit(R)) :-
1867 R = label('Any-Label-Name', reject(_)).
1868----
1869
1870The response is a list of link:#submit-record[SubmitRecord] entries
1871describing the permutations that satisfy the tested submit rule.
1872
1873.Response
1874----
1875 HTTP/1.1 200 OK
1876 Content-Disposition: attachment
1877 Content-Type: application/json;charset=UTF-8
1878
1879 )]}'
1880 [
1881 {
1882 "status": "NOT_READY",
1883 "reject": {
1884 "Any-Label-Name": {}
1885 }
1886 }
1887 ]
1888----
1889
Edwin Kempincb6724a2013-02-26 16:58:51 +01001890[[list-drafts]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001891=== List Drafts
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001892--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001893'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001894--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001895
Edwin Kempin3ca57192013-02-27 07:44:01 +01001896Lists the draft comments of a revision that belong to the calling
Edwin Kempincb6724a2013-02-26 16:58:51 +01001897user.
1898
1899As result a map is returned that maps the file path to a list of
1900link:#comment-info[CommentInfo] entries. The entries in the map are
1901sorted by file path.
1902
1903.Request
1904----
1905 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/ HTTP/1.0
1906----
1907
1908.Response
1909----
1910 HTTP/1.1 200 OK
1911 Content-Disposition: attachment
1912 Content-Type: application/json;charset=UTF-8
1913
1914 )]}'
1915 {
1916 "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": [
1917 {
1918 "kind": "gerritcodereview#comment",
1919 "id": "TvcXrmjM",
1920 "line": 23,
1921 "message": "[nit] trailing whitespace",
1922 "updated": "2013-02-26 15:40:43.986000000"
1923 },
1924 {
1925 "kind": "gerritcodereview#comment",
1926 "id": "TveXwFiA",
1927 "line": 49,
1928 "in_reply_to": "TfYX-Iuo",
1929 "message": "Done",
1930 "updated": "2013-02-26 15:40:45.328000000"
1931 }
1932 ]
1933 }
1934----
1935
Edwin Kempin7faf41e2013-02-27 08:17:02 +01001936[[create-draft]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001937=== Create Draft
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001938--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001939'PUT /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001940--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001941
Edwin Kempin7faf41e2013-02-27 08:17:02 +01001942Creates a draft comment on a revision.
1943
1944The new draft comment must be provided in the request body inside a
1945link:#comment-input[CommentInput] entity.
1946
1947.Request
1948----
1949 PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts HTTP/1.0
1950 Content-Type: application/json;charset=UTF-8
1951
1952 {
1953 "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
1954 "line": 23,
1955 "message": "[nit] trailing whitespace"
1956 }
1957----
1958
1959As response a link:#comment-info[CommentInfo] entity is returned that
1960describes the draft comment.
1961
1962.Response
1963----
1964 HTTP/1.1 200 OK
1965 Content-Disposition: attachment
1966 Content-Type: application/json;charset=UTF-8
1967
1968 )]}'
1969 {
1970 "kind": "gerritcodereview#comment",
1971 "id": "TvcXrmjM",
1972 "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
1973 "line": 23,
1974 "message": "[nit] trailing whitespace",
1975 "updated": "2013-02-26 15:40:43.986000000"
1976 }
1977----
1978
Edwin Kempin3ca57192013-02-27 07:44:01 +01001979[[get-draft]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001980=== Get Draft
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001981--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001982'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/link:#draft-id[\{draft-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08001983--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01001984
Edwin Kempin3ca57192013-02-27 07:44:01 +01001985Retrieves a draft comment of a revision that belongs to the calling
1986user.
1987
1988.Request
1989----
1990 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/TvcXrmjM HTTP/1.0
1991----
1992
1993As response a link:#comment-info[CommentInfo] entity is returned that
1994describes the draft comment.
1995
1996.Response
1997----
1998 HTTP/1.1 200 OK
1999 Content-Disposition: attachment
2000 Content-Type: application/json;charset=UTF-8
2001
2002 )]}'
2003 {
2004 "kind": "gerritcodereview#comment",
2005 "id": "TvcXrmjM",
2006 "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2007 "line": 23,
2008 "message": "[nit] trailing whitespace",
2009 "updated": "2013-02-26 15:40:43.986000000"
2010 }
2011----
2012
Edwin Kempin7faf41e2013-02-27 08:17:02 +01002013[[update-draft]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002014=== Update Draft
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002015--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01002016'PUT /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/link:#draft-id[\{draft-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002017--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01002018
Edwin Kempin7faf41e2013-02-27 08:17:02 +01002019Updates a draft comment on a revision.
2020
2021The new draft comment must be provided in the request body inside a
2022link:#comment-input[CommentInput] entity.
2023
2024.Request
2025----
2026 PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/TvcXrmjM HTTP/1.0
2027 Content-Type: application/json;charset=UTF-8
2028
2029 {
2030 "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2031 "line": 23,
2032 "message": "[nit] trailing whitespace"
2033 }
2034----
2035
2036As response a link:#comment-info[CommentInfo] entity is returned that
2037describes the draft comment.
2038
2039.Response
2040----
2041 HTTP/1.1 200 OK
2042 Content-Disposition: attachment
2043 Content-Type: application/json;charset=UTF-8
2044
2045 )]}'
2046 {
2047 "kind": "gerritcodereview#comment",
2048 "id": "TvcXrmjM",
2049 "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2050 "line": 23,
2051 "message": "[nit] trailing whitespace",
2052 "updated": "2013-02-26 15:40:43.986000000"
2053 }
2054----
2055
2056[[delete-draft]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002057=== Delete Draft
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002058--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01002059'DELETE /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/link:#draft-id[\{draft-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002060--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01002061
Edwin Kempin7faf41e2013-02-27 08:17:02 +01002062Deletes a draft comment from a revision.
2063
2064.Request
2065----
2066 DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/TvcXrmjM HTTP/1.0
2067----
2068
2069.Response
2070----
2071 HTTP/1.1 204 No Content
2072----
2073
John Spurlock5e402f02013-03-24 11:35:04 -04002074[[list-comments]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002075=== List Comments
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002076--
John Spurlock5e402f02013-03-24 11:35:04 -04002077'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/comments/'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002078--
John Spurlock5e402f02013-03-24 11:35:04 -04002079
2080Lists the published comments of a revision.
2081
2082As result a map is returned that maps the file path to a list of
2083link:#comment-info[CommentInfo] entries. The entries in the map are
2084sorted by file path.
2085
2086.Request
2087----
2088 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/comments/ HTTP/1.0
2089----
2090
2091.Response
2092----
2093 HTTP/1.1 200 OK
2094 Content-Disposition: attachment
2095 Content-Type: application/json;charset=UTF-8
2096
2097 )]}'
2098 {
2099 "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": [
2100 {
2101 "kind": "gerritcodereview#comment",
2102 "id": "TvcXrmjM",
2103 "line": 23,
2104 "message": "[nit] trailing whitespace",
2105 "updated": "2013-02-26 15:40:43.986000000",
2106 "author": {
2107 "_account_id": 1000096,
2108 "name": "John Doe",
2109 "email": "john.doe@example.com"
2110 }
2111 },
2112 {
2113 "kind": "gerritcodereview#comment",
2114 "id": "TveXwFiA",
2115 "line": 49,
2116 "in_reply_to": "TfYX-Iuo",
2117 "message": "Done",
2118 "updated": "2013-02-26 15:40:45.328000000",
2119 "author": {
2120 "_account_id": 1000097,
2121 "name": "Jane Roe",
2122 "email": "jane.roe@example.com"
2123 }
2124 }
2125 ]
2126 }
2127----
2128
2129[[get-comment]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002130=== Get Comment
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002131--
John Spurlock5e402f02013-03-24 11:35:04 -04002132'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/comments/link:#comment-id[\{comment-id\}]'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002133--
John Spurlock5e402f02013-03-24 11:35:04 -04002134
2135Retrieves a published comment of a revision.
2136
2137.Request
2138----
2139 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/comments/TvcXrmjM HTTP/1.0
2140----
2141
2142As response a link:#comment-info[CommentInfo] entity is returned that
2143describes the published comment.
2144
2145.Response
2146----
2147 HTTP/1.1 200 OK
2148 Content-Disposition: attachment
2149 Content-Type: application/json;charset=UTF-8
2150
2151 )]}'
2152 {
2153 "kind": "gerritcodereview#comment",
2154 "id": "TvcXrmjM",
2155 "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2156 "line": 23,
2157 "message": "[nit] trailing whitespace",
2158 "updated": "2013-02-26 15:40:43.986000000",
2159 "author": {
2160 "_account_id": 1000096,
2161 "name": "John Doe",
2162 "email": "john.doe@example.com"
2163 }
2164 }
2165----
2166
Edwin Kempin682ac712013-05-14 13:40:46 +02002167[[list-files]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002168=== List Files
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002169--
Edwin Kempin682ac712013-05-14 13:40:46 +02002170'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002171--
Edwin Kempin682ac712013-05-14 13:40:46 +02002172
2173Lists the files that were modified, added or deleted in a revision.
2174
2175.Request
2176----
2177 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/ HTTP/1.0
2178----
2179
2180As result a map is returned that maps the file path to a list of
2181link:#file-info[FileInfo] entries. The entries in the map are
2182sorted by file path.
2183
2184.Response
2185----
2186 HTTP/1.1 200 OK
2187 Content-Disposition: attachment
2188 Content-Type: application/json;charset=UTF-8
2189
2190 )]}'
2191 {
2192 "/COMMIT_MSG": {
2193 "status": "A",
2194 "lines_inserted": 7
2195 },
2196 "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": {
2197 "lines_inserted": 5,
2198 "lines_deleted": 3
2199 }
2200 }
2201----
2202
Shawn Pearce984747d2013-07-18 00:42:16 -07002203The request parameter `reviewed` changes the response to return a list
2204of the paths the caller has marked as reviewed. Clients that also
2205need the FileInfo should make two requests.
2206
2207.Request
2208----
2209 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/?reviewed HTTP/1.0
2210----
2211
2212.Response
2213----
2214 HTTP/1.1 200 OK
2215 Content-Disposition: attachment
2216 Content-Type: application/json;charset=UTF-8
2217
2218 )]}'
2219 [
2220 "/COMMIT_MSG",
2221 "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2222 ]
2223----
2224
Edwin Kempinaef44b02013-05-07 16:15:55 +02002225[[get-content]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002226=== Get Content
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002227--
Edwin Kempinbea55a52013-05-14 13:53:39 +02002228'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/content'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002229--
Edwin Kempinaef44b02013-05-07 16:15:55 +02002230
2231Gets the content of a file from a certain revision.
2232
2233.Request
2234----
2235 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/content HTTP/1.0
2236----
2237
2238The content is returned as base64 encoded string.
2239
2240.Response
2241----
2242 HTTP/1.1 200 OK
2243 Content-Disposition: attachment
2244 Content-Type: text/plain;charset=UTF-8
2245
2246 Ly8gQ29weXJpZ2h0IChDKSAyMDEwIFRoZSBBbmRyb2lkIE9wZW4gU291cmNlIFByb2plY...
2247----
2248
David Pursehouse882aef22013-06-05 10:56:37 +09002249[[get-diff]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002250=== Get Diff
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002251--
David Pursehouse882aef22013-06-05 10:56:37 +09002252'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/diff'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002253--
David Pursehouse882aef22013-06-05 10:56:37 +09002254
2255Gets the diff of a file from a certain revision.
2256
2257.Request
2258----
2259 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/diff HTTP/1.0
2260----
2261
2262As response a link:#diff-info[DiffInfo] entity is returned that describes the diff.
2263
2264.Response
2265----
2266 HTTP/1.1 200 OK
2267 Content-Disposition: attachment
2268 Content-Type: application/json;charset=UTF-8
2269
2270 )]
2271 {
2272 "meta_a": {
2273 "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
Shawn Pearced62a6a92013-12-05 12:45:32 -08002274 "content_type": "text/x-java-source",
2275 "lines": 372
David Pursehouse882aef22013-06-05 10:56:37 +09002276 },
2277 "meta_b": {
2278 "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
Shawn Pearced62a6a92013-12-05 12:45:32 -08002279 "content_type": "text/x-java-source",
2280 "lines": 578
David Pursehouse882aef22013-06-05 10:56:37 +09002281 },
2282 "change_type": "MODIFIED",
2283 "diff_header": [
2284 "diff --git a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2285 "index 59b7670..9faf81c 100644",
2286 "--- a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2287 "+++ b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java"
2288 ],
2289 "content": [
2290 {
2291 "ab": [
2292 "// Copyright (C) 2010 The Android Open Source Project",
2293 "//",
2294 "// Licensed under the Apache License, Version 2.0 (the \"License\");",
2295 "// you may not use this file except in compliance with the License.",
2296 "// You may obtain a copy of the License at",
2297 "//",
2298 "// http://www.apache.org/licenses/LICENSE-2.0",
2299 "//",
2300 "// Unless required by applicable law or agreed to in writing, software",
2301 "// distributed under the License is distributed on an \"AS IS\" BASIS,",
2302 "// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
2303 "// See the License for the specific language governing permissions and",
2304 "// limitations under the License."
2305 ]
2306 },
2307 {
2308 "b": [
2309 "//",
2310 "// Add some more lines in the header."
2311 ]
2312 },
2313 {
2314 "ab": [
2315 "",
2316 "package com.google.gerrit.server.project;",
2317 "",
2318 "import com.google.common.collect.Maps;",
2319 ...
2320 ]
2321 }
2322 ...
2323 ]
2324 }
2325----
2326
2327If the `intraline` parameter is specified, intraline differences are included in the diff.
2328
2329.Request
2330----
2331 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/b6b9c10649b9041884046119ab794374470a1b45/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/diff?intraline HTTP/1.0
2332----
2333
2334.Response
2335----
2336 HTTP/1.1 200 OK
2337 Content-Disposition: attachment
2338 Content-Type: application/json;charset=UTF-8
2339
2340 )]
2341 {
2342 "meta_a": {
2343 "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
Shawn Pearced62a6a92013-12-05 12:45:32 -08002344 "content_type": "text/x-java-source",
2345 "lines": 372
David Pursehouse882aef22013-06-05 10:56:37 +09002346 },
2347 "meta_b": {
2348 "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
Shawn Pearced62a6a92013-12-05 12:45:32 -08002349 "content_type": "text/x-java-source",
2350 "lines": 578
David Pursehouse882aef22013-06-05 10:56:37 +09002351 },
2352 "change_type": "MODIFIED",
2353 "diff_header": [
2354 "diff --git a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2355 "index 59b7670..9faf81c 100644",
2356 "--- a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
2357 "+++ b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java"
2358 ],
2359 "content": [
2360 ...
2361 {
2362 "a": [
2363 "/** Manages access control for Git references (aka branches, tags). */"
2364 ],
2365 "b": [
2366 "/** Manages access control for the Git references (aka branches, tags). */"
2367 ],
2368 "edit_a": [],
2369 "edit_b": [
2370 [
2371 31,
2372 4
2373 ]
2374 ]
2375 }
2376 ]
2377 }
2378----
2379
2380The `base` parameter can be specified to control the base patch set from which the diff should
2381be generated.
2382
2383.Request
2384----
2385 GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/b6b9c10649b9041884046119ab794374470a1b45/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/diff?base=2 HTTP/1.0
2386----
2387
2388.Response
2389----
2390 HTTP/1.1 200 OK
2391 Content-Disposition: attachment
2392 Content-Type: application/json;charset=UTF-8
2393
2394 )]
2395 {
2396 "meta_a": {
2397 "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
Shawn Pearced62a6a92013-12-05 12:45:32 -08002398 "content_type": "text/x-java-source",
2399 "lines": 578
David Pursehouse882aef22013-06-05 10:56:37 +09002400 },
2401 "meta_b": {
2402 "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java",
Shawn Pearced62a6a92013-12-05 12:45:32 -08002403 "content_type": "text/x-java-source",
2404 "lines": 578
David Pursehouse882aef22013-06-05 10:56:37 +09002405 },
2406 "change_type": "MODIFIED",
2407 "content": [
2408 {
2409 "skip": 578
2410 }
2411 ]
2412 }
2413----
2414
2415The `ignore-whitespace` parameter can be specified to control how whitespace differences are
2416reported in the result. Valid values are `NONE`, `TRAILING`, `CHANGED` or `ALL`.
2417
2418The `context` parameter can be specified to control the number of lines of surrounding context
2419in the diff. Valid values are `ALL` or number of lines.
2420
Edwin Kempin9300e4c2013-02-27 08:42:06 +01002421[[set-reviewed]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002422=== Set Reviewed
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002423--
Edwin Kempinbea55a52013-05-14 13:53:39 +02002424'PUT /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/reviewed'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002425--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01002426
Edwin Kempinbea55a52013-05-14 13:53:39 +02002427Marks a file of a revision as reviewed by the calling user.
Edwin Kempin9300e4c2013-02-27 08:42:06 +01002428
2429.Request
2430----
2431 PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/reviewed HTTP/1.0
2432----
2433
2434.Response
2435----
2436 HTTP/1.1 201 Created
2437----
2438
Edwin Kempinbea55a52013-05-14 13:53:39 +02002439If the file was already marked as reviewed by the calling user the
Edwin Kempin9300e4c2013-02-27 08:42:06 +01002440response is "`200 OK`".
2441
2442[[delete-reviewed]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002443=== Delete Reviewed
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002444--
Edwin Kempinbea55a52013-05-14 13:53:39 +02002445'DELETE /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/reviewed'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002446--
Edwin Kempin50d3d9b2013-03-06 16:38:26 +01002447
Edwin Kempinbea55a52013-05-14 13:53:39 +02002448Deletes the reviewed flag of the calling user from a file of a revision.
Edwin Kempin9300e4c2013-02-27 08:42:06 +01002449
2450.Request
2451----
2452 DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/reviewed HTTP/1.0
2453----
2454
2455.Response
2456----
2457 HTTP/1.1 204 No Content
2458----
2459
Gustaf Lundh019fb262012-11-28 14:20:22 +01002460[[cherry-pick]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002461=== Cherry Pick Revision
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002462--
Gustaf Lundh019fb262012-11-28 14:20:22 +01002463'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/cherrypick'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002464--
Gustaf Lundh019fb262012-11-28 14:20:22 +01002465
2466Cherry picks a revision to a destination branch.
2467
2468The commit message and destination branch must be provided in the request body inside a
2469link:#cherrypick-input[CherryPickInput] entity.
2470
2471.Request
2472----
2473 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/cherrypick HTTP/1.0
2474 Content-Type: application/json;charset=UTF-8
2475
2476 {
Gustaf Lundh98df5b52013-05-07 19:22:13 +01002477 "message" : "Implementing Feature X",
2478 "destination" : "release-branch"
Gustaf Lundh019fb262012-11-28 14:20:22 +01002479 }
2480----
2481
2482As response a link:#change-info[ChangeInfo] entity is returned that
2483describes the resulting cherry picked change.
2484
2485.Response
2486----
2487 HTTP/1.1 200 OK
2488 Content-Disposition: attachment
2489 Content-Type: application/json;charset=UTF-8
2490
2491 )]}'
2492 {
2493 "kind": "gerritcodereview#change",
2494 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9941",
2495 "project": "myProject",
2496 "branch": "release-branch",
2497 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9941",
2498 "subject": "Implementing Feature X",
2499 "status": "NEW",
2500 "created": "2013-02-01 09:59:32.126000000",
2501 "updated": "2013-02-21 11:16:36.775000000",
Gustaf Lundh019fb262012-11-28 14:20:22 +01002502 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +01002503 "insertions": 12,
2504 "deletions": 11,
Gustaf Lundh019fb262012-11-28 14:20:22 +01002505 "_sortkey": "0023412400000f7d",
2506 "_number": 3965,
2507 "owner": {
2508 "name": "John Doe"
2509 }
2510 }
2511----
Edwin Kempinff9e6e32013-02-21 13:07:11 +01002512
David Ostrovskyae15e0502013-08-19 08:06:07 +02002513[[message]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002514=== Edit Commit Message
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002515--
David Ostrovskyae15e0502013-08-19 08:06:07 +02002516'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/message'
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08002517--
David Ostrovskyae15e0502013-08-19 08:06:07 +02002518
2519Edit commit message.
2520
2521The commit message must be provided in the request body inside a
2522link:#cherrypick-input[CherryPickInput] entity.
2523
2524.Request
2525----
2526 POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/message HTTP/1.0
2527 Content-Type: application/json;charset=UTF-8
2528
2529 {
2530 "message" : "Reword Implementing Feature X",
2531 }
2532----
2533
2534As response a link:#change-info[ChangeInfo] entity is returned that
2535describes the change.
2536
2537.Response
2538----
2539 HTTP/1.1 200 OK
2540 Content-Disposition: attachment
2541 Content-Type: application/json;charset=UTF-8
2542
2543 )]}'
2544 {
2545 "kind": "gerritcodereview#change",
2546 "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9941",
2547 "project": "myProject",
2548 "branch": "release-branch",
2549 "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9941",
2550 "subject": "Reword Implementing Feature X",
2551 "status": "NEW",
2552 "created": "2013-02-01 09:59:32.126000000",
2553 "updated": "2013-02-21 11:16:36.775000000",
David Ostrovskyae15e0502013-08-19 08:06:07 +02002554 "mergeable": true,
Edwin Kempina6b6eaf2013-11-23 11:05:58 +01002555 "insertions": 261,
2556 "deletions": 101,
David Ostrovskyae15e0502013-08-19 08:06:07 +02002557 "_sortkey": "0023412400000f7d",
2558 "_number": 3965,
2559 "owner": {
2560 "name": "John Doe"
2561 }
2562 }
2563----
2564
Edwin Kempinff9e6e32013-02-21 13:07:11 +01002565[[ids]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002566== IDs
Edwin Kempinff9e6e32013-02-21 13:07:11 +01002567
Edwin Kempina3d02ef2013-02-22 16:31:53 +01002568[[account-id]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002569=== link:rest-api-accounts.html#account-id[\{account-id\}]
Edwin Kempina3d02ef2013-02-22 16:31:53 +01002570--
2571--
2572
Edwin Kempinff9e6e32013-02-21 13:07:11 +01002573[[change-id]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002574=== \{change-id\}
Edwin Kempinff9e6e32013-02-21 13:07:11 +01002575Identifier that uniquely identifies one change.
2576
2577This can be:
2578
2579* an ID of the change in the format "'$$<project>~<branch>~<Change-Id>$$'",
2580 where for the branch the `refs/heads/` prefix can be omitted
2581 ("$$myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940$$")
2582* a Change-Id if it uniquely identifies one change
2583 ("I8473b95934b5732ac55d26311a706c9c2bde9940")
2584* a legacy numeric change ID ("4247")
2585
John Spurlock5e402f02013-03-24 11:35:04 -04002586[[comment-id]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002587=== \{comment-id\}
John Spurlock5e402f02013-03-24 11:35:04 -04002588UUID of a published comment.
2589
Edwin Kempin3ca57192013-02-27 07:44:01 +01002590[[draft-id]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002591=== \{draft-id\}
Edwin Kempin3ca57192013-02-27 07:44:01 +01002592UUID of a draft comment.
Edwin Kempinff9e6e32013-02-21 13:07:11 +01002593
Edwin Kempinbea55a52013-05-14 13:53:39 +02002594[[file-id]]
2595\{file-id\}
Edwin Kempin9300e4c2013-02-27 08:42:06 +01002596~~~~~~~~~~~~
Edwin Kempinbea55a52013-05-14 13:53:39 +02002597The path of the file.
Edwin Kempin9300e4c2013-02-27 08:42:06 +01002598
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01002599[[revision-id]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002600=== \{revision-id\}
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01002601Identifier that uniquely identifies one revision of a change.
2602
2603This can be:
2604
Shawn Pearce9c0722a2013-03-02 15:30:31 -08002605* the literal `current` to name the current patch set/revision
Edwin Kempinda6e5fa2013-02-25 14:48:12 +01002606* a commit ID ("674ac754f91e64a0efb8087e59a176484bd534d1")
2607* an abbreviated commit ID that uniquely identifies one revision of the
2608 change ("674ac754"), at least 4 digits are required
2609* a legacy numeric patch number ("1" for first patch set of the change)
2610
Edwin Kempine3446292013-02-19 16:40:14 +01002611[[json-entities]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002612== JSON Entities
Edwin Kempine3446292013-02-19 16:40:14 +01002613
Edwin Kempined5364b2013-02-22 10:39:33 +01002614[[abandon-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002615=== AbandonInput
Edwin Kempined5364b2013-02-22 10:39:33 +01002616The `AbandonInput` entity contains information for abandoning a change.
2617
2618[options="header",width="50%",cols="1,^1,5"]
2619|===========================
2620|Field Name ||Description
2621|`message` |optional|
2622Message to be added as review comment to the change when abandoning the
2623change.
2624|===========================
2625
Shawn Pearcedc4a9b22013-07-12 10:54:38 -07002626[[action-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002627=== ActionInfo
Shawn Pearcedc4a9b22013-07-12 10:54:38 -07002628The `ActionInfo` entity describes a REST API call the client can
2629make to manipulate a resource. These are frequently implemented by
2630plugins and may be discovered at runtime.
2631
2632[options="header",width="50%",cols="1,^1,5"]
2633|====================================
2634|Field Name ||Description
2635|`method` |optional|
2636HTTP method to use with the action. Most actions use `POST`, `PUT`
2637or `DELETE` to cause state changes.
2638|`label` |optional|
2639Short title to display to a user describing the action. In the
2640Gerrit web interface the label is used as the text on the button
2641presented in the UI.
2642|`title` |optional|
2643Longer text to display describing the action. In a web UI this
2644should be the title attribute of the element, displaying when
2645the user hovers the mouse.
2646|`enabled` |optional|
2647If true the action is permitted at this time and the caller is
2648likely allowed to execute it. This may change if state is updated
2649at the server or permissions are modified. Not present if false.
Shawn Pearcedc4a9b22013-07-12 10:54:38 -07002650|====================================
2651
Edwin Kempin392328e2013-02-25 12:50:03 +01002652[[add-reviewer-result]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002653=== AddReviewerResult
Edwin Kempin392328e2013-02-25 12:50:03 +01002654The `AddReviewerResult` entity describes the result of adding a
2655reviewer to a change.
2656
2657[options="header",width="50%",cols="1,^1,5"]
2658|===========================
2659|Field Name ||Description
2660|`reviewers` |optional|
2661The newly added reviewers as a list of link:#reviewer-info[
2662ReviewerInfo] entities.
2663|`error` |optional|
2664Error message explaining why the reviewer could not be added. +
2665If a group was specified in the input and an error is returned, it
2666means that none of the members were added as reviewer.
2667|`confirm` |`false` if not set|
2668Whether adding the reviewer requires confirmation.
2669|===========================
2670
Edwin Kempine3446292013-02-19 16:40:14 +01002671[[approval-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002672=== ApprovalInfo
Edwin Kempine3446292013-02-19 16:40:14 +01002673The `ApprovalInfo` entity contains information about an approval from a
2674user for a label on a change.
2675
Edwin Kempin963dfd02013-02-27 12:39:32 +01002676`ApprovalInfo` has the same fields as
2677link:rest-api-accounts.html#account-info[AccountInfo].
Edwin Kempine3446292013-02-19 16:40:14 +01002678In addition `ApprovalInfo` has the following fields:
2679
2680[options="header",width="50%",cols="1,^1,5"]
2681|===========================
2682|Field Name ||Description
Dave Borowitza30db912013-03-22 14:20:33 -07002683|`value` |optional|
2684The vote that the user has given for the label. If present and zero, the
2685user is permitted to vote on the label. If absent, the user is not
2686permitted to vote on that label.
Gustaf Lundh2e07d5022013-05-08 17:07:42 +01002687|`date` |optional|
2688The time and date describing when the approval was made.
Edwin Kempine3446292013-02-19 16:40:14 +01002689|===========================
2690
David Ostrovsky8c5f80a2013-09-02 20:22:39 +02002691[[group-base-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002692=== GroupBaseInfo
David Ostrovsky8c5f80a2013-09-02 20:22:39 +02002693The `GroupBaseInfo` entity contains base information about the group.
2694
2695[options="header",width="50%",cols="1,6"]
2696|==========================
2697|Field Name |Description
2698|`id` |The id of the group.
2699|`name` |The name of the group.
2700|==========================
2701
Edwin Kempine3446292013-02-19 16:40:14 +01002702[[change-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002703=== ChangeInfo
Edwin Kempine3446292013-02-19 16:40:14 +01002704The `ChangeInfo` entity contains information about a change.
2705
2706[options="header",width="50%",cols="1,^1,5"]
2707|==================================
2708|Field Name ||Description
2709|`kind` ||`gerritcodereview#change`
2710|`id` ||
2711The ID of the change in the format "'<project>\~<branch>~<Change-Id>'",
John Spurlockd25fad12013-03-09 11:48:49 -05002712where 'project', 'branch' and 'Change-Id' are URL encoded. For 'branch' the
Edwin Kempine3446292013-02-19 16:40:14 +01002713`refs/heads/` prefix is omitted.
2714|`project` ||The name of the project.
2715|`branch` ||
2716The name of the target branch. +
2717The `refs/heads/` prefix is omitted.
Edwin Kempincd6c01a12013-02-21 14:58:52 +01002718|`topic` |optional|The topic to which this change belongs.
Edwin Kempine3446292013-02-19 16:40:14 +01002719|`change_id` ||The Change-Id of the change.
2720|`subject` ||
2721The subject of the change (header line of the commit message).
2722|`status` ||
2723The status of the change (`NEW`, `SUBMITTED`, `MERGED`, `ABANDONED`,
2724`DRAFT`).
2725|`created` ||
2726The link:rest-api.html#timestamp[timestamp] of when the change was
2727created.
2728|`updated` ||
2729The link:rest-api.html#timestamp[timestamp] of when the change was last
2730updated.
2731|`starred` |not set if `false`|
2732Whether the calling user has starred this change.
2733|`reviewed` |not set if `false`|
2734Whether the change was reviewed by the calling user.
Shawn Pearce414c5ff2013-09-06 21:51:02 -07002735Only set if link:#reviewed[reviewed] is requested.
Edwin Kempinbaf70e12013-02-27 10:36:13 +01002736|`mergeable` |optional|
2737Whether the change is mergeable. +
John Spurlockd25fad12013-03-09 11:48:49 -05002738Not set for merged changes.
Edwin Kempina6b6eaf2013-11-23 11:05:58 +01002739|`insertions` ||
2740Number of inserted lines.
2741|`deletions` ||
2742Number of deleted lines.
Edwin Kempine3446292013-02-19 16:40:14 +01002743|`_sortkey` ||The sortkey of the change.
2744|`_number` ||The legacy numeric ID of the change.
2745|`owner` ||
Edwin Kempin963dfd02013-02-27 12:39:32 +01002746The owner of the change as an link:rest-api-accounts.html#account-info[
2747AccountInfo] entity.
Shawn Pearce12e51592013-07-13 22:08:40 -07002748|`actions` |optional|
2749Actions the caller might be able to perform on this revision. The
2750information is a map of view name to link:#action-info[ActionInfo]
2751entities.
Edwin Kempine3446292013-02-19 16:40:14 +01002752|`labels` |optional|
2753The labels of the change as a map that maps the label names to
2754link:#label-info[LabelInfo] entries. +
2755Only set if link:#labels[labels] or link:#detailed-labels[detailed
2756labels] are requested.
2757|`permitted_labels` |optional|
2758A map of the permitted labels that maps a label name to the list of
2759values that are allowed for that label. +
2760Only set if link:#detailed-labels[detailed labels] are requested.
2761|`removable_reviewers`|optional|
2762The reviewers that can be removed by the calling user as a list of
Edwin Kempin963dfd02013-02-27 12:39:32 +01002763link:rest-api-accounts.html#account-info[AccountInfo] entities. +
Edwin Kempine3446292013-02-19 16:40:14 +01002764Only set if link:#detailed-labels[detailed labels] are requested.
John Spurlock74a70cc2013-03-23 16:41:50 -04002765|`messages`|optional|
Shawn Pearce414c5ff2013-09-06 21:51:02 -07002766Messages associated with the change as a list of
John Spurlock74a70cc2013-03-23 16:41:50 -04002767link:#change-message-info[ChangeMessageInfo] entities. +
2768Only set if link:#messages[messages] are requested.
Edwin Kempine3446292013-02-19 16:40:14 +01002769|`current_revision` |optional|
2770The commit ID of the current patch set of this change. +
2771Only set if link:#current-revision[the current revision] is requested
2772or if link:#all-revisions[all revisions] are requested.
2773|`revisions` |optional|
John Spurlockd25fad12013-03-09 11:48:49 -05002774All patch sets of this change as a map that maps the commit ID of the
Edwin Kempine3446292013-02-19 16:40:14 +01002775patch set to a link:#revision-info[RevisionInfo] entity. +
Dave Borowitz0adf2702014-01-22 10:41:52 -08002776Only set if link:#current-revision[the current revision] is requested
2777(in which case it will only contain a key for the current revision) or
2778if link:#all-revisions[all revisions] are requested.
Edwin Kempine3446292013-02-19 16:40:14 +01002779|`_more_changes` |optional, not set if `false`|
2780Whether the query would deliver more results if not limited. +
2781Only set on either the last or the first change that is returned.
2782|==================================
2783
John Spurlock74a70cc2013-03-23 16:41:50 -04002784[[change-message-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002785=== ChangeMessageInfo
John Spurlock74a70cc2013-03-23 16:41:50 -04002786The `ChangeMessageInfo` entity contains information about a message
2787attached to a change.
2788
2789[options="header",width="50%",cols="1,^1,5"]
2790|==================================
2791|Field Name ||Description
2792|`id` ||The ID of the message.
2793|`author` |optional|
2794Author of the message as an
2795link:rest-api-accounts.html#account-info[AccountInfo] entity. +
2796Unset if written by the Gerrit system.
2797|`date` ||
2798The link:rest-api.html#timestamp[timestamp] this message was posted.
2799|`message` ||The text left by the user.
2800|`_revision_number` |optional|
2801Which patchset (if any) generated this message.
2802|==================================
2803
Gustaf Lundh019fb262012-11-28 14:20:22 +01002804[[cherrypick-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002805=== CherryPickInput
Gustaf Lundh019fb262012-11-28 14:20:22 +01002806The `CherryPickInput` entity contains information for cherry-picking a change to a new branch.
2807
2808[options="header",width="50%",cols="1,6"]
2809|===========================
2810|Field Name |Description
2811|`message` |Commit message for the cherry-picked change
David Ostrovsky9345ebc2014-04-28 23:19:55 +02002812|`destination` |Destination branch
Gustaf Lundh019fb262012-11-28 14:20:22 +01002813|===========================
2814
Edwin Kempincb6724a2013-02-26 16:58:51 +01002815[[comment-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002816=== CommentInfo
John Spurlockd25fad12013-03-09 11:48:49 -05002817The `CommentInfo` entity contains information about an inline comment.
Edwin Kempincb6724a2013-02-26 16:58:51 +01002818
2819[options="header",width="50%",cols="1,^1,5"]
2820|===========================
2821|Field Name ||Description
2822|`kind` ||`gerritcodereview#comment`
John Spurlock5e402f02013-03-24 11:35:04 -04002823|`id` ||The URL encoded UUID of the comment.
Edwin Kempincb6724a2013-02-26 16:58:51 +01002824|`path` |optional|
2825The path of the file for which the inline comment was done. +
2826Not set if returned in a map where the key is the file path.
2827|`side` |optional|
2828The side on which the comment was added. +
2829Allowed values are `REVISION` and `PARENT`. +
2830If not set, the default is `REVISION`.
2831|`line` |optional|
2832The number of the line for which the comment was done. +
Michael Zhou596c7682013-08-25 05:43:34 -04002833If range is set, this equals the end line of the range. +
2834If neither line nor range is set, it's a file comment.
2835|`range` |optional|
2836The range of the comment as a link:rest-api.html#comment-range[CommentRange]
2837entity.
Edwin Kempincb6724a2013-02-26 16:58:51 +01002838|`in_reply_to` |optional|
2839The URL encoded UUID of the comment to which this comment is a reply.
2840|`message` |optional|The comment message.
2841|`updated` ||
2842The link:rest-api.html#timestamp[timestamp] of when this comment was
2843written.
John Spurlock5e402f02013-03-24 11:35:04 -04002844|`author` |optional|
David Pursehousec633a572013-08-26 14:01:59 +09002845The author of the message as an
John Spurlock5e402f02013-03-24 11:35:04 -04002846link:rest-api-accounts.html#account-info[AccountInfo] entity. +
2847Unset for draft comments, assumed to be the calling user.
Edwin Kempincb6724a2013-02-26 16:58:51 +01002848|===========================
2849
Edwin Kempin67498de2013-02-25 16:15:34 +01002850[[comment-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002851=== CommentInput
Edwin Kempin67498de2013-02-25 16:15:34 +01002852The `CommitInput` entity contains information for creating an inline
2853comment.
2854
2855[options="header",width="50%",cols="1,^1,5"]
2856|===========================
2857|Field Name ||Description
Edwin Kempin7faf41e2013-02-27 08:17:02 +01002858|`kind` |optional|
2859Must be `gerritcodereview#comment` if provided.
Edwin Kempin67498de2013-02-25 16:15:34 +01002860|`id` |optional|
Edwin Kempinc09826d72013-02-26 16:10:39 +01002861The URL encoded UUID of the comment if an existing draft comment should
2862be updated.
Edwin Kempin7faf41e2013-02-27 08:17:02 +01002863|`path` |optional|
2864The path of the file for which the inline comment should be added. +
2865Doesn't need to be set if contained in a map where the key is the file
2866path.
Edwin Kempin67498de2013-02-25 16:15:34 +01002867|`side` |optional|
2868The side on which the comment should be added. +
2869Allowed values are `REVISION` and `PARENT`. +
2870If not set, the default is `REVISION`.
2871|`line` |optional|
2872The number of the line for which the comment should be added. +
2873`0` if it is a file comment. +
Michael Zhou596c7682013-08-25 05:43:34 -04002874If neither line nor range is set, a file comment is added. +
2875If range is set, this should equal the end line of the range.
2876|`range` |optional|
2877The range of the comment as a link:rest-api.html#comment-range[CommentRange]
2878entity.
Edwin Kempin67498de2013-02-25 16:15:34 +01002879|`in_reply_to` |optional|
2880The URL encoded UUID of the comment to which this comment is a reply.
Edwin Kempin7faf41e2013-02-27 08:17:02 +01002881|`updated` |optional|
2882The link:rest-api.html#timestamp[timestamp] of this comment. +
2883Accepted but ignored.
Edwin Kempin67498de2013-02-25 16:15:34 +01002884|`message` |optional|
2885The comment message. +
2886If not set and an existing draft comment is updated, the existing draft
2887comment is deleted.
2888|===========================
2889
Michael Zhou596c7682013-08-25 05:43:34 -04002890[[comment-range]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002891=== CommentRange
Michael Zhou596c7682013-08-25 05:43:34 -04002892The `CommentRange` entity describes the range of an inline comment.
2893
2894[options="header",width="50%",cols="1,^1,5"]
2895|===========================
2896|Field Name ||Description
2897|`start_line` ||The start line number of the range.
2898|`start_character` ||The character position in the start line.
2899|`end_line` ||The end line number of the range.
2900|`end_character` ||The character position in the end line.
2901|===========================
2902
Edwin Kempine3446292013-02-19 16:40:14 +01002903[[commit-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002904=== CommitInfo
Edwin Kempine3446292013-02-19 16:40:14 +01002905The `CommitInfo` entity contains information about a commit.
2906
2907[options="header",width="50%",cols="1,6"]
2908|==========================
2909|Field Name |Description
2910|`commit` |The commit ID.
Edwin Kempinb89b0c82014-04-09 12:51:18 +02002911|`parents` |
Edwin Kempine3446292013-02-19 16:40:14 +01002912The parent commits of this commit as a list of
Edwin Kempincecf90a2014-04-09 14:58:35 +02002913link:#commit-info[CommitInfo] entities. In each parent
2914only the `commit` and `subject` fields are populated.
Edwin Kempine3446292013-02-19 16:40:14 +01002915|`author` |The author of the commit as a
2916link:#git-person-info[GitPersonInfo] entity.
2917|`committer` |The committer of the commit as a
2918link:#git-person-info[GitPersonInfo] entity.
2919|`subject` |
2920The subject of the commit (header line of the commit message).
2921|`message` |The commit message.
2922|==========================
2923
David Pursehouse882aef22013-06-05 10:56:37 +09002924[[diff-content]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002925=== DiffContent
David Pursehouse882aef22013-06-05 10:56:37 +09002926The `DiffContent` entity contains information about the content differences
2927in a file.
2928
2929[options="header",width="50%",cols="1,^1,5"]
2930|==========================
2931|Field Name ||Description
2932|`a` |optional|Content only in the file on side A (deleted in B).
2933|`b` |optional|Content only in the file on side B (added in B).
2934|`ab` |optional|Content in the file on both sides (unchanged).
2935|`edit_a` |only present during a replace, i.e. both `a` and `b` are present|
2936Text sections deleted from side A as a
2937link:#diff-intraline-info[DiffIntralineInfo] entity.
2938|`edit_b` |only present during a replace, i.e. both `a` and `b` are present|
2939Text sections inserted in side B as a
2940link:#diff-intraline-info[DiffIntralineInfo] entity.
2941|`skip` |optional|count of lines skipped on both sides when the file is
2942too large to include all common lines.
Shawn Pearce425a2be2014-01-02 16:00:58 -08002943|`common` |optional|Set to `true` if the region is common according
2944to the requested ignore-whitespace parameter, but a and b contain
2945differing amounts of whitespace. When present and true a and b are
2946used instead of ab.
David Pursehouse882aef22013-06-05 10:56:37 +09002947|==========================
2948
2949[[diff-file-meta-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002950=== DiffFileMetaInfo
David Pursehouse882aef22013-06-05 10:56:37 +09002951The `DiffFileMetaInfo` entity contains meta information about a file diff.
2952
2953[options="header",width="50%",cols="1,6"]
2954|==========================
2955|Field Name |Description
2956|`name` |The name of the file.
2957|`content_type`|The content type of the file.
Shawn Pearced62a6a92013-12-05 12:45:32 -08002958|`lines` |The total number of lines in the file.
David Pursehouse882aef22013-06-05 10:56:37 +09002959|==========================
2960
2961[[diff-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002962=== DiffInfo
David Pursehouse882aef22013-06-05 10:56:37 +09002963The `DiffInfo` entity contains information about the diff of a file
2964in a revision.
2965
2966[options="header",width="50%",cols="1,^1,5"]
2967|==========================
2968|Field Name ||Description
2969|`meta_a` |not present when the file is added|
2970Meta information about the file on side A as a
2971link:#diff-file-meta-info[DiffFileMetaInfo] entity.
2972|`meta_b` |not present when the file is deleted|
2973Meta information about the file on side B as a
2974link:#diff-file-meta-info[DiffFileMetaInfo] entity.
2975|`change_type` ||The type of change (`ADDED`, `MODIFIED`, `DELETED`, `RENAMED`
2976`COPIED`, `REWRITE`).
2977|`intraline_status`|only set when the `intraline` parameter was specified in the request|
2978Intraline status (`OK`, `ERROR`, `TIMEOUT`).
2979|`diff_header` ||A list of strings representing the patch set diff header.
2980|`content` ||The content differences in the file as a list of
2981link:#diff-content[DiffContent] entities.
2982|==========================
2983
2984[[diff-intraline-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002985=== DiffIntralineInfo
David Pursehouse882aef22013-06-05 10:56:37 +09002986The `DiffIntralineInfo` entity contains information about intraline edits in a
2987file.
2988
David Pursehouse31203f52013-06-08 17:05:45 +09002989The information consists of a list of `<skip length, mark length>` pairs, where
2990the skip length is the number of characters between the end of the previous edit
2991and the start of this edit, and the mark length is the number of edited characters
2992following the skip. The start of the edits is from the beginning of the related
2993diff content lines.
David Pursehouse882aef22013-06-05 10:56:37 +09002994
David Pursehouse31203f52013-06-08 17:05:45 +09002995Note that the implied newline character at the end of each line is included in
Colby Ranger4c292752013-06-07 11:11:00 -07002996the length calculation, and thus it is possible for the edits to span newlines.
David Pursehouse882aef22013-06-05 10:56:37 +09002997
Edwin Kempine3446292013-02-19 16:40:14 +01002998[[fetch-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08002999=== FetchInfo
Edwin Kempine3446292013-02-19 16:40:14 +01003000The `FetchInfo` entity contains information about how to fetch a patch
3001set via a certain protocol.
3002
Edwin Kempinea621482013-10-16 12:58:24 +02003003[options="header",width="50%",cols="1,^1,5"]
Edwin Kempine3446292013-02-19 16:40:14 +01003004|==========================
Edwin Kempinea621482013-10-16 12:58:24 +02003005|Field Name ||Description
3006|`url` ||The URL of the project.
3007|`ref` ||The ref of the patch set.
3008|`commands` |optional|
3009The download commands for this patch set as a map that maps the command
3010names to the commands. +
3011Only set if link:#download_commands[download commands] are requested.
Edwin Kempine3446292013-02-19 16:40:14 +01003012|==========================
3013
3014[[file-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003015=== FileInfo
Edwin Kempine3446292013-02-19 16:40:14 +01003016The `FileInfo` entity contains information about a file in a patch set.
3017
3018[options="header",width="50%",cols="1,^1,5"]
3019|=============================
3020|Field Name ||Description
3021|`status` |optional|
3022The status of the file ("`A`"=Added, "`D`"=Deleted, "`R`"=Renamed,
3023"`C`"=Copied, "`W`"=Rewritten). +
3024Not set if the file was Modified ("`M`").
3025|`binary` |not set if `false`|Whether the file is binary.
3026|`old_path` |optional|
3027The old file path. +
John Spurlockd25fad12013-03-09 11:48:49 -05003028Only set if the file was renamed or copied.
Edwin Kempine3446292013-02-19 16:40:14 +01003029|`lines_inserted`|optional|
3030Number of inserted lines. +
3031Not set for binary files or if no lines were inserted.
3032|`lines_deleted` |optional|
3033Number of deleted lines. +
3034Not set for binary files or if no lines were deleted.
3035|=============================
3036
3037[[git-person-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003038=== GitPersonInfo
Edwin Kempine3446292013-02-19 16:40:14 +01003039The `GitPersonInfo` entity contains information about the
3040author/committer of a commit.
3041
3042[options="header",width="50%",cols="1,6"]
3043|==========================
3044|Field Name |Description
3045|`name` |The name of the author/committer.
3046|`email` |The email address of the author/committer.
3047|`date` |The link:rest-api.html#timestamp[timestamp] of when
3048this identity was constructed.
3049|`tz` |The timezone offset from UTC of when this identity was
3050constructed.
3051|==========================
3052
3053[[label-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003054=== LabelInfo
Dave Borowitz88159512013-06-14 14:21:50 -07003055The `LabelInfo` entity contains information about a label on a change, always
3056corresponding to the current patch set.
Edwin Kempine3446292013-02-19 16:40:14 +01003057
Dave Borowitz88159512013-06-14 14:21:50 -07003058There are two options that control the contents of `LabelInfo`:
Dave Borowitz7d6aa012013-06-14 16:53:48 -07003059link:#labels[`LABELS`] and link:#detailed-labels[`DETAILED_LABELS`].
Dave Borowitz88159512013-06-14 14:21:50 -07003060
3061* For a quick summary of the state of labels, use `LABELS`.
3062* For detailed information about labels, including exact numeric votes for all
3063 users and the allowed range of votes for the current user, use `DETAILED_LABELS`.
3064
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003065==== Common fields
Edwin Kempine3446292013-02-19 16:40:14 +01003066[options="header",width="50%",cols="1,^1,5"]
3067|===========================
3068|Field Name ||Description
Edwin Kempine3446292013-02-19 16:40:14 +01003069|`optional` |not set if `false`|
3070Whether the label is optional. Optional means the label may be set, but
3071it's neither necessary for submission nor does it block submission if
3072set.
Dave Borowitz88159512013-06-14 14:21:50 -07003073|===========================
3074
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003075==== Fields set by `LABELS`
Dave Borowitz88159512013-06-14 14:21:50 -07003076[options="header",width="50%",cols="1,^1,5"]
3077|===========================
3078|Field Name ||Description
3079|`approved` |optional|One user who approved this label on the change
3080(voted the maximum value) as an
3081link:rest-api-accounts.html#account-info[AccountInfo] entity.
3082|`rejected` |optional|One user who rejected this label on the change
3083(voted the minimum value) as an
3084link:rest-api-accounts.html#account-info[AccountInfo] entity.
3085|`recommended` |optional|One user who recommended this label on the
3086change (voted positively, but not the maximum value) as an
3087link:rest-api-accounts.html#account-info[AccountInfo] entity.
3088|`disliked` |optional|One user who disliked this label on the change
3089(voted negatively, but not the minimum value) as an
3090link:rest-api-accounts.html#account-info[AccountInfo] entity.
David Ostrovsky5292fd72014-02-27 21:56:35 +01003091|`blocking` |optional|If `true`, the label blocks submit operation.
3092If not set, the default is false.
Dave Borowitz88159512013-06-14 14:21:50 -07003093|`value` |optional|The voting value of the user who
3094recommended/disliked this label on the change if it is not
3095"`+1`"/"`-1`".
Khai Do4c91b002014-04-06 23:27:43 -07003096|`default_value`|optional|The default voting value for the label.
3097This value may be outside the range specified in permitted_labels.
Dave Borowitz88159512013-06-14 14:21:50 -07003098|===========================
3099
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003100==== Fields set by `DETAILED_LABELS`
Dave Borowitz88159512013-06-14 14:21:50 -07003101[options="header",width="50%",cols="1,^1,5"]
3102|===========================
3103|Field Name ||Description
Edwin Kempine3446292013-02-19 16:40:14 +01003104|`all` |optional|List of all approvals for this label as a list
Dave Borowitz88159512013-06-14 14:21:50 -07003105of link:#approval-info[ApprovalInfo] entities.
Edwin Kempine3446292013-02-19 16:40:14 +01003106|`values` |optional|A map of all values that are allowed for this
3107label. The map maps the values ("`-2`", "`-1`", " `0`", "`+1`", "`+2`")
Dave Borowitz88159512013-06-14 14:21:50 -07003108to the value descriptions.
Edwin Kempine3446292013-02-19 16:40:14 +01003109|===========================
3110
Dave Borowitz88159512013-06-14 14:21:50 -07003111
Edwin Kempined5364b2013-02-22 10:39:33 +01003112[[restore-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003113=== RestoreInput
Edwin Kempined5364b2013-02-22 10:39:33 +01003114The `RestoreInput` entity contains information for restoring a change.
3115
3116[options="header",width="50%",cols="1,^1,5"]
3117|===========================
3118|Field Name ||Description
3119|`message` |optional|
3120Message to be added as review comment to the change when restoring the
3121change.
3122|===========================
3123
Edwin Kempind2ec4152013-02-22 12:17:19 +01003124[[revert-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003125=== RevertInput
Edwin Kempind2ec4152013-02-22 12:17:19 +01003126The `RevertInput` entity contains information for reverting a change.
3127
3128[options="header",width="50%",cols="1,^1,5"]
3129|===========================
3130|Field Name ||Description
3131|`message` |optional|
3132Message to be added as review comment to the change when reverting the
3133change.
3134|===========================
3135
Edwin Kempin67498de2013-02-25 16:15:34 +01003136[[review-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003137=== ReviewInfo
Edwin Kempin67498de2013-02-25 16:15:34 +01003138The `ReviewInfo` entity contains information about a review.
3139
3140[options="header",width="50%",cols="1,6"]
3141|===========================
3142|Field Name |Description
3143|`labels` |
3144The labels of the review as a map that maps the label names to the
3145voting values.
3146|===========================
3147
3148[[review-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003149=== ReviewInput
Edwin Kempin67498de2013-02-25 16:15:34 +01003150The `ReviewInput` entity contains information for adding a review to a
3151revision.
3152
3153[options="header",width="50%",cols="1,^1,5"]
3154|============================
3155|Field Name ||Description
3156|`message` |optional|
3157The message to be added as review comment.
3158|`labels` |optional|
3159The votes that should be added to the revision as a map that maps the
3160label names to the voting values.
3161|`comments` |optional|
3162The comments that should be added as a map that maps a file path to a
3163list of link:#comment-input[CommentInput] entities.
3164|`strict_labels`|`true` if not set|
John Spurlockd25fad12013-03-09 11:48:49 -05003165Whether all labels are required to be within the user's permitted ranges
Edwin Kempin67498de2013-02-25 16:15:34 +01003166based on access controls. +
3167If `true`, attempting to use a label not granted to the user will fail
3168the entire modify operation early. +
3169If `false`, the operation will execute anyway, but the proposed labels
3170will be modified to be the "best" value allowed by the access controls.
3171|`drafts` |optional|
3172Draft handling that defines how draft comments are handled that are
3173already in the database but that were not also described in this
3174input. +
3175Allowed values are `DELETE`, `PUBLISH` and `KEEP`. +
3176If not set, the default is `DELETE`.
3177|`notify` |optional|
3178Notify handling that defines to whom email notifications should be sent
3179after the review is stored. +
3180Allowed values are `NONE`, `OWNER`, `OWNER_REVIEWERS` and `ALL`. +
3181If not set, the default is `ALL`.
Shawn Pearce9d783122013-06-11 18:18:03 -07003182|`on_behalf_of`|optional|
3183link:rest-api-accounts.html#account-id[\{account-id\}] the review
3184should be posted on behalf of. To use this option the caller must
3185have been granted `labelAs-NAME` permission for all keys of labels.
Edwin Kempin67498de2013-02-25 16:15:34 +01003186|============================
3187
Edwin Kempin1dbe19e2013-02-22 16:18:58 +01003188[[reviewer-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003189=== ReviewerInfo
Edwin Kempin1dbe19e2013-02-22 16:18:58 +01003190The `ReviewerInfo` entity contains information about a reviewer and its
3191votes on a change.
3192
Edwin Kempin963dfd02013-02-27 12:39:32 +01003193`ReviewerInfo` has the same fields as
3194link:rest-api-accounts.html#account-info[AccountInfo] and includes
3195link:#detailed-accounts[detailed account information].
Edwin Kempin1dbe19e2013-02-22 16:18:58 +01003196In addition `ReviewerInfo` has the following fields:
3197
3198[options="header",width="50%",cols="1,6"]
3199|==========================
3200|Field Name |Description
3201|`kind` |`gerritcodereview#reviewer`
3202|`approvals` |
3203The approvals of the reviewer as a map that maps the label names to the
3204approval values ("`-2`", "`-1`", " `0`", "`+1`", "`+2`").
3205|==========================
3206
Edwin Kempin392328e2013-02-25 12:50:03 +01003207[[reviewer-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003208=== ReviewerInput
Edwin Kempin392328e2013-02-25 12:50:03 +01003209The `ReviewerInput` entity contains information for adding a reviewer
3210to a change.
3211
3212[options="header",width="50%",cols="1,^1,5"]
3213|===========================
3214|Field Name ||Description
3215|`reviewer` ||
3216The link:rest-api-accounts.html#account-id[ID] of one account that
3217should be added as reviewer or the link:rest-api-groups.html#group-id[
3218ID] of one group for which all members should be added as reviewers. +
3219If an ID identifies both an account and a group, only the account is
3220added as reviewer to the change.
3221|`confirmed` |optional|
3222Whether adding the reviewer is confirmed. +
3223The Gerrit server may be configured to
3224link:config-gerrit.html#addreviewer.maxWithoutConfirmation[require a
3225confirmation] when adding a group as reviewer that has many members.
3226|===========================
3227
Edwin Kempine3446292013-02-19 16:40:14 +01003228[[revision-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003229=== RevisionInfo
Edwin Kempine3446292013-02-19 16:40:14 +01003230The `RevisionInfo` entity contains information about a patch set.
3231
3232[options="header",width="50%",cols="1,^1,5"]
3233|===========================
3234|Field Name ||Description
3235|`draft` |not set if `false`|Whether the patch set is a draft.
David Ostrovsky17d0d332013-09-30 21:36:09 +02003236|`has_draft_comments` |not set if `false`|Whether the patch
3237set has one or more draft comments by the calling user. Only set if
3238link:#draft_comments[draft comments] is requested.
Edwin Kempine3446292013-02-19 16:40:14 +01003239|`_number` ||The patch set number.
3240|`fetch` ||
3241Information about how to fetch this patch set. The fetch information is
3242provided as a map that maps the protocol name ("`git`", "`http`",
3243"`ssh`") to link:#fetch-info[FetchInfo] entities.
Shawn Pearce12e51592013-07-13 22:08:40 -07003244|`commit` |optional|The commit of the patch set as
Edwin Kempine3446292013-02-19 16:40:14 +01003245link:#commit-info[CommitInfo] entity.
Shawn Pearce12e51592013-07-13 22:08:40 -07003246|`files` |optional|
Edwin Kempine3446292013-02-19 16:40:14 +01003247The files of the patch set as a map that maps the file names to
3248link:#file-info[FileInfo] entities.
Shawn Pearce12e51592013-07-13 22:08:40 -07003249|`actions` |optional|
Shawn Pearcedc4a9b22013-07-12 10:54:38 -07003250Actions the caller might be able to perform on this revision. The
3251information is a map of view name to link:#action-info[ActionInfo]
3252entities.
Edwin Kempin4eac9642014-04-11 16:07:27 +02003253|'web_links' |optional|
Edwin Kempinbd885ff2014-04-11 16:11:56 +02003254Links to the patch set in external sites as a list of
3255link:#web-link-info[WebLinkInfo] entities.
Edwin Kempine3446292013-02-19 16:40:14 +01003256|===========================
3257
Shawn Pearceb1f730b2013-03-04 07:54:09 -08003258[[rule-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003259=== RuleInput
Shawn Pearceb1f730b2013-03-04 07:54:09 -08003260The `RuleInput` entity contains information to test a Prolog rule.
3261
3262[options="header",width="50%",cols="1,^1,5"]
3263|===========================
3264|Field Name ||Description
3265|`rule`||
3266Prolog code to execute instead of the code in `refs/meta/config`.
3267|`filters`|`RUN` if not set|
3268When `RUN` filter rules in the parent projects are called to
3269post-process the results of the project specific rule. This
3270behavior matches how the rule will execute if installed. +
3271If `SKIP` the parent filters are not called, allowing the test
3272to return results from the input rule.
3273|===========================
3274
David Ostrovsky8c5f80a2013-09-02 20:22:39 +02003275[[suggested-reviewer-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003276=== SuggestedReviewerInfo
David Ostrovsky8c5f80a2013-09-02 20:22:39 +02003277The `SuggestedReviewerInfo` entity contains information about a reviewer
3278that can be added to a change (an account or a group).
3279
3280`SuggestedReviewerInfo` has either the `account` field that contains
3281the link:rest-api-accounts.html#account-info[AccountInfo] entity, or
3282the `group` field that contains the
3283link:rest-api-changes.html#group-base-info[GroupBaseInfo] entity.
3284
Edwin Kempin14b58112013-02-26 16:30:19 +01003285[[submit-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003286=== SubmitInfo
Edwin Kempin14b58112013-02-26 16:30:19 +01003287The `SubmitInfo` entity contains information about the change status
3288after submitting.
3289
3290[options="header",width="50%",cols="1,6"]
3291|==========================
3292|Field Name |Description
3293|`status` |
3294The status of the change after submitting, can be `MERGED` or
3295`SUBMITTED`. +
3296If `wait_for_merge` in the link:#submit-input[SubmitInput] was set to
3297`false` the returned status is `SUBMITTED` and the caller can't know
3298whether the change could be merged successfully.
David Ostrovsky868e3412014-01-30 19:50:57 +01003299|`on_behalf_of`|optional|
3300The link:rest-api-accounts.html#account-id[\{account-id\}] of the user on
3301whose behalf the action should be done. To use this option the caller must
David Pursehouse22bd6f92014-02-20 21:11:01 +09003302have been granted both `Submit` and `Submit (On Behalf Of)` permissions.
3303The user named by `on_behalf_of` does not need to be granted the `Submit`
3304permission. This feature is aimed for CI solutions: the CI account can be
3305granted both permssions, so individual users don't need `Submit` permission
3306themselves. Still the changes can be submited on behalf of real users and
3307not with the identity of the CI account.
Edwin Kempin14b58112013-02-26 16:30:19 +01003308|==========================
3309
Edwin Kempin0eddba02013-02-22 15:30:12 +01003310[[submit-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003311=== SubmitInput
Edwin Kempin0eddba02013-02-22 15:30:12 +01003312The `SubmitInput` entity contains information for submitting a change.
3313
3314[options="header",width="50%",cols="1,^1,5"]
3315|===========================
3316|Field Name ||Description
3317|`wait_for_merge`|`false` if not set|
3318Whether the request should wait for the merge to complete. +
3319If `false` the request returns immediately after the change has been
3320added to the merge queue and the caller can't know whether the change
3321could be merged successfully.
3322|===========================
3323
Shawn Pearceb1f730b2013-03-04 07:54:09 -08003324[[submit-record]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003325=== SubmitRecord
Shawn Pearceb1f730b2013-03-04 07:54:09 -08003326The `SubmitRecord` entity describes results from a submit_rule.
3327
3328[options="header",width="50%",cols="1,^1,5"]
3329|===========================
3330|Field Name ||Description
3331|`status`||
3332`OK`, the change can be submitted. +
3333`NOT_READY`, additional labels are required before submit. +
3334`CLOSED`, closed changes cannot be submitted. +
3335`RULE_ERROR`, rule code failed with an error.
3336|`ok`|optional|
Edwin Kempinfe29b812013-03-05 14:52:54 +01003337Map of labels that are approved; an
3338link:rest-api-accounts.html#account-info[AccountInfo] identifies the
3339voter chosen by the rule.
Shawn Pearceb1f730b2013-03-04 07:54:09 -08003340|`reject`|optional|
Edwin Kempinfe29b812013-03-05 14:52:54 +01003341Map of labels that are preventing submit;
3342link:rest-api-accounts.html#account-info[AccountInfo] identifies voter.
Shawn Pearceb1f730b2013-03-04 07:54:09 -08003343|`need`|optional|
3344Map of labels that need to be given to submit. The value is
3345currently an empty object.
3346|`may`|optional|
3347Map of labels that can be used, but do not affect submit.
Edwin Kempinfe29b812013-03-05 14:52:54 +01003348link:rest-api-accounts.html#account-info[AccountInfo] identifies voter,
3349if the label has been applied.
Shawn Pearceb1f730b2013-03-04 07:54:09 -08003350|`impossible`|optional|
3351Map of labels that should have been in `need` but cannot be
3352used by any user because of access restrictions. The value
3353is currently an empty object.
3354|`error_message`|optional|
3355When status is RULE_ERROR this message provides some text describing
3356the failure of the rule predicate.
3357|===========================
3358
Edwin Kempin64006bb2013-02-22 08:17:04 +01003359[[topic-input]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003360=== TopicInput
Edwin Kempin64006bb2013-02-22 08:17:04 +01003361The `TopicInput` entity contains information for setting a topic.
3362
3363[options="header",width="50%",cols="1,^1,5"]
3364|===========================
3365|Field Name ||Description
3366|`topic` |optional|The topic. +
3367The topic will be deleted if not set.
Edwin Kempin64006bb2013-02-22 08:17:04 +01003368|===========================
3369
David Ostrovsky83e8aee2013-09-30 22:37:26 +02003370[[included-in-info]]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003371=== IncludedInInfo
David Ostrovsky83e8aee2013-09-30 22:37:26 +02003372The `IncludedInInfo` entity contains information about the branches a
3373change was merged into and tags it was tagged with.
3374
3375[options="header",width="50%",cols="1,6"]
3376|==========================
3377|Field Name |Description
3378|`kind` |`gerritcodereview#includedininfo`
3379|`branches` | The list of branches this change was merged into.
3380Each branch is listed without the 'refs/head/' prefix.
3381|`tags` | The list of tags this change was tagged with.
3382Each tag is listed without the 'refs/tags/' prefix.
3383|==========================
3384
Edwin Kempinbd885ff2014-04-11 16:11:56 +02003385[[web-link-info]]
3386=== WebLinkInfo
3387The `WebLinkInfo` entity describes a link to an external site.
3388
3389[options="header",width="50%",cols="1,6"]
3390|======================
3391|Field Name|Description
3392|`name` |The link name.
3393|`url` |The link URL.
3394|======================
3395
Edwin Kempind0a63922013-01-23 16:32:59 +01003396
3397GERRIT
3398------
3399Part of link:index.html[Gerrit Code Review]
Yuxuan 'fishy' Wang99cb68d2013-10-31 17:26:00 -07003400
3401SEARCHBOX
3402---------