File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 10
10
11
11
class DocumentReleaseCheckData (BaseModel ):
12
12
documents : list [Document ] = Field (..., description = "List of documents that will be released." )
13
- parts : list [Part ] = Field (..., description = "List of parts that belong to the documents" )
13
+ attached_parts : list [Part ] = Field (..., description = "List of parts that belong to the documents" )
14
14
dialog_data : DocumentReleaseDialogData
15
15
16
16
Original file line number Diff line number Diff line change 8
8
9
9
10
10
class EngineeringChangeReleaseCheckData (BaseModel ):
11
- documents : list [Document ] = Field (..., description = "List of included documents." )
12
- parts : list [Part ] = Field (..., description = "List of included parts." )
11
+ attached_documents : list [Document ] = Field (..., description = "List of included documents." )
12
+ attached_parts : list [Part ] = Field (..., description = "List of included parts." )
13
13
engineering_changes : list [EngineeringChange ] = Field (
14
14
..., description = "List of engineering changes that will be released."
15
15
)
Original file line number Diff line number Diff line change 10
10
11
11
class PartReleaseCheckData (BaseModel ):
12
12
parts : list [Part ] = Field (..., description = "List of parts that will be released." )
13
- documents : list [Document ] = Field (..., description = "List of documents that are referenced by the parts." )
13
+ attached_documents : list [Document ] = Field (..., description = "List of documents that are referenced by the parts." )
14
14
dialog_data : PartReleaseDialogData
15
15
16
16
Original file line number Diff line number Diff line change 747
747
"title" : " Documents" ,
748
748
"type" : " array"
749
749
},
750
- "parts " : {
750
+ "attached_parts " : {
751
751
"description" : " List of parts that belong to the documents" ,
752
752
"items" : {
753
753
"$ref" : " #/$defs/Part"
754
754
},
755
- "title" : " Parts" ,
755
+ "title" : " Attached Parts" ,
756
756
"type" : " array"
757
757
},
758
758
"dialog_data" : {
761
761
},
762
762
"required" : [
763
763
" documents" ,
764
- " parts " ,
764
+ " attached_parts " ,
765
765
" dialog_data"
766
766
],
767
767
"title" : " DocumentReleaseCheckData" ,
1315
1315
},
1316
1316
"EngineeringChangeReleaseCheckData" : {
1317
1317
"properties" : {
1318
- "documents " : {
1318
+ "attached_documents " : {
1319
1319
"description" : " List of included documents." ,
1320
1320
"items" : {
1321
1321
"$ref" : " #/$defs/Document"
1322
1322
},
1323
- "title" : " Documents" ,
1323
+ "title" : " Attached Documents" ,
1324
1324
"type" : " array"
1325
1325
},
1326
- "parts " : {
1326
+ "attached_parts " : {
1327
1327
"description" : " List of included parts." ,
1328
1328
"items" : {
1329
1329
"$ref" : " #/$defs/Part"
1330
1330
},
1331
- "title" : " Parts" ,
1331
+ "title" : " Attached Parts" ,
1332
1332
"type" : " array"
1333
1333
},
1334
1334
"engineering_changes" : {
1341
1341
}
1342
1342
},
1343
1343
"required" : [
1344
- " documents " ,
1345
- " parts " ,
1344
+ " attached_documents " ,
1345
+ " attached_parts " ,
1346
1346
" engineering_changes"
1347
1347
],
1348
1348
"title" : " EngineeringChangeReleaseCheckData" ,
2472
2472
"title" : " Parts" ,
2473
2473
"type" : " array"
2474
2474
},
2475
- "documents " : {
2475
+ "attached_documents " : {
2476
2476
"description" : " List of documents that are referenced by the parts." ,
2477
2477
"items" : {
2478
2478
"$ref" : " #/$defs/Document"
2479
2479
},
2480
- "title" : " Documents" ,
2480
+ "title" : " Attached Documents" ,
2481
2481
"type" : " array"
2482
2482
},
2483
2483
"dialog_data" : {
2486
2486
},
2487
2487
"required" : [
2488
2488
" parts" ,
2489
- " documents " ,
2489
+ " attached_documents " ,
2490
2490
" dialog_data"
2491
2491
],
2492
2492
"title" : " PartReleaseCheckData" ,
You can’t perform that action at this time.
0 commit comments