zou 0.20.67__py3-none-any.whl → 0.20.68__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. zou/__init__.py +1 -1
  2. zou/app/blueprints/assets/resources.py +134 -91
  3. zou/app/blueprints/auth/resources.py +6 -6
  4. zou/app/blueprints/breakdown/resources.py +47 -47
  5. zou/app/blueprints/chats/resources.py +8 -8
  6. zou/app/blueprints/comments/resources.py +41 -41
  7. zou/app/blueprints/concepts/resources.py +23 -23
  8. zou/app/blueprints/crud/base.py +6 -6
  9. zou/app/blueprints/crud/output_file.py +2 -2
  10. zou/app/blueprints/crud/output_type.py +2 -2
  11. zou/app/blueprints/crud/preview_file.py +2 -2
  12. zou/app/blueprints/crud/software.py +2 -2
  13. zou/app/blueprints/crud/working_file.py +2 -2
  14. zou/app/blueprints/departments/resources.py +20 -20
  15. zou/app/blueprints/edits/resources.py +33 -33
  16. zou/app/blueprints/entities/resources.py +8 -8
  17. zou/app/blueprints/events/resources.py +7 -7
  18. zou/app/blueprints/export/csv/assets.py +2 -2
  19. zou/app/blueprints/export/csv/casting.py +2 -2
  20. zou/app/blueprints/export/csv/edits.py +2 -2
  21. zou/app/blueprints/export/csv/playlists.py +2 -2
  22. zou/app/blueprints/export/csv/shots.py +2 -2
  23. zou/app/blueprints/files/resources.py +123 -123
  24. zou/app/blueprints/news/resources.py +28 -28
  25. zou/app/blueprints/persons/resources.py +75 -75
  26. zou/app/blueprints/playlists/resources.py +37 -37
  27. zou/app/blueprints/previews/resources.py +36 -36
  28. zou/app/blueprints/projects/resources.py +159 -159
  29. zou/app/blueprints/search/resources.py +3 -3
  30. zou/app/blueprints/shots/resources.py +143 -143
  31. zou/app/blueprints/source/csv/assets.py +2 -2
  32. zou/app/blueprints/source/csv/casting.py +2 -2
  33. zou/app/blueprints/source/csv/edits.py +2 -2
  34. zou/app/blueprints/source/csv/shots.py +2 -2
  35. zou/app/blueprints/source/csv/task_type_estimations.py +10 -10
  36. zou/app/blueprints/source/otio.py +6 -6
  37. zou/app/blueprints/source/shotgun/import_errors.py +2 -2
  38. zou/app/blueprints/tasks/resources.py +134 -134
  39. zou/app/blueprints/user/resources.py +87 -87
  40. {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/METADATA +2 -2
  41. {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/RECORD +45 -45
  42. {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/WHEEL +0 -0
  43. {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/entry_points.txt +0 -0
  44. {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/licenses/LICENSE +0 -0
  45. {zou-0.20.67.dist-info → zou-0.20.68.dist-info}/top_level.txt +0 -0
@@ -92,8 +92,8 @@ class ProductionTeamResource(Resource, ArgsMixin):
92
92
  name: project_id
93
93
  required: true
94
94
  type: string
95
- format: UUID
96
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
95
+ format: uuid
96
+ example: a24a6ea4-ce75-4665-a070-57453082c25
97
97
  responses:
98
98
  200:
99
99
  description: People listed in a production team
@@ -120,14 +120,14 @@ class ProductionTeamResource(Resource, ArgsMixin):
120
120
  name: project_id
121
121
  required: true
122
122
  type: string
123
- format: UUID
124
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
123
+ format: uuid
124
+ example: a24a6ea4-ce75-4665-a070-57453082c25
125
125
  - in: formData
126
126
  name: person_id
127
127
  required: True
128
128
  type: string
129
- format: UUID
130
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
129
+ format: uuid
130
+ example: a24a6ea4-ce75-4665-a070-57453082c25
131
131
  responses:
132
132
  201:
133
133
  description: Person added to the production team
@@ -158,14 +158,14 @@ class ProductionTeamRemoveResource(Resource):
158
158
  name: project_id
159
159
  required: true
160
160
  type: string
161
- format: UUID
162
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
161
+ format: uuid
162
+ example: a24a6ea4-ce75-4665-a070-57453082c25
163
163
  - in: path
164
164
  name: person_id
165
165
  required: true
166
166
  type: string
167
- format: UUID
168
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
167
+ format: uuid
168
+ example: a24a6ea4-ce75-4665-a070-57453082c25
169
169
  responses:
170
170
  204:
171
171
  description: Empty response
@@ -192,14 +192,14 @@ class ProductionAssetTypeResource(Resource, ArgsMixin):
192
192
  name: project_id
193
193
  required: true
194
194
  type: string
195
- format: UUID
196
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
195
+ format: uuid
196
+ example: a24a6ea4-ce75-4665-a070-57453082c25
197
197
  - in: formData
198
198
  name: asset_type_id
199
199
  required: True
200
200
  type: string
201
- format: UUID
202
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
201
+ format: uuid
202
+ example: a24a6ea4-ce75-4665-a070-57453082c25
203
203
  responses:
204
204
  201:
205
205
  description: Asset type added to production
@@ -230,14 +230,14 @@ class ProductionAssetTypeRemoveResource(Resource):
230
230
  name: project_id
231
231
  required: true
232
232
  type: string
233
- format: UUID
234
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
233
+ format: uuid
234
+ example: a24a6ea4-ce75-4665-a070-57453082c25
235
235
  - in: path
236
236
  name: asset_type_id
237
237
  required: true
238
238
  type: string
239
- format: UUID
240
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
239
+ format: uuid
240
+ example: a24a6ea4-ce75-4665-a070-57453082c25
241
241
  responses:
242
242
  204:
243
243
  description: Empty response
@@ -264,8 +264,8 @@ class ProductionTaskTypesResource(Resource, ArgsMixin):
264
264
  name: project_id
265
265
  required: true
266
266
  type: string
267
- format: UUID
268
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
267
+ format: uuid
268
+ example: a24a6ea4-ce75-4665-a070-57453082c25
269
269
  responses:
270
270
  200:
271
271
  description: Task types linked to the production
@@ -291,14 +291,14 @@ class ProductionTaskTypeResource(Resource, ArgsMixin):
291
291
  name: project_id
292
292
  required: true
293
293
  type: string
294
- format: UUID
295
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
294
+ format: uuid
295
+ example: a24a6ea4-ce75-4665-a070-57453082c25
296
296
  - in: formData
297
297
  name: task_type_id
298
298
  required: True
299
299
  type: string
300
- format: UUID
301
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
300
+ format: uuid
301
+ example: a24a6ea4-ce75-4665-a070-57453082c25
302
302
  - in: formData
303
303
  name: priority
304
304
  required: False
@@ -336,14 +336,14 @@ class ProductionTaskTypeRemoveResource(Resource):
336
336
  name: project_id
337
337
  required: true
338
338
  type: string
339
- format: UUID
340
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
339
+ format: uuid
340
+ example: a24a6ea4-ce75-4665-a070-57453082c25
341
341
  - in: path
342
342
  name: task_type_id
343
343
  required: true
344
344
  type: string
345
- format: UUID
346
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
345
+ format: uuid
346
+ example: a24a6ea4-ce75-4665-a070-57453082c25
347
347
  responses:
348
348
  204:
349
349
  description: Empty response
@@ -370,8 +370,8 @@ class ProductionTaskStatusResource(Resource, ArgsMixin):
370
370
  name: project_id
371
371
  required: true
372
372
  type: string
373
- format: UUID
374
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
373
+ format: uuid
374
+ example: a24a6ea4-ce75-4665-a070-57453082c25
375
375
  responses:
376
376
  200:
377
377
  description: Task statuses linked to production
@@ -391,14 +391,14 @@ class ProductionTaskStatusResource(Resource, ArgsMixin):
391
391
  name: project_id
392
392
  required: true
393
393
  type: string
394
- format: UUID
395
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
394
+ format: uuid
395
+ example: a24a6ea4-ce75-4665-a070-57453082c25
396
396
  - in: formData
397
397
  name: task_status_id
398
398
  required: True
399
399
  type: string
400
- format: UUID
401
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
400
+ format: uuid
401
+ example: a24a6ea4-ce75-4665-a070-57453082c25
402
402
  responses:
403
403
  201:
404
404
  description: Task type added to production
@@ -429,14 +429,14 @@ class ProductionTaskStatusRemoveResource(Resource):
429
429
  name: project_id
430
430
  required: true
431
431
  type: string
432
- format: UUID
433
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
432
+ format: uuid
433
+ example: a24a6ea4-ce75-4665-a070-57453082c25
434
434
  - in: path
435
435
  name: task_status_id
436
436
  required: true
437
437
  type: string
438
- format: UUID
439
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
438
+ format: uuid
439
+ example: a24a6ea4-ce75-4665-a070-57453082c25
440
440
  responses:
441
441
  204:
442
442
  description: Empty response
@@ -463,8 +463,8 @@ class ProductionStatusAutomationResource(Resource, ArgsMixin):
463
463
  name: project_id
464
464
  required: true
465
465
  type: string
466
- format: UUID
467
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
466
+ format: uuid
467
+ example: a24a6ea4-ce75-4665-a070-57453082c25
468
468
  responses:
469
469
  200:
470
470
  description: Status automation linked to production
@@ -484,14 +484,14 @@ class ProductionStatusAutomationResource(Resource, ArgsMixin):
484
484
  name: project_id
485
485
  required: true
486
486
  type: string
487
- format: UUID
488
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
487
+ format: uuid
488
+ example: a24a6ea4-ce75-4665-a070-57453082c25
489
489
  - in: formData
490
490
  name: status_automation_id
491
491
  required: True
492
492
  type: string
493
- format: UUID
494
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
493
+ format: uuid
494
+ example: a24a6ea4-ce75-4665-a070-57453082c25
495
495
  responses:
496
496
  201:
497
497
  description: Status automation added to production
@@ -522,14 +522,14 @@ class ProductionStatusAutomationRemoveResource(Resource):
522
522
  name: project_id
523
523
  required: true
524
524
  type: string
525
- format: UUID
526
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
525
+ format: uuid
526
+ example: a24a6ea4-ce75-4665-a070-57453082c25
527
527
  - in: path
528
528
  name: status_automation_id
529
529
  required: true
530
530
  type: string
531
- format: UUID
532
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
531
+ format: uuid
532
+ example: a24a6ea4-ce75-4665-a070-57453082c25
533
533
  responses:
534
534
  204:
535
535
  description: Empty response
@@ -558,8 +558,8 @@ class ProductionPreviewBackgroundFileResource(Resource, ArgsMixin):
558
558
  name: project_id
559
559
  required: true
560
560
  type: string
561
- format: UUID
562
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
561
+ format: uuid
562
+ example: a24a6ea4-ce75-4665-a070-57453082c25
563
563
  responses:
564
564
  200:
565
565
  description: Preview background files linked to production
@@ -581,14 +581,14 @@ class ProductionPreviewBackgroundFileResource(Resource, ArgsMixin):
581
581
  name: project_id
582
582
  required: true
583
583
  type: string
584
- format: UUID
585
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
584
+ format: uuid
585
+ example: a24a6ea4-ce75-4665-a070-57453082c25
586
586
  - in: formData
587
587
  name: preview_background_file_id
588
588
  required: True
589
589
  type: string
590
- format: UUID
591
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
590
+ format: uuid
591
+ example: a24a6ea4-ce75-4665-a070-57453082c25
592
592
  responses:
593
593
  201:
594
594
  description: Preview background file added to production
@@ -619,14 +619,14 @@ class ProductionPreviewBackgroundFileRemoveResource(Resource):
619
619
  name: project_id
620
620
  required: true
621
621
  type: string
622
- format: UUID
623
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
622
+ format: uuid
623
+ example: a24a6ea4-ce75-4665-a070-57453082c25
624
624
  - in: path
625
625
  name: preview_background_file_id
626
626
  required: true
627
627
  type: string
628
- format: UUID
629
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
628
+ format: uuid
629
+ example: a24a6ea4-ce75-4665-a070-57453082c25
630
630
  responses:
631
631
  204:
632
632
  description: Empty response
@@ -657,8 +657,8 @@ class ProductionMetadataDescriptorsResource(Resource, ArgsMixin):
657
657
  name: project_id
658
658
  required: true
659
659
  type: string
660
- format: UUID
661
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
660
+ format: uuid
661
+ example: a24a6ea4-ce75-4665-a070-57453082c25
662
662
  responses:
663
663
  200:
664
664
  description: All metadata descriptors
@@ -682,8 +682,8 @@ class ProductionMetadataDescriptorsResource(Resource, ArgsMixin):
682
682
  name: project_id
683
683
  required: true
684
684
  type: string
685
- format: UUID
686
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
685
+ format: uuid
686
+ example: a24a6ea4-ce75-4665-a070-57453082c25
687
687
  responses:
688
688
  201:
689
689
  description: Create a new metadata descriptor
@@ -756,14 +756,14 @@ class ProductionMetadataDescriptorResource(Resource, ArgsMixin):
756
756
  name: project_id
757
757
  required: true
758
758
  type: string
759
- format: UUID
760
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
759
+ format: uuid
760
+ example: a24a6ea4-ce75-4665-a070-57453082c25
761
761
  - in: path
762
762
  name: descriptor_id
763
763
  required: true
764
764
  type: string
765
- format: UUID
766
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
765
+ format: uuid
766
+ example: a24a6ea4-ce75-4665-a070-57453082c25
767
767
  responses:
768
768
  200:
769
769
  description: Metadata descriptor
@@ -784,14 +784,14 @@ class ProductionMetadataDescriptorResource(Resource, ArgsMixin):
784
784
  name: project_id
785
785
  required: true
786
786
  type: string
787
- format: UUID
788
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
787
+ format: uuid
788
+ example: a24a6ea4-ce75-4665-a070-57453082c25
789
789
  - in: path
790
790
  name: descriptor_id
791
791
  required: true
792
792
  type: string
793
- format: UUID
794
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
793
+ format: uuid
794
+ example: a24a6ea4-ce75-4665-a070-57453082c25
795
795
  - in: formData
796
796
  name: name
797
797
  required: True
@@ -857,14 +857,14 @@ class ProductionMetadataDescriptorResource(Resource, ArgsMixin):
857
857
  name: project_id
858
858
  required: true
859
859
  type: string
860
- format: UUID
861
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
860
+ format: uuid
861
+ example: a24a6ea4-ce75-4665-a070-57453082c25
862
862
  - in: path
863
863
  name: descriptor_id
864
864
  required: true
865
865
  type: string
866
- format: UUID
867
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
866
+ format: uuid
867
+ example: a24a6ea4-ce75-4665-a070-57453082c25
868
868
  responses:
869
869
  204:
870
870
  description: Empty response
@@ -896,8 +896,8 @@ class ProductionTimeSpentsResource(Resource):
896
896
  name: project_id
897
897
  required: true
898
898
  type: string
899
- format: UUID
900
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
899
+ format: uuid
900
+ example: a24a6ea4-ce75-4665-a070-57453082c25
901
901
  responses:
902
902
  200:
903
903
  description: All time spents of given production
@@ -923,8 +923,8 @@ class ProductionMilestonesResource(Resource):
923
923
  name: project_id
924
924
  required: true
925
925
  type: string
926
- format: UUID
927
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
926
+ format: uuid
927
+ example: a24a6ea4-ce75-4665-a070-57453082c25
928
928
  responses:
929
929
  200:
930
930
  description: All milestones of given production
@@ -950,8 +950,8 @@ class ProductionScheduleItemsResource(Resource):
950
950
  name: project_id
951
951
  required: true
952
952
  type: string
953
- format: UUID
954
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
953
+ format: uuid
954
+ example: a24a6ea4-ce75-4665-a070-57453082c25
955
955
  responses:
956
956
  200:
957
957
  description: All schedule items of given production
@@ -978,8 +978,8 @@ class ProductionTaskTypeScheduleItemsResource(Resource):
978
978
  name: project_id
979
979
  required: true
980
980
  type: string
981
- format: UUID
982
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
981
+ format: uuid
982
+ example: a24a6ea4-ce75-4665-a070-57453082c25
983
983
  responses:
984
984
  200:
985
985
  description: All task types schedule items of given production
@@ -1006,14 +1006,14 @@ class ProductionAssetTypesScheduleItemsResource(Resource):
1006
1006
  name: project_id
1007
1007
  required: true
1008
1008
  type: string
1009
- format: UUID
1010
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1009
+ format: uuid
1010
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1011
1011
  - in: path
1012
1012
  name: task_type_id
1013
1013
  required: true
1014
1014
  type: string
1015
- format: UUID
1016
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1015
+ format: uuid
1016
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1017
1017
  responses:
1018
1018
  200:
1019
1019
  description: All asset types schedule items for given task type
@@ -1042,14 +1042,14 @@ class ProductionEpisodesScheduleItemsResource(Resource):
1042
1042
  name: project_id
1043
1043
  required: true
1044
1044
  type: string
1045
- format: UUID
1046
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1045
+ format: uuid
1046
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1047
1047
  - in: path
1048
1048
  name: task_type_id
1049
1049
  required: true
1050
1050
  type: string
1051
- format: UUID
1052
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1051
+ format: uuid
1052
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1053
1053
  responses:
1054
1054
  200:
1055
1055
  description: All episodes schedule items for given task type
@@ -1078,14 +1078,14 @@ class ProductionSequencesScheduleItemsResource(Resource):
1078
1078
  name: project_id
1079
1079
  required: true
1080
1080
  type: string
1081
- format: UUID
1082
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1081
+ format: uuid
1082
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1083
1083
  - in: path
1084
1084
  name: task_type_id
1085
1085
  required: true
1086
1086
  type: string
1087
- format: UUID
1088
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1087
+ format: uuid
1088
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1089
1089
  responses:
1090
1090
  200:
1091
1091
  description: All sequences schedule items for given task type
@@ -1111,8 +1111,8 @@ class ProductionBudgetsResource(Resource, ArgsMixin):
1111
1111
  name: project_id
1112
1112
  required: true
1113
1113
  type: string
1114
- format: UUID
1115
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1114
+ format: uuid
1115
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1116
1116
  responses:
1117
1117
  200:
1118
1118
  description: All budgets of given production
@@ -1133,18 +1133,18 @@ class ProductionBudgetsResource(Resource, ArgsMixin):
1133
1133
  name: project_id
1134
1134
  required: true
1135
1135
  type: string
1136
- format: UUID
1137
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1136
+ format: uuid
1137
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1138
1138
  - in: formData
1139
1139
  name: name
1140
1140
  required: true
1141
1141
  type: string
1142
- x-example: "New Budget"
1142
+ example: "New Budget"
1143
1143
  - in: formData
1144
1144
  name: currency
1145
1145
  required: false
1146
1146
  type: string
1147
- x-example: "USD"
1147
+ example: "USD"
1148
1148
  responses:
1149
1149
  201:
1150
1150
  description: Budget created
@@ -1176,14 +1176,14 @@ class ProductionBudgetResource(Resource, ArgsMixin):
1176
1176
  name: project_id
1177
1177
  required: true
1178
1178
  type: string
1179
- format: UUID
1180
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1179
+ format: uuid
1180
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1181
1181
  - in: path
1182
1182
  name: budget_id
1183
1183
  required: true
1184
1184
  type: string
1185
- format: UUID
1186
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1185
+ format: uuid
1186
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1187
1187
  responses:
1188
1188
  200:
1189
1189
  description: Budget retrieved
@@ -1205,24 +1205,24 @@ class ProductionBudgetResource(Resource, ArgsMixin):
1205
1205
  name: project_id
1206
1206
  required: true
1207
1207
  type: string
1208
- format: UUID
1209
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1208
+ format: uuid
1209
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1210
1210
  - in: path
1211
1211
  name: budget_id
1212
1212
  required: true
1213
1213
  type: string
1214
- format: UUID
1215
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1214
+ format: uuid
1215
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1216
1216
  - in: formData
1217
1217
  name: name
1218
1218
  required: false
1219
1219
  type: string
1220
- x-example: "New Budget"
1220
+ example: "New Budget"
1221
1221
  - in: formData
1222
1222
  name: currency
1223
1223
  required: false
1224
1224
  type: string
1225
- x-example: "USD"
1225
+ example: "USD"
1226
1226
  responses:
1227
1227
  200:
1228
1228
  description: Budget updated
@@ -1249,14 +1249,14 @@ class ProductionBudgetResource(Resource, ArgsMixin):
1249
1249
  name: project_id
1250
1250
  required: true
1251
1251
  type: string
1252
- format: UUID
1253
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1252
+ format: uuid
1253
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1254
1254
  - in: path
1255
1255
  name: budget_id
1256
1256
  required: true
1257
1257
  type: string
1258
- format: UUID
1259
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1258
+ format: uuid
1259
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1260
1260
  responses:
1261
1261
  204:
1262
1262
  description: Empty response
@@ -1282,14 +1282,14 @@ class ProductionBudgetEntriesResource(Resource, ArgsMixin):
1282
1282
  name: project_id
1283
1283
  required: true
1284
1284
  type: string
1285
- format: UUID
1286
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1285
+ format: uuid
1286
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1287
1287
  - in: path
1288
1288
  name: budget_id
1289
1289
  required: true
1290
1290
  type: string
1291
- format: UUID
1292
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1291
+ format: uuid
1292
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1293
1293
  responses:
1294
1294
  200:
1295
1295
  description: All budget entries of given production and budget
@@ -1344,20 +1344,20 @@ class ProductionBudgetEntryResource(Resource, ArgsMixin):
1344
1344
  name: project_id
1345
1345
  required: true
1346
1346
  type: string
1347
- format: UUID
1348
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1347
+ format: uuid
1348
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1349
1349
  - in: path
1350
1350
  name: budget_id
1351
1351
  required: true
1352
1352
  type: string
1353
- format: UUID
1354
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1353
+ format: uuid
1354
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1355
1355
  - in: path
1356
1356
  name: entry_id
1357
1357
  required: true
1358
1358
  type: string
1359
- format: UUID
1360
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1359
+ format: uuid
1360
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1361
1361
  responses:
1362
1362
  200:
1363
1363
  description: Budget entry retrieved
@@ -1380,58 +1380,58 @@ class ProductionBudgetEntryResource(Resource, ArgsMixin):
1380
1380
  name: project_id
1381
1381
  required: true
1382
1382
  type: string
1383
- format: UUID
1384
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1383
+ format: uuid
1384
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1385
1385
  - in: path
1386
1386
  name: budget_id
1387
1387
  required: true
1388
1388
  type: string
1389
- format: UUID
1390
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1389
+ format: uuid
1390
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1391
1391
  - in: path
1392
1392
  name: entry_id
1393
1393
  required: true
1394
1394
  type: string
1395
- format: UUID
1396
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1395
+ format: uuid
1396
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1397
1397
  - in: formData
1398
1398
  name: department_id
1399
1399
  required: false
1400
1400
  type: string
1401
- format: UUID
1402
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1401
+ format: uuid
1402
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1403
1403
  - in: formData
1404
1404
  name: person_id
1405
1405
  required: false
1406
1406
  type: string
1407
- format: UUID
1408
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1407
+ format: uuid
1408
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1409
1409
  - in: formData
1410
1410
  name: start_date
1411
1411
  required: false
1412
1412
  type: string
1413
1413
  format: date
1414
- x-example: 2025-01-01
1414
+ example: 2025-01-01
1415
1415
  - in: formData
1416
1416
  name: months_duration
1417
1417
  required: false
1418
1418
  type: integer
1419
- x-example: 12
1419
+ example: 12
1420
1420
  - in: formData
1421
1421
  name: daily_salary
1422
1422
  required: false
1423
1423
  type: float
1424
- x-example: 100.00
1424
+ example: 100.00
1425
1425
  - in: formData
1426
1426
  name: position
1427
1427
  required: false
1428
1428
  type: string
1429
- x-example: "Artist"
1429
+ example: "Artist"
1430
1430
  - in: formData
1431
1431
  name: seniority
1432
1432
  required: false
1433
1433
  type: string
1434
- x-example: "Mid"
1434
+ example: "Mid"
1435
1435
  responses:
1436
1436
  200:
1437
1437
  description: Budget entry updated
@@ -1472,20 +1472,20 @@ class ProductionBudgetEntryResource(Resource, ArgsMixin):
1472
1472
  name: project_id
1473
1473
  required: true
1474
1474
  type: string
1475
- format: UUID
1476
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1475
+ format: uuid
1476
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1477
1477
  - in: path
1478
1478
  name: budget_id
1479
1479
  required: true
1480
1480
  type: string
1481
- format: UUID
1482
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1481
+ format: uuid
1482
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1483
1483
  - in: path
1484
1484
  name: entry_id
1485
1485
  required: true
1486
1486
  type: string
1487
- format: UUID
1488
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1487
+ format: uuid
1488
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1489
1489
  responses:
1490
1490
  204:
1491
1491
  description: empty response
@@ -1512,8 +1512,8 @@ class ProductionMonthTimeSpentsResource(Resource, ArgsMixin):
1512
1512
  name: project_id
1513
1513
  required: True
1514
1514
  type: string
1515
- format: UUID
1516
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1515
+ format: uuid
1516
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1517
1517
  responses:
1518
1518
  200:
1519
1519
  description: Aggregated time spents for given person and month
@@ -1542,14 +1542,14 @@ class ProductionScheduleVersionTaskLinksResource(Resource, ArgsMixin):
1542
1542
  name: production_schedule_version_id
1543
1543
  required: True
1544
1544
  type: string
1545
- format: UUID
1546
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1545
+ format: uuid
1546
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1547
1547
  - in: query
1548
1548
  name: task_type_id
1549
1549
  required: false
1550
1550
  type: string
1551
- format: UUID
1552
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1551
+ format: uuid
1552
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1553
1553
  responses:
1554
1554
  200:
1555
1555
  description: Task links for given production schedule version.
@@ -1601,8 +1601,8 @@ class ProductionScheduleVersionSetTaskLinksFromTasksResource(
1601
1601
  name: production_schedule_version_id
1602
1602
  required: True
1603
1603
  type: string
1604
- format: UUID
1605
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1604
+ format: uuid
1605
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1606
1606
  responses:
1607
1607
  200:
1608
1608
  description: Task links created.
@@ -1637,8 +1637,8 @@ class ProductionScheduleVersionApplyToProductionResource(Resource, ArgsMixin):
1637
1637
  name: production_schedule_version_id
1638
1638
  required: True
1639
1639
  type: string
1640
- format: UUID
1641
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1640
+ format: uuid
1641
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1642
1642
  responses:
1643
1643
  200:
1644
1644
  description: Task links created.
@@ -1677,14 +1677,14 @@ class ProductionScheduleVersionSetTaskLinksFromProductionScheduleVersionResource
1677
1677
  name: production_schedule_version_id
1678
1678
  required: True
1679
1679
  type: string
1680
- format: UUID
1681
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1680
+ format: uuid
1681
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1682
1682
  - in: formData
1683
1683
  name: production_schedule_version_id
1684
1684
  required: True
1685
1685
  type: string
1686
- format: UUID
1687
- x-example: a24a6ea4-ce75-4665-a070-57453082c25
1686
+ format: uuid
1687
+ example: a24a6ea4-ce75-4665-a070-57453082c25
1688
1688
  responses:
1689
1689
  200:
1690
1690
  description: Task links created.