rs95 0.2.0

A Rust library implementing the ISA-95 domain models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
#[macro_export]
macro_rules! declare_personnel_models {
    ($id_type:ty) => {
        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PersonnelClass {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<PersonnelClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PersonnelClassProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<PersonnelClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct Person {
            pub id: $id_type,
            pub name: String,
            pub personnel_classes: Vec<$id_type>,
            pub properties: Vec<PersonProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PersonProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_personnel_class_property_id: Option<$id_type>,
            pub nested_properties: Vec<PersonProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct QualificationTestSpecification {
            pub id: $id_type,
            pub name: String,
            pub person_ids: Vec<$id_type>,
            pub personnel_class_ids: Vec<$id_type>,
            pub person_property_ids: Vec<$id_type>,
            pub personnel_class_property_ids: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct QualificationTestResult {
            pub id: $id_type,
            pub qualification_test_specification_id: $id_type,
            pub person_property_ids: Vec<$id_type>,
        }
    };
}

#[macro_export]
macro_rules! declare_equipment_models {
    ($id_type:ty) => {
        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EquipmentClass {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<EquipmentClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EquipmentClassProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<EquipmentClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct Equipment {
            pub id: $id_type,
            pub name: String,
            pub equipment_classes: Vec<$id_type>,
            pub properties: Vec<EquipmentProperty>,
            pub sub_equipment: Vec<Equipment>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EquipmentProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_equipment_class_property_id: Option<$id_type>,
            pub nested_properties: Vec<EquipmentProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EquipmentCapabilityTestSpecification {
            pub id: $id_type,
            pub name: String,
            pub equipment_ids: Vec<$id_type>,
            pub equipment_class_ids: Vec<$id_type>,
            pub equipment_property_ids: Vec<$id_type>,
            pub equipment_class_property_ids: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EquipmentCapabilityTestResult {
            pub id: $id_type,
            pub equipment_capability_test_specification_id: $id_type,
            pub equipment_property_ids: Vec<$id_type>,
        }
    };
}

#[macro_export]
macro_rules! declare_physical_asset_models {
    ($id_type:ty) => {
        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAssetClass {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<PhysicalAssetClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAssetClassProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<PhysicalAssetClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAsset {
            pub id: $id_type,
            pub name: String,
            pub physical_asset_class_id: $id_type,
            pub properties: Vec<PhysicalAssetProperty>,
            pub sub_assets: Vec<PhysicalAsset>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAssetProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_physical_asset_class_property_id: Option<$id_type>,
            pub nested_properties: Vec<PhysicalAssetProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAssetCapabilityTestSpecification {
            pub id: $id_type,
            pub name: String,
            pub physical_asset_ids: Vec<$id_type>,
            pub physical_asset_class_ids: Vec<$id_type>,
            pub physical_asset_property_ids: Vec<$id_type>,
            pub physical_asset_class_property_ids: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAssetCapabilityTestResult {
            pub id: $id_type,
            pub physical_asset_capability_test_specification_id: $id_type,
            pub physical_asset_property_ids: Vec<$id_type>,
        }
    };
}

#[macro_export]
macro_rules! declare_equipment_hierarchy_models {
    ($id_type:ty) => {
        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum WorkCenterType {
            ProcessCell,
            ProductionLine,
            ProductionUnit,
            StorageZone,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum WorkUnitType {
            Unit,
            WorkCell,
            StorageUnit,
            ProductionEquipment,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EnterpriseProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<EnterpriseProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct Enterprise {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<EnterpriseProperty>,
            pub sites: Vec<Site>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct SiteProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<SiteProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct Site {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<SiteProperty>,
            pub areas: Vec<Area>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct AreaProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<AreaProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct Area {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<AreaProperty>,
            pub work_centers: Vec<WorkCenter>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct WorkCenterProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_equipment_class_property_id: Option<$id_type>,
            pub nested_properties: Vec<WorkCenterProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct WorkCenter {
            pub id: $id_type,
            pub name: String,
            pub work_center_type: WorkCenterType,
            pub equipment_classes: Vec<$id_type>,
            pub properties: Vec<WorkCenterProperty>,
            pub work_units: Vec<WorkUnit>,
            pub equipment_capability_test_specification_ids: Vec<$id_type>,
            pub equipment_capability_test_result_ids: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct WorkUnitProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_equipment_class_property_id: Option<$id_type>,
            pub nested_properties: Vec<WorkUnitProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct WorkUnit {
            pub id: $id_type,
            pub name: String,
            pub work_unit_type: WorkUnitType,
            pub equipment_classes: Vec<$id_type>,
            pub properties: Vec<WorkUnitProperty>,
            pub equipment_ids: Vec<$id_type>,
            pub equipment_capability_test_specification_ids: Vec<$id_type>,
            pub equipment_capability_test_result_ids: Vec<$id_type>,
        }
    };
}

#[macro_export]
macro_rules! declare_operational_location_models {
    ($id_type:ty) => {
        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationalLocationClass {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<OperationalLocationClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationalLocationClassProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<OperationalLocationClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationalLocation {
            pub id: $id_type,
            pub name: String,
            pub operational_location_classes: Vec<$id_type>,
            pub properties: Vec<OperationalLocationProperty>,
            pub sub_locations: Vec<OperationalLocation>,
            pub equipment_ids: Vec<$id_type>,
            pub personnel_ids: Vec<$id_type>,
            pub physical_asset_ids: Vec<$id_type>,
            pub material_lot_ids: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationalLocationProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_operational_location_class_property_id: Option<$id_type>,
            pub nested_properties: Vec<OperationalLocationProperty>,
        }
    };
}

#[macro_export]
macro_rules! declare_material_models {
    ($id_type:ty) => {
        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialClass {
            pub id: $id_type,
            pub name: String,
            pub properties: Vec<MaterialClassProperty>,
            pub assembled_from: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialClassProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<MaterialClassProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialDefinition {
            pub id: $id_type,
            pub name: String,
            pub material_classes: Vec<$id_type>,
            pub properties: Vec<MaterialDefinitionProperty>,
            pub assembled_from: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialDefinitionProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_material_class_property_id: Option<$id_type>,
            pub nested_properties: Vec<MaterialDefinitionProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialLot {
            pub id: $id_type,
            pub name: String,
            pub material_definition_id: $id_type,
            pub properties: Vec<MaterialLotProperty>,
            pub assembled_from: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialSublot {
            pub id: $id_type,
            pub name: String,
            pub material_lot_id: $id_type,
            pub properties: Vec<MaterialLotProperty>,
            pub sublots: Vec<MaterialSublot>,
            pub assembled_from: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialLotProperty {
            pub id: $id_type,
            pub name: String,
            pub maps_to_material_definition_property_id: Option<$id_type>,
            pub nested_properties: Vec<MaterialLotProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialTestSpecification {
            pub id: $id_type,
            pub name: String,
            pub material_class_ids: Vec<$id_type>,
            pub material_definition_ids: Vec<$id_type>,
            pub material_lot_ids: Vec<$id_type>,
            pub material_class_property_ids: Vec<$id_type>,
            pub material_definition_property_ids: Vec<$id_type>,
            pub material_lot_property_ids: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct QATestResult {
            pub id: $id_type,
            pub name: String,
            pub material_test_specification_id: $id_type,
            pub material_lot_property_ids: Vec<$id_type>,
        }
    };
}

/// Generates concrete process segment and operations types for a given identifier type.
///
/// Both groups of types are generated in the same module so that `OperationsSegment` can
/// embed the same `EquipmentSegmentSpecification`, `MaterialSegmentSpecification`, etc. types
/// that `ProcessSegment` uses — no cross-module imports needed.
///
/// # Example
/// ```rust
/// mod my_models {
///     rs95::declare_process_segment_and_operations_models!(uuid::Uuid);
/// }
/// ```
#[macro_export]
macro_rules! declare_process_segment_and_operations_models {
    ($id_type:ty) => {
        // ── Process segment enumerations ──────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum ResourceUse {
            Used,
            Any,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum MaterialUse {
            Consumed,
            Produced,
            ByProduct,
            CoProduct,
            Yield,
            Sample,
            Any,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum ProcessSegmentDependencyType {
            AtStart,
            AfterStart,
            AfterEnd,
            NotFollow,
            PossibleParallel,
            Parallel,
        }

        // ── Segment specifications (shared by ProcessSegment and OperationsSegment)

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EquipmentSegmentSpecificationProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<EquipmentSegmentSpecificationProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct EquipmentSegmentSpecification {
            pub id: $id_type,
            pub equipment_class_id: Option<$id_type>,
            pub equipment_id: Option<$id_type>,
            pub quantity: Option<String>,
            pub unit: Option<String>,
            pub use_type: ResourceUse,
            pub properties: Vec<EquipmentSegmentSpecificationProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PersonnelSegmentSpecificationProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<PersonnelSegmentSpecificationProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PersonnelSegmentSpecification {
            pub id: $id_type,
            pub personnel_class_id: Option<$id_type>,
            pub person_id: Option<$id_type>,
            pub quantity: Option<String>,
            pub unit: Option<String>,
            pub use_type: ResourceUse,
            pub properties: Vec<PersonnelSegmentSpecificationProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialSegmentSpecificationProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<MaterialSegmentSpecificationProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct MaterialSegmentSpecification {
            pub id: $id_type,
            pub material_class_id: Option<$id_type>,
            pub material_definition_id: Option<$id_type>,
            pub quantity: Option<String>,
            pub unit: Option<String>,
            pub use_type: MaterialUse,
            pub properties: Vec<MaterialSegmentSpecificationProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAssetSegmentSpecificationProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<PhysicalAssetSegmentSpecificationProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct PhysicalAssetSegmentSpecification {
            pub id: $id_type,
            pub physical_asset_class_id: Option<$id_type>,
            pub physical_asset_id: Option<$id_type>,
            pub quantity: Option<String>,
            pub unit: Option<String>,
            pub use_type: ResourceUse,
            pub properties: Vec<PhysicalAssetSegmentSpecificationProperty>,
        }

        // ── Process segment ───────────────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct ProcessSegmentParameter {
            pub id: $id_type,
            pub name: String,
            pub value: String,
            pub unit: String,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct ProcessSegmentDependency {
            pub id: $id_type,
            pub dependency_type: ProcessSegmentDependencyType,
            pub from_process_segment_id: $id_type,
            pub to_process_segment_id: $id_type,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct ProcessSegment {
            pub id: $id_type,
            pub name: String,
            pub duration: Option<String>,
            pub equipment_segment_specifications: Vec<EquipmentSegmentSpecification>,
            pub personnel_segment_specifications: Vec<PersonnelSegmentSpecification>,
            pub material_segment_specifications: Vec<MaterialSegmentSpecification>,
            pub physical_asset_segment_specifications: Vec<PhysicalAssetSegmentSpecification>,
            pub parameters: Vec<ProcessSegmentParameter>,
            pub sub_segments: Vec<ProcessSegment>,
            pub dependencies: Vec<ProcessSegmentDependency>,
        }

        // ── Operations enumerations ───────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum OperationType {
            Production,
            Maintenance,
            Quality,
            Inventory,
            Mixed,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum JobOrderCommandType {
            Start,
            Stop,
            Hold,
            Restart,
            Abort,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum JobOrderStatus {
            Waiting,
            Ready,
            Running,
            Completed,
            Aborted,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub enum OperationsResponseResult {
            Completed,
            PartCompleted,
            Aborted,
        }

        // ── Work master ───────────────────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct WorkMasterParameter {
            pub id: $id_type,
            pub name: String,
            pub value: String,
            pub unit: String,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct WorkMaster {
            pub id: $id_type,
            pub name: String,
            pub version: String,
            pub parameters: Vec<WorkMasterParameter>,
            pub assembled_from: Vec<$id_type>,
        }

        // ── Operations definition ─────────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsDefinitionProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<OperationsDefinitionProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsSegmentParameter {
            pub id: $id_type,
            pub name: String,
            pub value: String,
            pub unit: String,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsSegmentDependency {
            pub id: $id_type,
            pub dependency_type: ProcessSegmentDependencyType,
            pub from_operations_segment_id: $id_type,
            pub to_operations_segment_id: $id_type,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsSegment {
            pub id: $id_type,
            pub name: String,
            pub process_segment_id: Option<$id_type>,
            pub equipment_segment_specifications: Vec<EquipmentSegmentSpecification>,
            pub personnel_segment_specifications: Vec<PersonnelSegmentSpecification>,
            pub material_segment_specifications: Vec<MaterialSegmentSpecification>,
            pub physical_asset_segment_specifications: Vec<PhysicalAssetSegmentSpecification>,
            pub parameters: Vec<OperationsSegmentParameter>,
            pub sub_segments: Vec<OperationsSegment>,
            pub dependencies: Vec<OperationsSegmentDependency>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsDefinition {
            pub id: $id_type,
            pub name: String,
            pub version: String,
            pub operation_type: OperationType,
            pub work_master_id: Option<$id_type>,
            pub properties: Vec<OperationsDefinitionProperty>,
            pub operations_segments: Vec<OperationsSegment>,
        }

        // ── Operations scheduling ─────────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct SegmentRequirementParameter {
            pub id: $id_type,
            pub name: String,
            pub value: String,
            pub unit: String,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct SegmentRequirement {
            pub id: $id_type,
            pub operations_segment_id: $id_type,
            pub earliest_start_time: Option<String>,
            pub latest_end_time: Option<String>,
            pub duration: Option<String>,
            pub parameters: Vec<SegmentRequirementParameter>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsRequestProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<OperationsRequestProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsRequest {
            pub id: $id_type,
            pub operation_type: OperationType,
            pub operations_definition_id: Option<$id_type>,
            pub start_time: Option<String>,
            pub end_time: Option<String>,
            pub priority: Option<i32>,
            pub properties: Vec<OperationsRequestProperty>,
            pub segment_requirements: Vec<SegmentRequirement>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsSchedule {
            pub id: $id_type,
            pub operation_type: OperationType,
            pub start_time: Option<String>,
            pub end_time: Option<String>,
            pub operations_requests: Vec<OperationsRequest>,
        }

        // ── Job orders ────────────────────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct JobOrderParameter {
            pub id: $id_type,
            pub name: String,
            pub value: String,
            pub unit: String,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct JobOrder {
            pub id: $id_type,
            pub work_type: OperationType,
            pub command: JobOrderCommandType,
            pub status: JobOrderStatus,
            pub priority: Option<i32>,
            pub operations_request_id: Option<$id_type>,
            pub operations_definition_id: Option<$id_type>,
            pub start_time: Option<String>,
            pub end_time: Option<String>,
            pub parameters: Vec<JobOrderParameter>,
        }

        // ── Operations performance ────────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct JobResponseParameter {
            pub id: $id_type,
            pub name: String,
            pub value: String,
            pub unit: String,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct JobResponse {
            pub id: $id_type,
            pub job_order_id: $id_type,
            pub actual_start_time: Option<String>,
            pub actual_end_time: Option<String>,
            pub result: OperationsResponseResult,
            pub parameters: Vec<JobResponseParameter>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct SegmentResponse {
            pub id: $id_type,
            pub operations_segment_id: $id_type,
            pub actual_start_time: Option<String>,
            pub actual_end_time: Option<String>,
            pub result: OperationsResponseResult,
            pub actual_equipment_ids: Vec<$id_type>,
            pub actual_person_ids: Vec<$id_type>,
            pub actual_material_lot_ids: Vec<$id_type>,
            pub actual_physical_asset_ids: Vec<$id_type>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsResponse {
            pub id: $id_type,
            pub operations_request_id: $id_type,
            pub actual_start_time: Option<String>,
            pub actual_end_time: Option<String>,
            pub result: OperationsResponseResult,
            pub segment_responses: Vec<SegmentResponse>,
            pub job_responses: Vec<JobResponse>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsPerformance {
            pub id: $id_type,
            pub operation_type: OperationType,
            pub start_time: Option<String>,
            pub end_time: Option<String>,
            pub operations_responses: Vec<OperationsResponse>,
        }

        // ── Operations capability ─────────────────────────────────────────────

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsCapabilityProperty {
            pub id: $id_type,
            pub name: String,
            pub nested_properties: Vec<OperationsCapabilityProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsCapabilityElement {
            pub id: $id_type,
            pub operation_type: OperationType,
            pub operations_definition_id: Option<$id_type>,
            pub available_start_time: Option<String>,
            pub available_end_time: Option<String>,
            pub properties: Vec<OperationsCapabilityProperty>,
        }

        #[derive(Debug, Clone, PartialEq)]
        #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
        pub struct OperationsCapability {
            pub id: $id_type,
            pub operation_type: OperationType,
            pub start_time: Option<String>,
            pub end_time: Option<String>,
            pub elements: Vec<OperationsCapabilityElement>,
        }
    };
}