File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,41 @@ be changed by the end user at any time, such as mandatory fields or custom field
216
216
}
217
217
```
218
218
219
+ ### Mark record types as loadable
220
+
221
+ The record types that will be used in a 2-way sync must be marked with ` is_loadable ` .
222
+ This will allow Airdrop to load the record types to the external system.
223
+
224
+ <Note >
225
+ When mapping record loadable record types use the ` --reverse ` flag with the ` chef-cli configure-mappings ` command.
226
+ </Note >
227
+
228
+
229
+ ``` json {6,18}
230
+ {
231
+ "record_types" :{
232
+ "issues_stock_epic" :{
233
+ "name" :" Epic" ,
234
+ "category" :" issue" ,
235
+ "is_loadable" : true
236
+ },
237
+ "issues_custom2321" :{
238
+ "name" :" Incident report" ,
239
+ "category" :" issue"
240
+ },
241
+ "issues_custom2322" :{
242
+ "name" :" Problem" ,
243
+ "category" :" issue"
244
+ },
245
+ "comments" :{
246
+ "name" :" Comment" ,
247
+ "is_loadable" : true
248
+ }
249
+ }
250
+ }
251
+ ```
252
+
253
+
219
254
### Declare fields for each record type
220
255
221
256
Fields' keys must match what is actually found in the extracted data in the artifacts.
You can’t perform that action at this time.
0 commit comments