aas 0.4.0

Data type bindings for the Asset Administration Shell Specs
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
//! Submodel API

use crate::part2::v3_1::services::SubmodelService;
use axum::extract::State;
use std::sync::Arc;
use utoipa_axum::router::OpenApiRouter;
use utoipa_axum::routes;

#[utoipa::path(
    get,
    path = "/submodel",
    tag = "Submodel API",
    summary = "Returns the Submodel",
    responses(
        (status = 200, description = "Requested Submodel"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_submodel<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    put,
    path = "/submodel",
    tag = "Submodel API",
    summary = "Updates the Submodel",
    responses(
        (status = 204, description = "Submodel updated successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn put_submodel<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    patch,
    path = "/submodel",
    tag = "Submodel API",
    summary = "Updates the Submodel",
    responses(
        (status = 204, description = "Submodel updated successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn patch_submodel<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/$metadata",
    tag = "Submodel API",
    summary = "Returns the metadata attributes of a specific Submodel",
    responses(
        (status = 200, description = "Requested Submodel metadata"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_submodel_metadata<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    patch,
    path = "/submodel/$metadata",
    tag = "Submodel API",
    summary = "Updates the metadata attributes of the Submodel",
    responses(
        (status = 204, description = "Submodel metadata updated successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn patch_submodel_metadata<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/$value",
    tag = "Submodel API",
    summary = "Returns the Submodel in the ValueOnly representation",
    responses(
        (status = 200, description = "Requested Submodel in ValueOnly representation"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_submodel_value_only<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    patch,
    path = "/submodel/$value",
    tag = "Submodel API",
    summary = "Updates the values of the Submodel",
    responses(
        (status = 204, description = "Submodel values updated successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn patch_submodel_value_only<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/$reference",
    tag = "Submodel API",
    summary = "Returns the Reference of the Submodel",
    responses(
        (status = 200, description = "Requested Submodel reference"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_submodel_reference<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/$path",
    tag = "Submodel API",
    summary = "Returns the Submodel in the Path notation",
    responses(
        (status = 200, description = "Requested Submodel path"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_submodel_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements",
    tag = "Submodel API",
    summary = "Returns all submodel elements including their hierarchy",
    responses(
        (status = 200, description = "List of all submodel elements"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_all_submodel_elements<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    post,
    path = "/submodel/submodel-elements",
    tag = "Submodel API",
    summary = "Creates a new submodel element",
    responses(
        (status = 201, description = "Submodel element created successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel not found"),
        (status = 409, description = "Submodel element already exists")
    )
)]
pub async fn post_submodel_element<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/$metadata",
    tag = "Submodel API",
    summary = "Returns the metadata attributes of all submodel elements including their hierarchy",
    responses(
        (status = 200, description = "Metadata of all submodel elements"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_all_submodel_elements_metadata<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/$value",
    tag = "Submodel API",
    summary = "Returns all submodel elements including their hierarchy in the ValueOnly representation",
    responses(
        (status = 200, description = "All submodel elements in ValueOnly representation"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_all_submodel_elements_value_only<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/$reference",
    tag = "Submodel API",
    summary = "Returns the References of all submodel elements",
    responses(
        (status = 200, description = "References of all submodel elements"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_all_submodel_elements_reference<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/$path",
    tag = "Submodel API",
    summary = "Returns all submodel elements including their hierarchy in the Path notation",
    responses(
        (status = 200, description = "All submodel elements in Path notation"),
        (status = 404, description = "Submodel not found")
    )
)]
pub async fn get_all_submodel_elements_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}",
    tag = "Submodel API",
    summary = "Returns a specific submodel element from the Submodel at a specified path",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "Requested submodel element"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn get_submodel_element_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    post,
    path = "/submodel/submodel-elements/{idShortPath}",
    tag = "Submodel API",
    summary = "Creates a new submodel element at a specified path within submodel elements hierarchy",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 201, description = "Submodel element created successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Parent element not found"),
        (status = 409, description = "Submodel element already exists")
    )
)]
pub async fn post_submodel_element_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    put,
    path = "/submodel/submodel-elements/{idShortPath}",
    tag = "Submodel API",
    summary = "Creates or updates an existing submodel element at a specified path within submodel elements hierarchy",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "Submodel element updated successfully"),
        (status = 201, description = "Submodel element created successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Parent element not found")
    )
)]
pub async fn put_submodel_element_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    patch,
    path = "/submodel/submodel-elements/{idShortPath}",
    tag = "Submodel API",
    summary = "Updates an existing SubmodelElement",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 204, description = "Submodel element updated successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn patch_submodel_element_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    delete,
    path = "/submodel/submodel-elements/{idShortPath}",
    tag = "Submodel API",
    summary = "Deletes a submodel element at a specified path within the submodel elements hierarchy",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 204, description = "Submodel element deleted successfully"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn delete_submodel_element_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/$metadata",
    tag = "Submodel API",
    summary = "Returns the metadata attributes of a specific submodel element from the Submodel at a specified path",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "Requested submodel element metadata"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn get_submodel_element_by_path_metadata<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    patch,
    path = "/submodel/submodel-elements/{idShortPath}/$metadata",
    tag = "Submodel API",
    summary = "Updates the metadata attributes an existing SubmodelElement",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 204, description = "Submodel element metadata updated successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn patch_submodel_element_by_path_metadata<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/$value",
    tag = "Submodel API",
    summary = "Returns a specific submodel element from the Submodel at a specified path in the ValueOnly representation",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "Requested submodel element in ValueOnly representation"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn get_submodel_element_by_path_value_only<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    patch,
    path = "/submodel/submodel-elements/{idShortPath}/$value",
    tag = "Submodel API",
    summary = "Updates the value of an existing SubmodelElement",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 204, description = "Submodel element value updated successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn patch_submodel_element_by_path_value_only<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/$reference",
    tag = "Submodel API",
    summary = "Returns the Reference of a specific submodel element from the Submodel at a specified path",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "Requested submodel element reference"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn get_submodel_element_by_path_reference<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/$path",
    tag = "Submodel API",
    summary = "Returns a specific submodel element from the Submodel at a specified path in the Path notation",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "Requested submodel element path"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn get_submodel_element_by_path_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/attachment",
    tag = "Submodel API",
    summary = "Downloads file content from a specific submodel element from the Submodel at a specified path",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "File content downloaded successfully"),
        (status = 404, description = "Submodel element or file not found")
    )
)]
pub async fn get_file_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    put,
    path = "/submodel/submodel-elements/{idShortPath}/attachment",
    tag = "Submodel API",
    summary = "Uploads file content to an existing submodel element at a specified path within submodel elements hierarchy",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 200, description = "File content uploaded successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Submodel element not found")
    )
)]
pub async fn put_file_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    delete,
    path = "/submodel/submodel-elements/{idShortPath}/attachment",
    tag = "Submodel API",
    summary = "Deletes file content of an existing submodel element at a specified path within submodel elements hierarchy",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the submodel element (dot-separated)")
    ),
    responses(
        (status = 204, description = "File content deleted successfully"),
        (status = 404, description = "Submodel element or file not found")
    )
)]
pub async fn delete_file_by_path<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    post,
    path = "/submodel/submodel-elements/{idShortPath}/invoke",
    tag = "Submodel API",
    summary = "Synchronously invokes an Operation at a specified path",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the operation (dot-separated)")
    ),
    responses(
        (status = 200, description = "Operation invoked successfully"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Operation not found"),
        (status = 500, description = "Operation execution failed")
    )
)]
pub async fn invoke_operation<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    post,
    path = "/submodel/submodel-elements/{idShortPath}/invoke/$value",
    tag = "Submodel API",
    summary = "Synchronously invokes an Operation at a specified path with ValueOnly representation",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the operation (dot-separated)")
    ),
    responses(
        (status = 200, description = "Operation invoked successfully with ValueOnly result"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Operation not found"),
        (status = 500, description = "Operation execution failed")
    )
)]
pub async fn invoke_operation_sync_value_only<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    post,
    path = "/submodel/submodel-elements/{idShortPath}/invoke-async",
    tag = "Submodel API",
    summary = "Asynchronously invokes an Operation at a specified path",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the operation (dot-separated)")
    ),
    responses(
        (status = 202, description = "Operation invocation accepted"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Operation not found")
    )
)]
pub async fn invoke_operation_async<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    post,
    path = "/submodel/submodel-elements/{idShortPath}/invoke-async/$value",
    tag = "Submodel API",
    summary = "Asynchronously invokes an Operation at a specified path with ValueOnly representation",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the operation (dot-separated)")
    ),
    responses(
        (status = 202, description = "Operation invocation accepted"),
        (status = 400, description = "Bad Request"),
        (status = 404, description = "Operation not found")
    )
)]
pub async fn invoke_operation_async_value_only<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/operation-status/{handleId}",
    tag = "Submodel API",
    summary = "Returns the status of an asynchronously invoked Operation",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the operation (dot-separated)"),
        ("handleId" = String, Path, description = "Handle ID of the asynchronous operation invocation")
    ),
    responses(
        (status = 200, description = "Operation status retrieved successfully"),
        (status = 404, description = "Operation or handle ID not found")
    )
)]
pub async fn get_operation_async_status<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/operation-results/{handleId}",
    tag = "Submodel API",
    summary = "Returns the Operation result of an asynchronously invoked Operation",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the operation (dot-separated)"),
        ("handleId" = String, Path, description = "Handle ID of the asynchronous operation invocation")
    ),
    responses(
        (status = 200, description = "Operation result retrieved successfully"),
        (status = 404, description = "Operation or handle ID not found")
    )
)]
pub async fn get_operation_async_result<S: SubmodelService>(State(_service): State<Arc<S>>) {
    unimplemented!()
}

#[utoipa::path(
    get,
    path = "/submodel/submodel-elements/{idShortPath}/operation-results/{handleId}/$value",
    tag = "Submodel API",
    summary = "Returns the value of the Operation result of an asynchronously invoked Operation",
    params(
        ("idShortPath" = String, Path, description = "IdShort path to the operation (dot-separated)"),
        ("handleId" = String, Path, description = "Handle ID of the asynchronous operation invocation")
    ),
    responses(
        (status = 200, description = "Operation result value retrieved successfully"),
        (status = 404, description = "Operation or handle ID not found")
    )
)]
pub async fn get_operation_async_result_value_only<S: SubmodelService>(
    State(_service): State<Arc<S>>,
) {
    unimplemented!()
}

pub fn router(service: impl SubmodelService) -> OpenApiRouter {
    OpenApiRouter::new()
        // /submodel Pfadgruppe
        .routes(routes!(get_submodel, put_submodel, patch_submodel,))
        // /submodel/$metadata Pfadgruppe
        .routes(routes!(get_submodel_metadata, patch_submodel_metadata,))
        // /submodel/$value Pfadgruppe
        .routes(routes!(get_submodel_value_only, patch_submodel_value_only,))
        // /submodel/$reference Pfad
        .routes(routes!(get_submodel_reference))
        // /submodel/$path Pfad
        .routes(routes!(get_submodel_path))
        // /submodel/submodel-elements Pfadgruppe
        .routes(routes!(get_all_submodel_elements, post_submodel_element,))
        // /submodel/submodel-elements/$metadata Pfad
        .routes(routes!(get_all_submodel_elements_metadata))
        // /submodel/submodel-elements/$value Pfad
        .routes(routes!(get_all_submodel_elements_value_only))
        // /submodel/submodel-elements/$reference Pfad
        .routes(routes!(get_all_submodel_elements_reference))
        // /submodel/submodel-elements/$path Pfad
        .routes(routes!(get_all_submodel_elements_path))
        // /submodel/submodel-elements/{idShortPath} Pfadgruppe
        .routes(routes!(
            get_submodel_element_by_path,
            post_submodel_element_by_path,
            put_submodel_element_by_path,
            patch_submodel_element_by_path,
            delete_submodel_element_by_path,
        ))
        // /submodel/submodel-elements/{idShortPath}/$metadata Pfadgruppe
        .routes(routes!(
            get_submodel_element_by_path_metadata,
            patch_submodel_element_by_path_metadata,
        ))
        // /submodel/submodel-elements/{idShortPath}/$value Pfadgruppe
        .routes(routes!(
            get_submodel_element_by_path_value_only,
            patch_submodel_element_by_path_value_only,
        ))
        // /submodel/submodel-elements/{idShortPath}/$reference Pfad
        .routes(routes!(get_submodel_element_by_path_reference))
        // /submodel/submodel-elements/{idShortPath}/$path Pfad
        .routes(routes!(get_submodel_element_by_path_path))
        // /submodel/submodel-elements/{idShortPath}/attachment Pfadgruppe
        .routes(routes!(
            get_file_by_path,
            put_file_by_path,
            delete_file_by_path,
        ))
        // /submodel/submodel-elements/{idShortPath}/invoke Pfadgruppe
        .routes(routes!(invoke_operation,))
        .routes(routes!(invoke_operation_sync_value_only))
        .routes(routes!(invoke_operation_async))
        .routes(routes!(invoke_operation_async_value_only))
        // /submodel/submodel-elements/{idShortPath}/operation-status/{handleId} Pfad
        .routes(routes!(get_operation_async_status))
        // /submodel/submodel-elements/{idShortPath}/operation-results/{handleId} Pfadgruppe
        .routes(routes!(get_operation_async_result,))
        .routes(routes!(get_operation_async_result_value_only))
        .with_state(Arc::new(service))
}