Defect #38376 ยป project.json
1 |
{
|
---|---|
2 |
"project": { |
3 |
"name": "Example name", |
4 |
"identifier": "test123", |
5 |
"description": "Description of exapmple project", |
6 |
"is_public": false, |
7 |
"inherit_members": false, |
8 |
"enabled_module_names": [ |
9 |
"issue_tracking", |
10 |
"time_tracking" |
11 |
], |
12 |
"tracker_ids": [ |
13 |
1, |
14 |
2, |
15 |
3, |
16 |
5 |
17 |
] |
18 |
}, |
19 |
"issue_custom_field_ids": [ |
20 |
3 |
21 |
], |
22 |
"custom_field_values": [ |
23 |
{ |
24 |
"id": 3, |
25 |
"value": "testtest" |
26 |
} |
27 |
] |
28 |
}
|