From 5f85d1c00a6954cbd7350161b09ed4e43c2fed1f Mon Sep 17 00:00:00 2001
From: Florent Poittevin <florent.poittevin@unige.ch>
Date: Thu, 6 Feb 2025 11:28:11 +0100
Subject: [PATCH 1/2] feat(deposit): [DLCM-2844] allow to get anonymized review
 link

---
 .../deposit-detail-edit.routable.ts           | 50 +++++++++++++
 .../features/deposit/stores/deposit.action.ts | 40 +++++++++++
 .../features/deposit/stores/deposit.state.ts  | 71 +++++++++++++++++++
 src/app/icons.ts                              | 10 +++
 src/app/models/index.ts                       |  1 +
 src/app/shared/enums/api-action-name.enum.ts  |  2 +
 src/app/shared/enums/icon-name.enum.ts        |  2 +
 src/app/shared/enums/label-translate.enum.ts  |  2 +
 src/assets/i18n/de.json                       |  7 ++
 src/assets/i18n/en.json                       |  7 ++
 src/assets/i18n/fr.json                       |  7 ++
 11 files changed, 199 insertions(+)

diff --git a/src/app/features/deposit/components/routables/deposit-detail-edit/deposit-detail-edit.routable.ts b/src/app/features/deposit/components/routables/deposit-detail-edit/deposit-detail-edit.routable.ts
index fb73e1bc4..01e2fa110 100644
--- a/src/app/features/deposit/components/routables/deposit-detail-edit/deposit-detail-edit.routable.ts
+++ b/src/app/features/deposit/components/routables/deposit-detail-edit/deposit-detail-edit.routable.ts
@@ -121,6 +121,7 @@ import {
   QueryParameters,
   RouterExtensionService,
   SolidifyObject,
+  SsrUtil,
   StatusHistory,
   StatusHistoryDialog,
   StoreUtil,
@@ -142,6 +143,7 @@ export class DepositDetailEditRoutable extends AbstractDetailEditRoutable<Deposi
   listCurrentStatusObs: Observable<MappingObject<Enums.DataFile.StatusEnum, number>> = MemoizedUtil.select(this._store, DepositDataFileState, state => state.listCurrentStatus);
   numberCollectionObs: Observable<number | undefined> = MemoizedUtil.select(this._store, DepositCollectionState, state => state.numberCollections);
   depositModeTabEnumObs: Observable<ModeDepositTabEnum> = MemoizedUtil.select(this._store, DepositState, state => state.depositModeTabEnum);
+  anonymousReviewUrlObs: Observable<string> = MemoizedUtil.select(this._store, DepositState, state => state.anonymousReviewUrl);
 
   mode: DepositMode;
 
@@ -333,6 +335,26 @@ export class DepositDetailEditRoutable extends AbstractDetailEditRoutable<Deposi
       tooltipToTranslate: MARK_AS_TRANSLATABLE("deposit.tooltips.doi"),
       order: 50,
     },
+    {
+      color: "primary",
+      icon: IconNameEnum.anonymousReview,
+      displayCondition: current => current?.status === Enums.Deposit.StatusEnum.IN_PROGRESS,
+      callback: () => this._navigateToAnonymizedDepositPage(),
+      disableCondition: current => isNullOrUndefined(current),
+      labelToTranslate: (current) => LabelTranslateEnum.anonymousReview,
+      tooltipToTranslate: MARK_AS_TRANSLATABLE("deposit.tooltips.anonymousReview"),
+      order: 50,
+    },
+    {
+      color: "primary",
+      icon: IconNameEnum.regenerateAnonymousReview,
+      displayCondition: current => this.anonymousReviewUrlObs.pipe(map(anonymousReviewUrl => isNotNullNorUndefinedNorWhiteString(anonymousReviewUrl) && current?.status === Enums.Deposit.StatusEnum.IN_PROGRESS)),
+      callback: () => this._generateAnonymizedDepositPage(),
+      disableCondition: current => isNullOrUndefined(current),
+      labelToTranslate: (current) => LabelTranslateEnum.regenerateAnonymousReview,
+      tooltipToTranslate: MARK_AS_TRANSLATABLE("deposit.tooltips.regenerateAnonymousReview"),
+      order: 50,
+    },
     {
       color: "primary",
       icon: IconNameEnum.archive,
@@ -558,6 +580,7 @@ export class DepositDetailEditRoutable extends AbstractDetailEditRoutable<Deposi
           return;
         }
 
+        this._retrieveAnonymizedDepositPageUrlIfExist(deposit);
         this._computeCanDoValidatorAndAlterationWithCurrentRole(deposit);
         this._computeBannerMessage();
         this._changeDetector.detectChanges();
@@ -567,6 +590,12 @@ export class DepositDetailEditRoutable extends AbstractDetailEditRoutable<Deposi
     ));
   }
 
+  private _retrieveAnonymizedDepositPageUrlIfExist(deposit: Deposit): void {
+    if (isNotNullNorUndefinedNorWhiteString(deposit.anonymizedDepositPageId)) {
+      this._store.dispatch(new DepositAction.GetAnonymizedDepositPage(deposit.anonymizedDepositPageId));
+    }
+  }
+
   private _computeCanDoValidatorAndAlterationWithCurrentRole(deposit: Deposit): void {
     const canDoValidationActions = this._securityService.canApproveOrRejectDeposit(deposit);
     const canDoAlterations = this._securityService.canEditDeposit(deposit);
@@ -714,6 +743,27 @@ export class DepositDetailEditRoutable extends AbstractDetailEditRoutable<Deposi
     ));
   }
 
+  private _navigateToAnonymizedDepositPage(): void {
+    const anonymousReviewUrl = MemoizedUtil.selectSnapshot(this._store, DepositState, state => state.anonymousReviewUrl);
+    if (isNotNullNorUndefinedNorWhiteString(anonymousReviewUrl)) {
+      this._openAnonymizedDepositPage();
+      return;
+    }
+    this.subscribe(StoreUtil.dispatchActionAndWaitForSubActionCompletion(this._store, this._actions$,
+      new DepositAction.GenerateAnonymizedDepositPage(this._resId),
+      DepositAction.GenerateAnonymizedDepositPageSuccess,
+      result => this._openAnonymizedDepositPage()));
+  }
+
+  private _openAnonymizedDepositPage(): void {
+    const anonymousReviewUrl = MemoizedUtil.selectSnapshot(this._store, DepositState, state => state.anonymousReviewUrl);
+    SsrUtil.window.open(anonymousReviewUrl, "_blank");
+  }
+
+  private _generateAnonymizedDepositPage(): void {
+    this._store.dispatch(new DepositAction.GenerateAnonymizedDepositPage(this._resId));
+  }
+
   showHistory(): void {
     DialogUtil.open(this._dialog, StatusHistoryDialog, {
       parentId: null,
diff --git a/src/app/features/deposit/stores/deposit.action.ts b/src/app/features/deposit/stores/deposit.action.ts
index ad73251fd..9422a7fe5 100644
--- a/src/app/features/deposit/stores/deposit.action.ts
+++ b/src/app/features/deposit/stores/deposit.action.ts
@@ -616,6 +616,46 @@ export namespace DepositAction {
   export class ApproveSubmissionAgreementFail extends BaseSubActionFail<ApproveSubmissionAgreement> {
     static readonly type: string = `[${state}] Approve Submission Agreement Fail`;
   }
+
+  export class GenerateAnonymizedDepositPage extends BaseAction {
+    static readonly type: string = `[${state}] Generate Anonymized Deposit Page`;
+
+    constructor(public depositId: string) {
+      super();
+    }
+  }
+
+  export class GenerateAnonymizedDepositPageSuccess extends BaseSubActionSuccess<GenerateAnonymizedDepositPage> {
+    static readonly type: string = `[${state}] Generate Anonymized Deposit Page Success`;
+
+    constructor(public parent: GenerateAnonymizedDepositPage, public url: string) {
+      super(parent);
+    }
+  }
+
+  export class GenerateAnonymizedDepositPageFail extends BaseSubActionFail<GenerateAnonymizedDepositPage> {
+    static readonly type: string = `[${state}] Generate Anonymized Deposit Page Fail`;
+  }
+
+  export class GetAnonymizedDepositPage extends BaseAction {
+    static readonly type: string = `[${state}] Get Anonymized Deposit Page`;
+
+    constructor(public anonymizedDepositPageId: string) {
+      super();
+    }
+  }
+
+  export class GetAnonymizedDepositPageSuccess extends BaseSubActionSuccess<GetAnonymizedDepositPage> {
+    static readonly type: string = `[${state}] Get Anonymized Deposit Page Success`;
+
+    constructor(public parent: GetAnonymizedDepositPage, public url: string) {
+      super(parent);
+    }
+  }
+
+  export class GetAnonymizedDepositPageFail extends BaseSubActionFail<GetAnonymizedDepositPage> {
+    static readonly type: string = `[${state}] Get Anonymized Deposit Page Fail`;
+  }
 }
 
 export const depositActionNameSpace: ResourceFileNameSpace = DepositAction;
diff --git a/src/app/features/deposit/stores/deposit.state.ts b/src/app/features/deposit/stores/deposit.state.ts
index 484ae278a..8279beea2 100644
--- a/src/app/features/deposit/stores/deposit.state.ts
+++ b/src/app/features/deposit/stores/deposit.state.ts
@@ -208,6 +208,7 @@ export interface DepositStateModel extends ResourceFileStateModel<Deposit> {
   dataFileLogo: DataFile | undefined;
   activeListTabStatus: DepositTabStatusEnum;
   readmeDataFile: DepositDataFile | undefined;
+  anonymousReviewUrl: string | undefined;
 }
 
 @Injectable()
@@ -239,6 +240,7 @@ export interface DepositStateModel extends ResourceFileStateModel<Deposit> {
     isLoadingFile: false,
     activeListTabStatus: DepositTabStatusEnum.inProgress,
     readmeDataFile: undefined,
+    anonymousReviewUrl: undefined,
   },
   children: [
     DepositUploadState,
@@ -1351,4 +1353,73 @@ export class DepositState extends ResourceFileState<DepositStateModel, Deposit>
       isLoadingCounter: ctx.getState().isLoadingCounter - 1,
     });
   }
+
+  @Action(DepositAction.GenerateAnonymizedDepositPage)
+  generateAnonymizedDepositPage(ctx: SolidifyStateContext<DepositStateModel>, action: DepositAction.GenerateAnonymizedDepositPage): Observable<string> {
+    ctx.patchState({
+      isLoadingCounter: ctx.getState().isLoadingCounter + 1,
+    });
+    return this._httpClient.post<string>(`${this._urlResource}/${action.depositId}/${ApiActionNameEnum.GENERATE_ANONYMIZED_DEPOSIT_PAGE}`, undefined, {
+      responseType: "text" as any,
+    })
+      .pipe(
+        tap(url => {
+          ctx.dispatch(new DepositAction.GenerateAnonymizedDepositPageSuccess(action, url));
+        }),
+        catchError((error: SolidifyHttpErrorResponseModel) => {
+          ctx.dispatch(new DepositAction.GenerateAnonymizedDepositPageFail(action));
+          throw error;
+        }),
+      );
+  }
+
+  @Action(DepositAction.GenerateAnonymizedDepositPageSuccess)
+  generateAnonymizedDepositPageSuccess(ctx: SolidifyStateContext<DepositStateModel>, action: DepositAction.GenerateAnonymizedDepositPageSuccess): void {
+    ctx.patchState({
+      anonymousReviewUrl: action.url,
+      isLoadingCounter: ctx.getState().isLoadingCounter - 1,
+    });
+    this._notificationService.showInformation(MARK_AS_TRANSLATABLE("notification.deposit.action.generateAnonymizedDepositPage.success"));
+  }
+
+  @Action(DepositAction.GenerateAnonymizedDepositPageFail)
+  generateAnonymizedDepositPageFail(ctx: SolidifyStateContext<DepositStateModel>, action: DepositAction.GenerateAnonymizedDepositPageFail): void {
+    ctx.patchState({
+      isLoadingCounter: ctx.getState().isLoadingCounter - 1,
+    });
+  }
+
+  @Action(DepositAction.GetAnonymizedDepositPage)
+  getAnonymizedDepositPage(ctx: SolidifyStateContext<DepositStateModel>, action: DepositAction.GetAnonymizedDepositPage): Observable<string> {
+    ctx.patchState({
+      isLoadingCounter: ctx.getState().isLoadingCounter + 1,
+    });
+    const url = `${this._urlResource}/${action.anonymizedDepositPageId}/${ApiActionNameEnum.GET_ANONYMIZED_DEPOSIT_PAGE}`;
+    return this._httpClient.head<string>(url)
+      .pipe(
+        tap(() => {
+          ctx.dispatch(new DepositAction.GetAnonymizedDepositPageSuccess(action, url));
+        }),
+        catchError((error: SolidifyHttpErrorResponseModel) => {
+          ctx.dispatch(new DepositAction.GetAnonymizedDepositPageFail(action));
+          throw environment.errorToSkipInErrorHandler;
+        }),
+      );
+  }
+
+  @Action(DepositAction.GetAnonymizedDepositPageSuccess)
+  getAnonymizedDepositPageSuccess(ctx: SolidifyStateContext<DepositStateModel>, action: DepositAction.GetAnonymizedDepositPageSuccess): void {
+    ctx.patchState({
+      anonymousReviewUrl: action.url,
+      isLoadingCounter: ctx.getState().isLoadingCounter - 1,
+    });
+  }
+
+  @Action(DepositAction.GetAnonymizedDepositPageFail)
+  getAnonymizedDepositPageFail(ctx: SolidifyStateContext<DepositStateModel>, action: DepositAction.GetAnonymizedDepositPageFail): void {
+    ctx.patchState({
+      anonymousReviewUrl: undefined,
+      isLoadingCounter: ctx.getState().isLoadingCounter - 1,
+    });
+  }
 }
diff --git a/src/app/icons.ts b/src/app/icons.ts
index edf01d5f2..17669c8a3 100644
--- a/src/app/icons.ts
+++ b/src/app/icons.ts
@@ -1153,4 +1153,14 @@ export const icons: IconInfos[] = [
     lib: IconLibEnum.image,
     icon: "iiif.svg",
   },
+  {
+    name: IconNameEnum.anonymousReview,
+    lib: IconLibEnum.materialIcon,
+    icon: "rate_review",
+  },
+  {
+    name: IconNameEnum.regenerateAnonymousReview,
+    lib: IconLibEnum.materialIcon,
+    icon: "update",
+  },
 ];
diff --git a/src/app/models/index.ts b/src/app/models/index.ts
index f123f397b..179b0215b 100644
--- a/src/app/models/index.ts
+++ b/src/app/models/index.ts
@@ -342,6 +342,7 @@ export type Deposit = OverrideType<DepositPartial, {
   submissionPolicy?: SubmissionPolicy;
   subjectAreas?: SubjectArea[];
   duaFileChange?: SolidifyFileUploadType; // For portal usage
+  anonymizedDepositPageId?: string;
 }> & BaseResourceExtended;
 
 export type DepositDataFile = OverrideType<OverrideType<DepositDataFilePartial, {
diff --git a/src/app/shared/enums/api-action-name.enum.ts b/src/app/shared/enums/api-action-name.enum.ts
index 41220ec87..47908b6b1 100644
--- a/src/app/shared/enums/api-action-name.enum.ts
+++ b/src/app/shared/enums/api-action-name.enum.ts
@@ -171,6 +171,8 @@ export enum ApiActionNameExtendEnum {
   CREATE_FROM_NOTIFICATION = "create-from-notification",
   GET_MY_APPROBATIONS = "get-my-approbations",
   GET_ALL_APPROBATIONS = "get-all-approbations",
+  GET_ANONYMIZED_DEPOSIT_PAGE = "get-anonymized-deposit-page",
+  GENERATE_ANONYMIZED_DEPOSIT_PAGE = "generate-anonymized-deposit-page",
   UPLOAD_SUBMISSION_AGREEMENT = "upload-submission-agreement",
   EXPORT_TO_ORCID = "export-to-orcid"
 }
diff --git a/src/app/shared/enums/icon-name.enum.ts b/src/app/shared/enums/icon-name.enum.ts
index 567c19ce1..4fe97b38e 100644
--- a/src/app/shared/enums/icon-name.enum.ts
+++ b/src/app/shared/enums/icon-name.enum.ts
@@ -242,4 +242,6 @@ export class IconNameEnum extends IconNamePartialEnum {
   @PropertyName() static archivist: string;
   @PropertyName() static hedera: string;
   @PropertyName() static iiif: string;
+  @PropertyName() static anonymousReview: string;
+  @PropertyName() static regenerateAnonymousReview: string;
 }
diff --git a/src/app/shared/enums/label-translate.enum.ts b/src/app/shared/enums/label-translate.enum.ts
index d096b76af..2eb4dded9 100644
--- a/src/app/shared/enums/label-translate.enum.ts
+++ b/src/app/shared/enums/label-translate.enum.ts
@@ -137,6 +137,8 @@ export class LabelTranslateEnum {
   static sendToOrcid: string = MARK_AS_TRANSLATABLE("general.button.sendToOrcid");
   static uploadAReadmeFile: string = MARK_AS_TRANSLATABLE("general.button.uploadAReadmeFile");
   static switchToANewEditableFile: string = MARK_AS_TRANSLATABLE("general.button.switchToANewEditableFile");
+  static anonymousReview: string = MARK_AS_TRANSLATABLE("general.button.anonymousReview");
+  static regenerateAnonymousReview: string = MARK_AS_TRANSLATABLE("general.button.regenerateAnonymousReview");
 
   static home: string = MARK_AS_TRANSLATABLE("general.label.home");
   static archiveOrders: string = MARK_AS_TRANSLATABLE("general.label.archiveOrders");
diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json
index 206806db4..f2482efbf 100644
--- a/src/assets/i18n/de.json
+++ b/src/assets/i18n/de.json
@@ -862,6 +862,7 @@
     },
     "tooltips": {
       "accessLevel": "Legt die Zugriffsebene des Archivs fest: \n\n1) Öffentlich (freier Zugang) \n2) Eingeschränkt (Zugang beschränkt auf Mitglieder der Organisationseinheit) \n3) Privat (Benutzerdefinierter Zugang)",
+      "anonymousReview": "deposit.tooltips.anonymousReview",
       "archiveType": " ",
       "authors": "Befolgt Empfehlungen zur Autorenschaft für wissenschaftliche Publikationen",
       "collectionPeriod": "deposit.tooltips.collectionPeriod",
@@ -876,6 +877,7 @@
       "license": "Weitere Informationen finden Sie in der Dokumentation.",
       "orderAuthors": "Anpassung der Reihenfolge in welcher die Beitragenden angezeigt werden",
       "preservationPolicy": "Zeigt die Optionen an, die bei der Erstellung Ihrer Datenaufbewahrung (d.h. der Organisationseinheit) definiert wurden. \n\nWeitere Informationen finden Sie in der Dokumentation.",
+      "regenerateAnonymousReview": "deposit.tooltips.regenerateAnonymousReview",
       "submissionPolicy": "Zeigt die Optionen an, die bei der Erstellung Ihrer Datenablage (d.h. der Organisationseinheit) definiert wurden. \n\nWeitere Informationen finden Sie in der Dokumentation"
     }
   },
@@ -1142,6 +1144,7 @@
     "button": {
       "add": "Hinzufügen",
       "addToDownloadOrder": "Zur Download-Bestellung hinzufügen",
+      "anonymousReview": "general.button.anonymousReview",
       "approve": "Genehmigen",
       "approveDisposal": "Entfernung genehmigen",
       "back": "Zurück",
@@ -1208,6 +1211,7 @@
       "process": "Prozess",
       "putInError": "Irrtum begangen",
       "rate": "Bewerten",
+      "regenerateAnonymousReview": "general.button.regenerateAnonymousReview",
       "reindex": "Neu indizieren",
       "reject": "Ablehnen",
       "rename": "Umbenennen",
@@ -1903,6 +1907,9 @@
     },
     "deposit": {
       "action": {
+        "generateAnonymizedDepositPage": {
+          "success": "notification.deposit.action.generateAnonymizedDepositPage.success"
+        },
         "putInError": {
           "fail": "notification.deposit.action.putInError.fail",
           "success": "notification.deposit.action.putInError.success"
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 18641ea4c..5fee56801 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -862,6 +862,7 @@
     },
     "tooltips": {
       "accessLevel": "Sets the archive's access level: \n\n1) Public (open access) \n2) Restricted (Access limited to members of the organizational unit) \n3) Closed (Customized access)",
+      "anonymousReview": "View the anonymous public page allowing a third party to review the deposit before submission.",
       "archiveType": "Archive type and its master type linked to it",
       "authors": "Follows recommendations on authorship for scientific publications",
       "collectionPeriod": "The dates at which data collection began and end",
@@ -876,6 +877,7 @@
       "license": "This field is mandatory if you publish your data in open access (access level: public)",
       "orderAuthors": "Change the order in which contributors are displayed",
       "preservationPolicy": "Shows the options that were defined during your preservation space's (i.e. organizational unit) creation. \n\nSee the documentation for more information",
+      "regenerateAnonymousReview": "Enables a new version to be regenerated for the third party reviewing the deposit. The shared link remains unchanged.",
       "submissionPolicy": "Shows the options that were defined during your preservation space's (i.e. organizational unit) creation. \n\nSee the documentation for more information"
     }
   },
@@ -1142,6 +1144,7 @@
     "button": {
       "add": "Add",
       "addToDownloadOrder": "Add to download order",
+      "anonymousReview": "Anonymous review",
       "approve": "Approve",
       "approveDisposal": "Approve disposal",
       "back": "Back",
@@ -1208,6 +1211,7 @@
       "process": "Process the request",
       "putInError": "Put in error",
       "rate": "Rate",
+      "regenerateAnonymousReview": "Regenerate anonymous review",
       "reindex": "Reindex",
       "reject": "Reject",
       "rename": "Rename",
@@ -1903,6 +1907,9 @@
     },
     "deposit": {
       "action": {
+        "generateAnonymizedDepositPage": {
+          "success": "Anonymized review generated"
+        },
         "putInError": {
           "fail": "Unable to put in error the deposit",
           "success": "The deposit has been put in error"
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index 0d0772df0..c6c24f755 100644
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -862,6 +862,7 @@
     },
     "tooltips": {
       "accessLevel": "Niveau d'accès de l'archive: \n\n1) Public (open access)\n2) Accès restreint (accès limité aux membres de l'unité organisationnelle)\n3) Fermé (accès personnalisé)",
+      "anonymousReview": "Voir la page publique anonyme permettant à une personne tier de pouvoir effectuer une revue du dépôt avant sa soumission",
       "archiveType": "Type d'archive et son type maître qui lui est lié",
       "authors": "Suivre les recommandations sur la paternité d'une publication scientifique",
       "collectionPeriod": "Début et fin de la période de collecte des données",
@@ -876,6 +877,7 @@
       "license": "Ce champ est obligatoire si vous publiez vos données en open access (niveau d'accès: public)",
       "orderAuthors": "Ordonner les contributeur-rice-s",
       "preservationPolicy": "Montre les options qui ont été choisies lors de la création de votre espace de préservation (ou unité organisationnelle).\n\nVoir la documentation pour plus d'informations",
+      "regenerateAnonymousReview": "Permet de regénérer une nouvelle version pour la personne tier effectuant la revue du dépôt. Le lien partagé reste inchangé.",
       "submissionPolicy": "Montre les options qui ont été choisies lors de la création de votre espace de préservation (ou unité organisationnelle).\n\nVoir la documentation pour plus d'informations"
     }
   },
@@ -1142,6 +1144,7 @@
     "button": {
       "add": "Ajouter",
       "addToDownloadOrder": "Ajouter à la demande de téléchargement",
+      "anonymousReview": "Revue anonyme",
       "approve": "Approuver",
       "approveDisposal": "Approuver l'élimination",
       "back": "Retour",
@@ -1208,6 +1211,7 @@
       "process": "Traiter la demande",
       "putInError": "Mettre en erreur",
       "rate": "Noter",
+      "regenerateAnonymousReview": "Regénérer revue anonyme",
       "reindex": "Réindexer",
       "reject": "Rejeter",
       "rename": "Renommer",
@@ -1903,6 +1907,9 @@
     },
     "deposit": {
       "action": {
+        "generateAnonymizedDepositPage": {
+          "success": "Revue anonyme regénéré"
+        },
         "putInError": {
           "fail": "Impossible de mettre en erreur le dépôt",
           "success": "Le dépôt a été mis en erreur"
-- 
GitLab


From 8fdab2ca7931fb7f2bc6e25c6d84054ba559219a Mon Sep 17 00:00:00 2001
From: Florent Poittevin <florent.poittevin@unige.ch>
Date: Thu, 6 Feb 2025 16:44:18 +0100
Subject: [PATCH 2/2] chore: update openapi

---
 src/app/models/index.ts                  |     1 -
 src/assets/openapi/dlcm-openapi-3.0.json | 25138 +++++++++++++++++----
 2 files changed, 20290 insertions(+), 4849 deletions(-)

diff --git a/src/app/models/index.ts b/src/app/models/index.ts
index 179b0215b..f123f397b 100644
--- a/src/app/models/index.ts
+++ b/src/app/models/index.ts
@@ -342,7 +342,6 @@ export type Deposit = OverrideType<DepositPartial, {
   submissionPolicy?: SubmissionPolicy;
   subjectAreas?: SubjectArea[];
   duaFileChange?: SolidifyFileUploadType; // For portal usage
-  anonymizedDepositPageId?: string;
 }> & BaseResourceExtended;
 
 export type DepositDataFile = OverrideType<OverrideType<DepositDataFilePartial, {
diff --git a/src/assets/openapi/dlcm-openapi-3.0.json b/src/assets/openapi/dlcm-openapi-3.0.json
index e501d7f67..dbf747ba4 100644
--- a/src/assets/openapi/dlcm-openapi-3.0.json
+++ b/src/assets/openapi/dlcm-openapi-3.0.json
@@ -3,8 +3,12 @@
   "info": {
     "title": "DLCM Solution API",
     "description": "Repository for Research Datasets",
-    "contact": { "email": "admin@dlcm.ch" },
-    "license": { "name": "GNU General Public License v2.0 or later" },
+    "contact": {
+      "email": "admin@dlcm.ch"
+    },
+    "license": {
+      "name": "GNU General Public License v2.0 or later"
+    },
     "version": "3.0.0-SNAPSHOT"
   },
   "servers": [
@@ -13,24 +17,34 @@
       "description": "Generated server url"
     }
   ],
-  "tags": [{ "name": "dlcm" }],
+  "tags": [
+    {
+      "name": "dlcm"
+    }
+  ],
   "paths": {
     "/preservation-planning/preservation-jobs": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/PreservationJob" }
+            "schema": {
+              "$ref": "#/components/schemas/PreservationJob"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -45,15 +59,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/PreservationJob" }
+              "schema": {
+                "$ref": "#/components/schemas/PreservationJob"
+              }
             }
           },
           "required": true
@@ -63,50 +88,85 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/PreservationJob" }
+                "schema": {
+                  "$ref": "#/components/schemas/PreservationJob"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/JobExecution" }
+            "schema": {
+              "$ref": "#/components/schemas/JobExecution"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -121,23 +181,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/JobExecution" }
+              "schema": {
+                "$ref": "#/components/schemas/JobExecution"
+              }
             }
           },
           "required": true
@@ -147,139 +220,225 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/JobExecution" }
+                "schema": {
+                  "$ref": "#/components/schemas/JobExecution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/{id}/resume": {
       "post": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_resume",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{id}/start": {
       "post": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_start",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{id}/resume": {
       "post": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_resume",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/search": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/PreservationJob" }
+            "schema": {
+              "$ref": "#/components/schemas/PreservationJob"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -294,29 +453,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/PreservationJob" }
+              "schema": {
+                "$ref": "#/components/schemas/PreservationJob"
+              }
             }
           },
           "required": true
@@ -333,53 +507,94 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/initialize": {
       "post": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_initialize",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/aip/delete-cache": {
       "post": {
-        "tags": ["preservation-planning/aip"],
+        "tags": [
+          "preservation-planning/aip"
+        ],
         "operationId": "preservation-planning_aip_delete-cache_evictCache",
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Deposit" }
+            "schema": {
+              "$ref": "#/components/schemas/Deposit"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -394,15 +609,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Deposit" }
+              "schema": {
+                "$ref": "#/components/schemas/Deposit"
+              }
             }
           },
           "required": true
@@ -411,43 +637,78 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Deposit" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Deposit"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/submission-agreements": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_submission-agreements_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -462,23 +723,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_submission-agreements_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -498,47 +775,80 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_submission-agreements_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/subject-areas": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_subject-areas_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -553,23 +863,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_subject-areas_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -581,53 +907,88 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/SubjectArea" }
+                  "items": {
+                    "$ref": "#/components/schemas/SubjectArea"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_subject-areas_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/licenses": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_licenses_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -642,23 +1003,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_licenses_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -670,51 +1047,83 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/License" }
+                  "items": {
+                    "$ref": "#/components/schemas/License"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_licenses_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+            "schema": {
+              "$ref": "#/components/schemas/DepositDataFile"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -729,23 +1138,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+              "schema": {
+                "$ref": "#/components/schemas/DepositDataFile"
+              }
             }
           },
           "required": true
@@ -755,196 +1177,337 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DepositDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/{id}/validate": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_validate",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/{id}/resume": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_resume",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/validate": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_validate",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/resume": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_resume",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/resume-all": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_resume-all",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/delete-folder": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_delete-folder",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "relativeLocation",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/contributors": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_contributors_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -959,23 +1522,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_contributors_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -987,53 +1566,88 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/Person" }
+                  "items": {
+                    "$ref": "#/components/schemas/Person"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_contributors_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/aip": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_aip_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -1048,23 +1662,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_aip_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -1084,127 +1714,186 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_aip_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/upload": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_upload",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "category",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "type",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "folder",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "metadataType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumMd5",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumMd5Origin",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumSha1",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumSha1Origin",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumSha256",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumSha256Origin",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumSha512",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumSha512Origin",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumCrc32",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "checksumCrc32Origin",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -1215,34 +1904,52 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DepositDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/upload-metadata": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_upload-metadata",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -1253,24 +1960,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DepositDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/upload-archive": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_upload-archive",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "category",
@@ -1358,17 +2078,24 @@
             "name": "metadataType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -1381,334 +2108,588 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/DepositDataFile" }
+                  "items": {
+                    "$ref": "#/components/schemas/DepositDataFile"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/submit-for-approval": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_submit-for-approval",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/start-metadata-upgrade": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_start-metadata-upgrade_putInMetadataUpgrading",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/start-metadata-editing": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_start-metadata-editing_putInMetadataEditing",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/reserve-doi": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_reserve-doi",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Deposit" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Deposit"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/reject": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_reject",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "reason",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/put-in-error": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_put-in-error",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "description": "OK",
+            "content": {
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
+            }
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
+      }
+    },
+    "/preingest/deposits/{id}/generate-anonymized-deposit-page": {
+      "post": {
+        "tags": [
+          "preingest/deposits"
+        ],
+        "operationId": "preingest_deposits_by_id_generate-anonymized-deposit-page",
+        "parameters": [
+          {
+            "name": "id",
+            "in": "path",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/enable-revision": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_enable-revision",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/clean": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_clean",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/check-submission-agreement": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_check-submission-agreement",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/check-compliance": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_check-compliance",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/cancel-metadata-editing": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_cancel-metadata-editing",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/approve": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_approve",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/approve-submission-agreement": {
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_approve-submission-agreement",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/search": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Deposit" }
+            "schema": {
+              "$ref": "#/components/schemas/Deposit"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -1723,29 +2704,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Deposit" }
+              "schema": {
+                "$ref": "#/components/schemas/Deposit"
+              }
             }
           },
           "required": true
@@ -1762,25 +2758,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/oai-info/oai-sets": {
       "get": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OAISet" }
+            "schema": {
+              "$ref": "#/components/schemas/OAISet"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -1795,15 +2804,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OAISet" }
+              "schema": {
+                "$ref": "#/components/schemas/OAISet"
+              }
             }
           },
           "required": true
@@ -1812,55 +2832,94 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/OAISet" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/OAISet"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/oai-info/oai-sets/search": {
       "get": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OAISet" }
+            "schema": {
+              "$ref": "#/components/schemas/OAISet"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -1875,29 +2934,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OAISet" }
+              "schema": {
+                "$ref": "#/components/schemas/OAISet"
+              }
             }
           },
           "required": true
@@ -1914,72 +2988,105 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/oai-info/oai-provider/oai": {
       "get": {
-        "tags": ["oai-info/oai-provider"],
+        "tags": [
+          "oai-info/oai-provider"
+        ],
         "operationId": "oai-info_oai-provider_oai_process",
         "parameters": [
           {
             "name": "verb",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "identifier",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "metadataPrefix",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "from",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "until",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "set",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "resumptionToken",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "smartView",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         }
       },
       "post": {
-        "tags": ["oai-info/oai-provider"],
+        "tags": [
+          "oai-info/oai-provider"
+        ],
         "operationId": "oai-info_oai-provider_oai_processPost",
         "requestBody": {
           "content": {
@@ -1994,27 +3101,39 @@
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         }
       }
     },
     "/oai-info/oai-metadata-prefixes": {
       "get": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+            "schema": {
+              "$ref": "#/components/schemas/OAIMetadataPrefix"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2029,15 +3148,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+              "schema": {
+                "$ref": "#/components/schemas/OAIMetadataPrefix"
+              }
             }
           },
           "required": true
@@ -2047,56 +3177,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+                "schema": {
+                  "$ref": "#/components/schemas/OAIMetadataPrefix"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/oai-info/oai-metadata-prefixes/search": {
       "get": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+            "schema": {
+              "$ref": "#/components/schemas/OAIMetadataPrefix"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2111,29 +3278,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+              "schema": {
+                "$ref": "#/components/schemas/OAIMetadataPrefix"
+              }
             }
           },
           "required": true
@@ -2150,25 +3332,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubmissionInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/SubmissionInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2183,15 +3378,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubmissionInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/SubmissionInfoPackage"
+              }
             }
           },
           "required": true
@@ -2208,45 +3414,78 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/data": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SipDataFile" }
+            "schema": {
+              "$ref": "#/components/schemas/SipDataFile"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2261,23 +3500,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SipDataFile" }
+              "schema": {
+                "$ref": "#/components/schemas/SipDataFile"
+              }
             }
           },
           "required": true
@@ -2287,110 +3539,179 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/SipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/data/{id}/resume": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_resume",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/data/{id}/put-in-error": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/aip": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2405,23 +3726,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -2441,51 +3778,87 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/upload": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_upload_sendFile",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -2496,180 +3869,289 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/SipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/start-metadata-upgrade": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_start-metadata-upgrade_putInMetadataUpgrading",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/start-metadata-editing": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_start-metadata-editing_putInMetadataEditing",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/resume": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_resume",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/resubmit": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_resubmit",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/put-in-error": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/clean": {
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_clean",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/search": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubmissionInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/SubmissionInfoPackage"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2684,29 +4166,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubmissionInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/SubmissionInfoPackage"
+              }
             }
           },
           "required": true
@@ -2723,25 +4220,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/settings": {
       "get": {
-        "tags": ["index/settings"],
+        "tags": [
+          "index/settings"
+        ],
         "operationId": "index_settings_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/IndexProperties" }
+            "schema": {
+              "$ref": "#/components/schemas/IndexProperties"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2756,15 +4266,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["index/settings"],
+        "tags": [
+          "index/settings"
+        ],
         "operationId": "index_settings_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/IndexProperties" }
+              "schema": {
+                "$ref": "#/components/schemas/IndexProperties"
+              }
             }
           },
           "required": true
@@ -2774,44 +4295,77 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/IndexProperties" }
+                "schema": {
+                  "$ref": "#/components/schemas/IndexProperties"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["index/settings"],
+        "tags": [
+          "index/settings"
+        ],
         "operationId": "index_settings_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/index-field-aliases": {
       "get": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/IndexFieldAlias" }
+            "schema": {
+              "$ref": "#/components/schemas/IndexFieldAlias"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2826,15 +4380,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/IndexFieldAlias" }
+              "schema": {
+                "$ref": "#/components/schemas/IndexFieldAlias"
+              }
             }
           },
           "required": true
@@ -2844,56 +4409,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/IndexFieldAlias" }
+                "schema": {
+                  "$ref": "#/components/schemas/IndexFieldAlias"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/index-field-aliases/search": {
       "get": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/IndexFieldAlias" }
+            "schema": {
+              "$ref": "#/components/schemas/IndexFieldAlias"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2908,29 +4510,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/IndexFieldAlias" }
+              "schema": {
+                "$ref": "#/components/schemas/IndexFieldAlias"
+              }
             }
           },
           "required": true
@@ -2947,25 +4564,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/public-di": {
       "get": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -2980,15 +4610,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveMetadata"
+              }
             }
           },
           "required": true
@@ -2998,44 +4639,77 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/public-di/search": {
       "get": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_search_get",
         "parameters": [
           {
             "name": "query",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3050,17 +4724,28 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_search_post",
         "parameters": [
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -3068,7 +4753,9 @@
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             },
             "application/x-www-form-urlencoded": {
@@ -3091,19 +4778,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/public-di/delete-by-query": {
       "post": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_delete-by-query",
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             }
           },
@@ -3113,29 +4811,47 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "integer", "format": "int64" } }
+              "*/*": {
+                "schema": {
+                  "type": "integer",
+                  "format": "int64"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/private-di": {
       "get": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3150,15 +4866,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveMetadata"
+              }
             }
           },
           "required": true
@@ -3168,44 +4895,77 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/private-di/search": {
       "get": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_search_get",
         "parameters": [
           {
             "name": "query",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3220,17 +4980,28 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_search_post",
         "parameters": [
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -3238,7 +5009,9 @@
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             },
             "application/x-www-form-urlencoded": {
@@ -3261,19 +5034,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/private-di/delete-by-query": {
       "post": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_delete-by-query_deleteByQuery",
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             }
           },
@@ -3283,29 +5067,47 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "integer", "format": "int64" } }
+              "*/*": {
+                "schema": {
+                  "type": "integer",
+                  "format": "int64"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/di": {
       "get": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3320,15 +5122,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveMetadata"
+              }
             }
           },
           "required": true
@@ -3338,44 +5151,77 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/di/search": {
       "get": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_search_get",
         "parameters": [
           {
             "name": "query",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3390,17 +5236,28 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_search_post",
         "parameters": [
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -3408,7 +5265,9 @@
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             },
             "application/x-www-form-urlencoded": {
@@ -3431,19 +5290,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/di/delete-by-query": {
       "post": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_delete-by-query_deleteByQuery",
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             }
           },
@@ -3453,29 +5323,47 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "integer", "format": "int64" } }
+              "*/*": {
+                "schema": {
+                  "type": "integer",
+                  "format": "int64"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/archive-public-data": {
       "get": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivePublicData"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3490,15 +5378,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivePublicData"
+              }
             }
           },
           "required": true
@@ -3508,54 +5407,92 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivePublicData"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/archive-public-data/{id}/upload-dataset-file": {
       "post": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_by_id_upload-dataset-file",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -3566,42 +5503,61 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivePublicData"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/archive-public-data/search": {
       "get": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivePublicData"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3616,29 +5572,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivePublicData"
+              }
             }
           },
           "required": true
@@ -3655,25 +5626,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/stored-aip": {
       "get": {
-        "tags": ["archival-storage/stored-aip"],
+        "tags": [
+          "archival-storage/stored-aip"
+        ],
         "operationId": "archival-storage_stored-aip_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/StoredAIP" }
+            "schema": {
+              "$ref": "#/components/schemas/StoredAIP"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3688,15 +5672,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["archival-storage/stored-aip"],
+        "tags": [
+          "archival-storage/stored-aip"
+        ],
         "operationId": "archival-storage_stored-aip_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/StoredAIP" }
+              "schema": {
+                "$ref": "#/components/schemas/StoredAIP"
+              }
             }
           },
           "required": true
@@ -3705,43 +5700,78 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/StoredAIP" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/StoredAIP"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/stored-aip"],
+        "tags": [
+          "archival-storage/stored-aip"
+        ],
         "operationId": "archival-storage_stored-aip_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3756,15 +5786,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -3774,50 +5815,85 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/AipDataFile" }
+            "schema": {
+              "$ref": "#/components/schemas/AipDataFile"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3832,23 +5908,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/AipDataFile" }
+              "schema": {
+                "$ref": "#/components/schemas/AipDataFile"
+              }
             }
           },
           "required": true
@@ -3858,116 +5947,187 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/AipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/AipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data/{id}/resume": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_resume",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data/{id}/put-in-error": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/aip": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_aip_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -3982,23 +6142,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_aip_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -4018,51 +6194,87 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_aip_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/upload": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_upload_sendFile",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -4073,377 +6285,607 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/AipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/AipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/start-metadata-upgrade": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_start-metadata-upgrade_upgradeMetadata",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/start-metadata-editing": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_start-metadata-editing_putInMetadataEditing",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/resume": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_resume",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/replicate-tombstone": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_replicate-tombstone",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "lastArchiving",
             "in": "query",
             "required": true,
-            "schema": { "type": "string", "format": "date-time" }
+            "schema": {
+              "type": "string",
+              "format": "date-time"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/replicate-package": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_replicate-package",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "lastArchiving",
             "in": "query",
             "required": true,
-            "schema": { "type": "string", "format": "date-time" }
+            "schema": {
+              "type": "string",
+              "format": "date-time"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/reindex": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_reindex",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/put-in-error": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/fix-aip-info": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_fix-aip-info",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/extend-retention": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_extend-retention",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "duration",
             "in": "query",
             "required": true,
-            "schema": { "type": "integer", "format": "int32" }
+            "schema": {
+              "type": "integer",
+              "format": "int32"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/check": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_check",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/check-fixity": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_check-fixity",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "level",
             "in": "query",
             "required": false,
-            "schema": { "type": "string", "default": "" }
+            "schema": {
+              "type": "string",
+              "default": ""
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/approve-disposal": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_approve-disposal",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "reason",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/approve-disposal-by-orgunit": {
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_approve-disposal-by-orgunit",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "reason",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/search": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -4458,29 +6900,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -4497,25 +6954,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/users": {
       "get": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/User" }
+            "schema": {
+              "$ref": "#/components/schemas/User"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -4523,20 +6993,33 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionUser" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionUser"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/User" }
+              "schema": {
+                "$ref": "#/components/schemas/User"
+              }
             }
           },
           "required": true
@@ -4545,70 +7028,122 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/User" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/User"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/users/synchronize": {
       "post": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_synchronize",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/users/search": {
       "get": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_search_advancedSearch_get",
         "parameters": [
           {
             "name": "user",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/User" }
+            "schema": {
+              "$ref": "#/components/schemas/User"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -4616,34 +7151,51 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionUser" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionUser"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/User" }
+              "schema": {
+                "$ref": "#/components/schemas/User"
+              }
             }
           },
           "required": true
@@ -4653,80 +7205,142 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionUser" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionUser"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/users/revoke-my-tokens": {
       "post": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_revoke-my-tokens",
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "object" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "object"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/users/revoke-all-tokens/{externalUid}": {
       "post": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_revoke-all-tokens_by_id_revokeAllTokens",
         "parameters": [
           {
             "name": "externalUid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "object" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "object"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/users/new-user/{externalUid}": {
       "post": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_new-user_by_id_createNewUser",
         "parameters": [
           {
             "name": "externalUid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-policies": {
       "get": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/SubmissionPolicy"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -4741,15 +7355,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+              "schema": {
+                "$ref": "#/components/schemas/SubmissionPolicy"
+              }
             }
           },
           "required": true
@@ -4759,56 +7384,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-policies/search": {
       "get": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/SubmissionPolicy"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -4823,29 +7485,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+              "schema": {
+                "$ref": "#/components/schemas/SubmissionPolicy"
+              }
             }
           },
           "required": true
@@ -4862,25 +7539,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+            "schema": {
+              "$ref": "#/components/schemas/SubmissionAgreement"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -4895,15 +7585,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+              "schema": {
+                "$ref": "#/components/schemas/SubmissionAgreement"
+              }
             }
           },
           "required": true
@@ -4913,50 +7614,85 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/{parentid}/users": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_users_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/User" }
+            "schema": {
+              "$ref": "#/components/schemas/User"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -4971,23 +7707,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_users_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -5007,52 +7759,87 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_users_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/{parentid}/users/{id}": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_users_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResourceId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -5067,23 +7854,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_users_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -5108,49 +7908,81 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_users_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResourceId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_users_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -5175,35 +8007,53 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/{id}/upload-file": {
       "post": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_upload-file",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -5214,73 +8064,114 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/{id}/approve": {
       "post": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_approve",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "object" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "object"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/upload-submission-agreement": {
       "post": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_upload-submission-agreement_createItemAndUploadFile",
         "parameters": [
           {
             "name": "title",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "description",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "version",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -5291,42 +8182,61 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/search": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+            "schema": {
+              "$ref": "#/components/schemas/SubmissionAgreement"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -5341,29 +8251,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+              "schema": {
+                "$ref": "#/components/schemas/SubmissionAgreement"
+              }
             }
           },
           "required": true
@@ -5380,31 +8305,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/subject-areas": {
       "get": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubjectArea" }
+            "schema": {
+              "$ref": "#/components/schemas/SubjectArea"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           },
           {
             "name": "languageId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -5419,15 +8359,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubjectArea" }
+              "schema": {
+                "$ref": "#/components/schemas/SubjectArea"
+              }
             }
           },
           "required": true
@@ -5437,62 +8388,101 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubjectArea" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubjectArea"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/subject-areas/search": {
       "get": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubjectArea" }
+            "schema": {
+              "$ref": "#/components/schemas/SubjectArea"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           },
           {
             "name": "languageId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -5507,29 +8497,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubjectArea" }
+              "schema": {
+                "$ref": "#/components/schemas/SubjectArea"
+              }
             }
           },
           "required": true
@@ -5546,48 +8551,77 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/subject-areas/initialize": {
       "post": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_initialize",
         "parameters": [
           {
             "name": "source",
             "in": "query",
             "required": false,
-            "schema": { "type": "string", "default": "SNF" }
+            "schema": {
+              "type": "string",
+              "default": "SNF"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/scheduled-tasks": {
       "get": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ScheduledTask" }
+            "schema": {
+              "$ref": "#/components/schemas/ScheduledTask"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -5602,15 +8636,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ScheduledTask" }
+              "schema": {
+                "$ref": "#/components/schemas/ScheduledTask"
+              }
             }
           },
           "required": true
@@ -5620,72 +8665,124 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ScheduledTask" }
+                "schema": {
+                  "$ref": "#/components/schemas/ScheduledTask"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/scheduled-tasks/{id}/kill-task": {
       "post": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_by_id_kill-task",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/scheduled-tasks/search": {
       "get": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ScheduledTask" }
+            "schema": {
+              "$ref": "#/components/schemas/ScheduledTask"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -5700,29 +8797,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ScheduledTask" }
+              "schema": {
+                "$ref": "#/components/schemas/ScheduledTask"
+              }
             }
           },
           "required": true
@@ -5739,41 +8851,80 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/scheduled-tasks/schedule-enabled-tasks": {
       "post": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_schedule-enabled-tasks",
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/scheduled-tasks/disable-tasks-scheduling": {
       "post": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_disable-tasks-scheduling",
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/roles": {
       "get": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Role" }
+            "schema": {
+              "$ref": "#/components/schemas/Role"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -5781,20 +8932,33 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionRole" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionRole"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Role" }
+              "schema": {
+                "$ref": "#/components/schemas/Role"
+              }
             }
           },
           "required": true
@@ -5803,55 +8967,94 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Role" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Role"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/roles/search": {
       "get": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Role" }
+            "schema": {
+              "$ref": "#/components/schemas/Role"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -5859,34 +9062,51 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionRole" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionRole"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Role" }
+              "schema": {
+                "$ref": "#/components/schemas/Role"
+              }
             }
           },
           "required": true
@@ -5896,30 +9116,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionRole" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionRole"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/rating-types": {
       "get": {
-        "tags": ["admin/rating-types"],
+        "tags": [
+          "admin/rating-types"
+        ],
         "operationId": "admin_rating-types_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/RatingType" }
+            "schema": {
+              "$ref": "#/components/schemas/RatingType"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -5934,15 +9169,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/rating-types"],
+        "tags": [
+          "admin/rating-types"
+        ],
         "operationId": "admin_rating-types_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/RatingType" }
+              "schema": {
+                "$ref": "#/components/schemas/RatingType"
+              }
             }
           },
           "required": true
@@ -5951,41 +9197,62 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/RatingType" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/RatingType"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/rating-types/search": {
       "get": {
-        "tags": ["admin/rating-types"],
+        "tags": [
+          "admin/rating-types"
+        ],
         "operationId": "admin_rating-types_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/RatingType" }
+            "schema": {
+              "$ref": "#/components/schemas/RatingType"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -6000,29 +9267,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/rating-types"],
+        "tags": [
+          "admin/rating-types"
+        ],
         "operationId": "admin_rating-types_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/RatingType" }
+              "schema": {
+                "$ref": "#/components/schemas/RatingType"
+              }
             }
           },
           "required": true
@@ -6039,25 +9321,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/preservation-policies": {
       "get": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/PreservationPolicy"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -6072,15 +9367,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+              "schema": {
+                "$ref": "#/components/schemas/PreservationPolicy"
+              }
             }
           },
           "required": true
@@ -6090,56 +9396,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/PreservationPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/preservation-policies/search": {
       "get": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/PreservationPolicy"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -6154,29 +9497,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+              "schema": {
+                "$ref": "#/components/schemas/PreservationPolicy"
+              }
             }
           },
           "required": true
@@ -6193,25 +9551,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Person" }
+            "schema": {
+              "$ref": "#/components/schemas/Person"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -6226,15 +9597,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Person" }
+              "schema": {
+                "$ref": "#/components/schemas/Person"
+              }
             }
           },
           "required": true
@@ -6243,49 +9625,86 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/organizational-units": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterOrgUnit",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "schema": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -6300,23 +9719,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -6336,46 +9771,79 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/organizational-units/{id}": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -6390,29 +9858,47 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -6432,50 +9918,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -6503,31 +10024,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/organizational-units/{id}/{grandChildId}": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -6542,29 +10078,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResource",
@@ -6587,29 +10138,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -6617,7 +10183,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -6635,31 +10203,49 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/organizational-units/{id}/set-role": {
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_organizational-units_by_id_set-role",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -6747,31 +10333,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/notification-types": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_notification-types_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/NotificationType" }
+            "schema": {
+              "$ref": "#/components/schemas/NotificationType"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -6786,23 +10387,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_notification-types_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -6814,88 +10431,142 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/NotificationType" }
+                  "items": {
+                    "$ref": "#/components/schemas/NotificationType"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_notification-types_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/list-inherited-role/organizational-units/{id}": {
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_list-inherited-role_organizational-units_by_id_getInheritedRole",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Role" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Role"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/institutions": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterInstitution",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Institution" }
+            "schema": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -6910,23 +10581,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -6946,46 +10633,79 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/institutions/{id}": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -7000,29 +10720,47 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -7042,56 +10780,93 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/InstitutionPersonRole" }
+              "schema": {
+                "$ref": "#/components/schemas/InstitutionPersonRole"
+              }
             }
           },
           "required": true
@@ -7111,31 +10886,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/institutions/{id}/{grandChildId}": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -7150,35 +10940,52 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/InstitutionPersonRole" }
+            "schema": {
+              "$ref": "#/components/schemas/InstitutionPersonRole"
+            }
           }
         ],
         "responses": {
@@ -7193,29 +11000,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -7223,7 +11045,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -7241,31 +11065,49 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/institutions/{id}/set-role": {
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_institutions_by_id_set-role",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -7353,35 +11195,53 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{id}/upload-avatar": {
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_upload-avatar",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -7391,41 +11251,62 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/search": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_search_advancedSearch_get",
         "parameters": [
           {
             "name": "person",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Person" }
+            "schema": {
+              "$ref": "#/components/schemas/Person"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -7440,29 +11321,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Person" }
+              "schema": {
+                "$ref": "#/components/schemas/Person"
+              }
             }
           },
           "required": true
@@ -7479,25 +11375,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "schema": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -7512,15 +11421,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+              "schema": {
+                "$ref": "#/components/schemas/OrganizationalUnit"
+              }
             }
           },
           "required": true
@@ -7530,50 +11450,85 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/submission-policies": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_submission-policies_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/SubmissionPolicy"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -7588,23 +11543,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_submission-policies_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -7624,46 +11595,79 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_submission-policies_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/submission-policies/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_submission-policies_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -7678,23 +11682,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_submission-policies_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -7719,43 +11736,73 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_submission-policies_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_submission-policies_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -7780,31 +11827,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/subject-areas": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_subject-areas_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SubjectArea" }
+            "schema": {
+              "$ref": "#/components/schemas/SubjectArea"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -7819,23 +11881,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_subject-areas_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -7847,59 +11925,96 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/SubjectArea" }
+                  "items": {
+                    "$ref": "#/components/schemas/SubjectArea"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_subject-areas_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/roles": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterRole",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Role" }
+            "schema": {
+              "$ref": "#/components/schemas/Role"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -7914,23 +12029,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -7950,46 +12081,79 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/roles/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -8004,29 +12168,47 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -8046,50 +12228,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -8117,31 +12334,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/roles/{id}/{grandChildId}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_by_id_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -8156,29 +12388,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_by_id_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResource",
@@ -8201,29 +12448,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_roles_by_id_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -8231,7 +12493,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -8249,31 +12513,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/preservation-policies": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_preservation-policies_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/PreservationPolicy"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -8288,23 +12567,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_preservation-policies_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -8324,46 +12619,79 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_preservation-policies_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/preservation-policies/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_preservation-policies_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -8378,23 +12706,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_preservation-policies_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -8419,43 +12760,73 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_preservation-policies_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_preservation-policies_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -8480,31 +12851,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/people": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterPerson",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Person" }
+            "schema": {
+              "$ref": "#/components/schemas/Person"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -8519,23 +12905,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -8555,46 +12957,79 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/people/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -8609,29 +13044,47 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -8651,50 +13104,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -8722,31 +13210,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/people/{id}/{grandChildId}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -8761,29 +13264,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResource",
@@ -8806,29 +13324,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -8836,7 +13369,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -8854,31 +13389,49 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/people/{id}/set-role": {
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_people_by_id_set-role",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -8966,19 +13519,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/list-inherited-person-roles": {
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_list-inherited-person-roles",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -9000,26 +13564,34 @@
     },
     "/admin/organizational-units/{parentid}/institutions": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_institutions_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Institution" }
+            "schema": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9034,23 +13606,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_institutions_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -9062,59 +13650,96 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/Institution" }
+                  "items": {
+                    "$ref": "#/components/schemas/Institution"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_institutions_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/funding-agencies": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_funding-agencies_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/FundingAgency" }
+            "schema": {
+              "$ref": "#/components/schemas/FundingAgency"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9129,23 +13754,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_funding-agencies_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -9157,59 +13798,96 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/FundingAgency" }
+                  "items": {
+                    "$ref": "#/components/schemas/FundingAgency"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_funding-agencies_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/dissemination-policies": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_dissemination-policies_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/DisseminationPolicy"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9224,23 +13902,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_dissemination-policies_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -9260,52 +13954,87 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_dissemination-policies_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/dissemination-policies/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_dissemination-policies_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResourceId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -9320,23 +14049,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_dissemination-policies_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -9361,49 +14103,81 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_dissemination-policies_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResourceId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_dissemination-policies_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -9428,31 +14202,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/additional-fields-forms": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/AdditionalFieldsForm" }
+            "schema": {
+              "$ref": "#/components/schemas/AdditionalFieldsForm"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9467,23 +14256,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/AdditionalFieldsForm" }
+              "schema": {
+                "$ref": "#/components/schemas/AdditionalFieldsForm"
+              }
             }
           },
           "required": true
@@ -9500,57 +14302,95 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{id}/upload-logo": {
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_upload-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -9561,64 +14401,100 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{id}/close": {
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_close",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "closingDate",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/search": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "schema": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9633,29 +14509,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+              "schema": {
+                "$ref": "#/components/schemas/OrganizationalUnit"
+              }
             }
           },
           "required": true
@@ -9672,12 +14563,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/orcid-synchronizations": {
       "get": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_list",
         "parameters": [
           {
@@ -9692,7 +14592,9 @@
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9707,10 +14609,19 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_create",
         "requestBody": {
           "content": {
@@ -9734,58 +14645,115 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/orcid-synchronizations/synchronize/{aipId}": {
       "post": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_synchronize_by_id_synchronize",
         "parameters": [
           {
             "name": "aipId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/orcid-synchronizations/synchronize-all-existing/{aipId}": {
       "post": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_synchronize-all-existing_by_id_synchronizeAllExisting",
         "parameters": [
           {
             "name": "aipId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/orcid-synchronizations/search": {
       "get": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_search_advancedSearch_get",
         "parameters": [
           {
@@ -9800,19 +14768,25 @@
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9827,23 +14801,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -9868,25 +14855,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Notification" }
+            "schema": {
+              "$ref": "#/components/schemas/Notification"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -9901,15 +14901,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Notification" }
+              "schema": {
+                "$ref": "#/components/schemas/Notification"
+              }
             }
           },
           "required": true
@@ -9919,54 +14930,92 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/upload-dua": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_upload-dua",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -9977,24 +15026,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/set-unread": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_set-unread",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -10002,30 +15064,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/set-refused": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_set-refused",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "reason",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -10033,24 +15110,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/set-read": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_set-read",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -10058,24 +15148,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/set-pending": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_set-pending",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -10083,24 +15186,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/set-approved": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_set-approved",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -10108,74 +15224,129 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/set-unread-all": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_set-unread-all",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/set-read-all": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_set-read-all",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/search": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Notification" }
+            "schema": {
+              "$ref": "#/components/schemas/Notification"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10190,29 +15361,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Notification" }
+              "schema": {
+                "$ref": "#/components/schemas/Notification"
+              }
             }
           },
           "required": true
@@ -10229,12 +15415,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/by-contributors": {
       "post": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by-contributors_createForContributors",
         "requestBody": {
           "content": {
@@ -10253,31 +15448,46 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/Notification" }
+                  "items": {
+                    "$ref": "#/components/schemas/Notification"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/metadata-types": {
       "get": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_list",
         "parameters": [
           {
             "name": "metadataType",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/MetadataType" }
+            "schema": {
+              "$ref": "#/components/schemas/MetadataType"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10292,15 +15502,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/MetadataType" }
+              "schema": {
+                "$ref": "#/components/schemas/MetadataType"
+              }
             }
           },
           "required": true
@@ -10310,48 +15531,84 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/MetadataType" }
+                "schema": {
+                  "$ref": "#/components/schemas/MetadataType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/metadata-types/{id}/validate": {
       "post": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_by_id_validate",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -10360,40 +15617,63 @@
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "boolean" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "boolean"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/metadata-types/search": {
       "get": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_search_advancedSearch_get",
         "parameters": [
           {
             "name": "metadataType",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/MetadataType" }
+            "schema": {
+              "$ref": "#/components/schemas/MetadataType"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10408,29 +15688,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/MetadataType" }
+              "schema": {
+                "$ref": "#/components/schemas/MetadataType"
+              }
             }
           },
           "required": true
@@ -10447,46 +15742,74 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/metadata-types/initialize": {
       "post": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_initialize",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/members/{parentid}/institutions": {
       "get": {
-        "tags": ["admin/members"],
+        "tags": [
+          "admin/members"
+        ],
         "operationId": "admin_members_by_id_institutions_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Institution" }
+            "schema": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10501,23 +15824,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/members"],
+        "tags": [
+          "admin/members"
+        ],
         "operationId": "admin_members_by_id_institutions_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -10529,53 +15868,88 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/Institution" }
+                  "items": {
+                    "$ref": "#/components/schemas/Institution"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/members"],
+        "tags": [
+          "admin/members"
+        ],
         "operationId": "admin_members_by_id_institutions_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses": {
       "get": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_list",
         "parameters": [
           {
             "name": "license",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/License" }
+            "schema": {
+              "$ref": "#/components/schemas/License"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10590,15 +15964,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/License" }
+              "schema": {
+                "$ref": "#/components/schemas/License"
+              }
             }
           },
           "required": true
@@ -10607,53 +15992,93 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/License" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/License"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses/{id}/upload-logo": {
       "post": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_by_id_upload-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -10663,41 +16088,62 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/License" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/License"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses/search": {
       "get": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_search_advancedSearch_get",
         "parameters": [
           {
             "name": "license",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/License" }
+            "schema": {
+              "$ref": "#/components/schemas/License"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10712,29 +16158,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/License" }
+              "schema": {
+                "$ref": "#/components/schemas/License"
+              }
             }
           },
           "required": true
@@ -10751,12 +16212,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses/import/list": {
       "post": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_import_list_createList",
         "requestBody": {
           "content": {
@@ -10765,7 +16235,9 @@
                 "type": "array",
                 "items": {
                   "type": "object",
-                  "additionalProperties": { "type": "object" }
+                  "additionalProperties": {
+                    "type": "object"
+                  }
                 }
               }
             }
@@ -10775,24 +16247,44 @@
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses/import/file": {
       "post": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_import_file_importJson",
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -10801,28 +16293,47 @@
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/languages": {
       "get": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Language" }
+            "schema": {
+              "$ref": "#/components/schemas/Language"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10837,15 +16348,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Language" }
+              "schema": {
+                "$ref": "#/components/schemas/Language"
+              }
             }
           },
           "required": true
@@ -10854,55 +16376,94 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Language" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Language"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/languages/search": {
       "get": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Language" }
+            "schema": {
+              "$ref": "#/components/schemas/Language"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10917,29 +16478,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Language" }
+              "schema": {
+                "$ref": "#/components/schemas/Language"
+              }
             }
           },
           "required": true
@@ -10956,25 +16532,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_list",
         "parameters": [
           {
             "name": "institution",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Institution" }
+            "schema": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -10989,15 +16578,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Institution" }
+              "schema": {
+                "$ref": "#/components/schemas/Institution"
+              }
             }
           },
           "required": true
@@ -11007,50 +16607,85 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/people": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterPerson",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Person" }
+            "schema": {
+              "$ref": "#/components/schemas/Person"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -11065,23 +16700,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -11101,46 +16752,79 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/people/{id}": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -11155,29 +16839,47 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -11197,56 +16899,93 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/InstitutionPersonRole" }
+              "schema": {
+                "$ref": "#/components/schemas/InstitutionPersonRole"
+              }
             }
           },
           "required": true
@@ -11266,31 +17005,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/people/{id}/{grandChildId}": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -11305,35 +17059,52 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_by_id_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "joinResource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/InstitutionPersonRole" }
+            "schema": {
+              "$ref": "#/components/schemas/InstitutionPersonRole"
+            }
           }
         ],
         "responses": {
@@ -11348,29 +17119,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grandChildId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -11378,7 +17164,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -11396,31 +17184,49 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/people/{id}/set-role": {
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_people_by_id_set-role",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -11508,31 +17314,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/organizational-units": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_organizational-units_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "schema": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -11547,23 +17368,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_organizational-units_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -11575,59 +17412,96 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                  "items": {
+                    "$ref": "#/components/schemas/OrganizationalUnit"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_organizational-units_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/members": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_members_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Person" }
+            "schema": {
+              "$ref": "#/components/schemas/Person"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -11642,23 +17516,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_members_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -11670,63 +17560,103 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/Person" }
+                  "items": {
+                    "$ref": "#/components/schemas/Person"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_members_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{id}/upload-logo": {
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_upload-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -11737,42 +17667,61 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/search": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_search_advancedSearch_get",
         "parameters": [
           {
             "name": "institution",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Institution" }
+            "schema": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -11787,29 +17736,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Institution" }
+              "schema": {
+                "$ref": "#/components/schemas/Institution"
+              }
             }
           },
           "required": true
@@ -11826,25 +17790,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/global-banners": {
       "get": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+            "schema": {
+              "$ref": "#/components/schemas/GlobalBanner"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -11859,15 +17836,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+              "schema": {
+                "$ref": "#/components/schemas/GlobalBanner"
+              }
             }
           },
           "required": true
@@ -11877,56 +17865,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+                "schema": {
+                  "$ref": "#/components/schemas/GlobalBanner"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/global-banners/search": {
       "get": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+            "schema": {
+              "$ref": "#/components/schemas/GlobalBanner"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -11941,29 +17966,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+              "schema": {
+                "$ref": "#/components/schemas/GlobalBanner"
+              }
             }
           },
           "required": true
@@ -11980,25 +18020,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies": {
       "get": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/FundingAgency" }
+            "schema": {
+              "$ref": "#/components/schemas/FundingAgency"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12013,15 +18066,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/FundingAgency" }
+              "schema": {
+                "$ref": "#/components/schemas/FundingAgency"
+              }
             }
           },
           "required": true
@@ -12031,50 +18095,85 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/FundingAgency" }
+                "schema": {
+                  "$ref": "#/components/schemas/FundingAgency"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies/{parentid}/organizational-units": {
       "get": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_organizational-units_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "schema": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12089,23 +18188,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_organizational-units_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -12117,63 +18232,103 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                  "items": {
+                    "$ref": "#/components/schemas/OrganizationalUnit"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_organizational-units_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies/{id}/upload-logo": {
       "post": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_upload-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -12184,42 +18339,61 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/FundingAgency" }
+                "schema": {
+                  "$ref": "#/components/schemas/FundingAgency"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies/search": {
       "get": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/FundingAgency" }
+            "schema": {
+              "$ref": "#/components/schemas/FundingAgency"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12234,29 +18408,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/FundingAgency" }
+              "schema": {
+                "$ref": "#/components/schemas/FundingAgency"
+              }
             }
           },
           "required": true
@@ -12273,25 +18462,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/dissemination-policies": {
       "get": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_list",
         "parameters": [
           {
             "name": "disseminationPolicy",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/DisseminationPolicy"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12306,15 +18508,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+              "schema": {
+                "$ref": "#/components/schemas/DisseminationPolicy"
+              }
             }
           },
           "required": true
@@ -12324,56 +18537,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/DisseminationPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/dissemination-policies/search": {
       "get": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_search_advancedSearch_get",
         "parameters": [
           {
             "name": "disseminationPolicy",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+            "schema": {
+              "$ref": "#/components/schemas/DisseminationPolicy"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12388,29 +18638,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+              "schema": {
+                "$ref": "#/components/schemas/DisseminationPolicy"
+              }
             }
           },
           "required": true
@@ -12427,25 +18692,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-types": {
       "get": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveType" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveType"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12460,15 +18738,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveType" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveType"
+              }
             }
           },
           "required": true
@@ -12478,56 +18767,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveType" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-types/search": {
       "get": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveType" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveType"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12542,29 +18868,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveType" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveType"
+              }
             }
           },
           "required": true
@@ -12581,25 +18922,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-statistics": {
       "get": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveStatistics" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveStatistics"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12614,15 +18968,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveStatistics" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveStatistics"
+              }
             }
           },
           "required": true
@@ -12632,88 +18997,137 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveStatistics" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveStatistics"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-statistics/{id}/add-view": {
       "post": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_by_id_add-view",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-statistics/{id}/add-download": {
       "post": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_by_id_add-download",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-statistics/search": {
       "get": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveStatistics" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveStatistics"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12728,29 +19142,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveStatistics" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveStatistics"
+              }
             }
           },
           "required": true
@@ -12767,25 +19196,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-ratings": {
       "get": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveUserRating"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12800,15 +19242,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveUserRating"
+              }
             }
           },
           "required": true
@@ -12818,56 +19271,93 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveUserRating"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-ratings/search": {
       "get": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveUserRating"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12882,29 +19372,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
-          },
+            "schema": {
+              "type": "string"
+            }
+          },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveUserRating"
+              }
             }
           },
           "required": true
@@ -12921,25 +19426,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl": {
       "get": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveACL" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveACL"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -12954,15 +19472,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveACL" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveACL"
+              }
             }
           },
           "required": true
@@ -12971,65 +19500,109 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/ArchiveACL" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveACL"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/upload-dua": {
       "post": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_upload-dua_createItemAndUploadFile",
         "parameters": [
           {
             "name": "archiveId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "userId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "organizationalUnitId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "mimeType",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "required": ["file"],
+                "required": [
+                  "file"
+                ],
                 "type": "object",
                 "properties": {
-                  "file": { "type": "string", "format": "binary" }
+                  "file": {
+                    "type": "string",
+                    "format": "binary"
+                  }
                 }
               }
             }
@@ -13039,41 +19612,62 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/ArchiveACL" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveACL"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/search": {
       "get": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveACL" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveACL"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13088,29 +19682,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveACL" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveACL"
+              }
             }
           },
           "required": true
@@ -13127,48 +19736,76 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/create-from-notification/{id}": {
       "post": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_create-from-notification_by_id_createFromNotification",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/ArchiveACL" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveACL"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/application-roles": {
       "get": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SolidifyApplicationRole" }
+            "schema": {
+              "$ref": "#/components/schemas/SolidifyApplicationRole"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13183,10 +19820,19 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_create",
         "requestBody": {
           "content": {
@@ -13210,51 +19856,86 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/application-roles/search": {
       "get": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/SolidifyApplicationRole" }
+            "schema": {
+              "$ref": "#/components/schemas/SolidifyApplicationRole"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13269,23 +19950,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -13310,43 +20004,82 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/refresh/{aipId}": {
       "post": {
-        "tags": ["access/refresh"],
+        "tags": [
+          "access/refresh"
+        ],
         "operationId": "access_refresh_by_id_refresh",
         "parameters": [
           {
             "name": "aipId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/purge-temporary-folder": {
       "post": {
-        "tags": ["access/purge-temporary-folder"],
+        "tags": [
+          "access/purge-temporary-folder"
+        ],
         "operationId": "access_purge-temporary-folder_purgeContentTempFolder",
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/{aipId}/prepare-download": {
       "post": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_by_id_prepare-download",
         "parameters": [
           {
             "name": "aipId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -13361,28 +20094,47 @@
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/search": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_search_get",
         "parameters": [
           {
             "name": "query",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13397,17 +20149,28 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_search_post",
         "parameters": [
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -13415,7 +20178,9 @@
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             },
             "application/x-www-form-urlencoded": {
@@ -13438,25 +20203,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Order" }
+            "schema": {
+              "$ref": "#/components/schemas/Order"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13464,20 +20242,33 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionOrder" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionOrder"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Order" }
+              "schema": {
+                "$ref": "#/components/schemas/Order"
+              }
             }
           },
           "required": true
@@ -13486,37 +20277,70 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Order" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Order"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{parentid}/dip": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_dip_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
@@ -13530,7 +20354,9 @@
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13545,23 +20371,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_dip_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -13581,53 +20423,88 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_dip_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{parentid}/aip": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_aip_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13642,23 +20519,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_aip_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -13678,151 +20571,248 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_aip_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/submit": {
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_submit",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/save": {
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_save",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Order" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Order"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/resume": {
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_resume",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/put-in-error": {
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/search": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Order" }
+            "schema": {
+              "$ref": "#/components/schemas/Order"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13830,34 +20820,51 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionOrder" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionOrder"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Order" }
+              "schema": {
+                "$ref": "#/components/schemas/Order"
+              }
             }
           },
           "required": true
@@ -13867,30 +20874,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionOrder" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionOrder"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{parentid}/ratings": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_ratings_getArchiveUserRating",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -13905,29 +20927,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_ratings_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "ratingType",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "grade",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -13935,42 +20972,72 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveUserRating"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_ratings_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_ratings_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveUserRating"
+              }
             }
           },
           "required": true
@@ -13980,24 +21047,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveUserRating"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{aipId}/prepare-download": {
       "post": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_prepare-download",
         "parameters": [
           {
             "name": "aipId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -14012,28 +21092,47 @@
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/search": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_search_get",
         "parameters": [
           {
             "name": "query",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14048,17 +21147,28 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_search_post",
         "parameters": [
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -14066,7 +21176,9 @@
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             },
             "application/x-www-form-urlencoded": {
@@ -14089,12 +21201,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_list",
         "parameters": [
           {
@@ -14109,7 +21230,9 @@
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14124,10 +21247,19 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_create",
         "requestBody": {
           "content": {
@@ -14151,45 +21283,78 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/data": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DipDataFile" }
+            "schema": {
+              "$ref": "#/components/schemas/DipDataFile"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14204,23 +21369,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/DipDataFile" }
+              "schema": {
+                "$ref": "#/components/schemas/DipDataFile"
+              }
             }
           },
           "required": true
@@ -14230,87 +21408,141 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/data/{id}/resume": {
       "post": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_by_id_resume",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/aip": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_aip_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14325,23 +21557,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_aip_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -14361,80 +21609,139 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_aip_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{id}/resume": {
       "post": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_resume",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{id}/put-in-error": {
       "post": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/search": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_search_advancedSearch_get",
         "parameters": [
           {
@@ -14449,19 +21756,25 @@
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14476,23 +21789,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -14517,19 +21843,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/{aipId}/prepare-download": {
       "post": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_by_id_prepare-download",
         "parameters": [
           {
             "name": "aipId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -14544,28 +21881,47 @@
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/search": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_search_get",
         "parameters": [
           {
             "name": "query",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14580,17 +21936,28 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_search_post",
         "parameters": [
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
@@ -14598,7 +21965,9 @@
             "application/json": {
               "schema": {
                 "type": "array",
-                "items": { "$ref": "#/components/schemas/SearchCondition" }
+                "items": {
+                  "$ref": "#/components/schemas/SearchCondition"
+                }
               }
             },
             "application/x-www-form-urlencoded": {
@@ -14621,25 +21990,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14654,15 +22036,26 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_create",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -14672,50 +22065,85 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_deleteList",
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/AipDataFile" }
+            "schema": {
+              "$ref": "#/components/schemas/AipDataFile"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14730,23 +22158,36 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/AipDataFile" }
+              "schema": {
+                "$ref": "#/components/schemas/AipDataFile"
+              }
             }
           },
           "required": true
@@ -14756,116 +22197,187 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/AipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/AipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data/{id}/resume": {
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_resume",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data/{id}/put-in-error": {
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/aip": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_aip_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -14880,23 +22392,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_aip_create",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
@@ -14916,105 +22444,172 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_aip_deleteList",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "type": "array", "items": { "type": "string" } }
+              "schema": {
+                "type": "array",
+                "items": {
+                  "type": "string"
+                }
+              }
             }
           },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{id}/resume": {
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_resume",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{id}/put-in-error": {
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_put-in-error_putInError",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Result" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Result"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/search": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_search_advancedSearch_get",
         "parameters": [
           {
             "name": "resource",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -15029,29 +22624,44 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "post": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_search_advancedSearch_post",
         "parameters": [
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -15068,25 +22678,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/{id}": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15094,48 +22717,80 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/JobExecution" }
+                "schema": {
+                  "$ref": "#/components/schemas/JobExecution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -15143,7 +22798,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -15154,24 +22811,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/JobExecution" }
+                "schema": {
+                  "$ref": "#/components/schemas/JobExecution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{id}": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15179,36 +22849,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/PreservationJob" }
+                "schema": {
+                  "$ref": "#/components/schemas/PreservationJob"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -15216,7 +22914,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -15227,30 +22927,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/PreservationJob" }
+                "schema": {
+                  "$ref": "#/components/schemas/PreservationJob"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/submission-agreements/{id}": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_submission-agreements_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15258,54 +22973,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_submission-agreements_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_submission-agreements_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+              "schema": {
+                "$ref": "#/components/schemas/SubmissionAgreement"
+              }
             }
           },
           "required": true
@@ -15315,30 +23064,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/subject-areas/{id}": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_subject-areas_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15346,54 +23110,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubjectArea" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubjectArea"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_subject-areas_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_subject-areas_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubjectArea" }
+              "schema": {
+                "$ref": "#/components/schemas/SubjectArea"
+              }
             }
           },
           "required": true
@@ -15403,83 +23201,134 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubjectArea" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubjectArea"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
-      }
-    },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
+      }
+    },
     "/preingest/deposits/{parentid}/licenses/{id}": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_licenses_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/License" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/License"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_licenses_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_licenses_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/License" }
+              "schema": {
+                "$ref": "#/components/schemas/License"
+              }
             }
           },
           "required": true
@@ -15488,29 +23337,46 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/License" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/License"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/{id}": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15518,48 +23384,80 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DepositDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -15567,7 +23465,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -15578,83 +23478,134 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DepositDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/contributors/{id}": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_contributors_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_contributors_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_contributors_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Person" }
+              "schema": {
+                "$ref": "#/components/schemas/Person"
+              }
             }
           },
           "required": true
@@ -15663,29 +23614,46 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/aip/{id}": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_aip_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15693,54 +23661,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_aip_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_aip_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -15750,59 +23752,102 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Deposit" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Deposit"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -15810,7 +23855,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -15820,58 +23867,103 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Deposit" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Deposit"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/oai-info/oai-sets/{id}": {
       "get": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/OAISet" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/OAISet"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["oai-info/oai-sets"],
+        "tags": [
+          "oai-info/oai-sets"
+        ],
         "operationId": "oai-info_oai-sets_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -15879,7 +23971,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -15889,23 +23983,38 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/OAISet" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/OAISet"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/oai-info/oai-metadata-prefixes/{id}": {
       "get": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15913,36 +24022,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+                "schema": {
+                  "$ref": "#/components/schemas/OAIMetadataPrefix"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["oai-info/oai-metadata-prefixes"],
+        "tags": [
+          "oai-info/oai-metadata-prefixes"
+        ],
         "operationId": "oai-info_oai-metadata-prefixes_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -15950,7 +24087,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -15961,30 +24100,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+                "schema": {
+                  "$ref": "#/components/schemas/OAIMetadataPrefix"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/data/{id}": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15992,48 +24146,80 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/SipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -16041,7 +24227,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -16052,30 +24240,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/SipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/aip/{id}": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16083,54 +24286,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -16140,24 +24377,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16172,31 +24422,57 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -16204,7 +24480,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -16222,19 +24500,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/settings/{id}": {
       "get": {
-        "tags": ["index/settings"],
+        "tags": [
+          "index/settings"
+        ],
         "operationId": "index_settings_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16242,42 +24531,72 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/IndexProperties" }
+                "schema": {
+                  "$ref": "#/components/schemas/IndexProperties"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["index/settings"],
+        "tags": [
+          "index/settings"
+        ],
         "operationId": "index_settings_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["index/settings"],
+        "tags": [
+          "index/settings"
+        ],
         "operationId": "index_settings_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/IndexProperties" }
+              "schema": {
+                "$ref": "#/components/schemas/IndexProperties"
+              }
             }
           },
           "required": true
@@ -16287,24 +24606,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/IndexProperties" }
+                "schema": {
+                  "$ref": "#/components/schemas/IndexProperties"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/index-field-aliases/{id}": {
       "get": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16312,36 +24644,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/IndexFieldAlias" }
+                "schema": {
+                  "$ref": "#/components/schemas/IndexFieldAlias"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -16349,7 +24709,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -16360,24 +24722,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/IndexFieldAlias" }
+                "schema": {
+                  "$ref": "#/components/schemas/IndexFieldAlias"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/public-di/{id}": {
       "get": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16385,42 +24760,72 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["data-mgmt/public-di"],
+        "tags": [
+          "data-mgmt/public-di"
+        ],
         "operationId": "data-mgmt_public-di_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveMetadata"
+              }
             }
           },
           "required": true
@@ -16430,24 +24835,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/private-di/{id}": {
       "get": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16455,42 +24873,72 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["data-mgmt/private-di"],
+        "tags": [
+          "data-mgmt/private-di"
+        ],
         "operationId": "data-mgmt_private-di_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveMetadata"
+              }
             }
           },
           "required": true
@@ -16500,24 +24948,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/di/{id}": {
       "get": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16525,42 +24986,72 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["data-mgmt/di"],
+        "tags": [
+          "data-mgmt/di"
+        ],
         "operationId": "data-mgmt_di_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchiveMetadata"
+              }
             }
           },
           "required": true
@@ -16570,24 +25061,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/archive-public-data/{id}": {
       "get": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "dataFileType",
@@ -16595,7 +25099,11 @@
             "required": true,
             "schema": {
               "type": "string",
-              "enum": ["ARCHIVE_THUMBNAIL", "ARCHIVE_README", "ARCHIVE_DUA"]
+              "enum": [
+                "ARCHIVE_THUMBNAIL",
+                "ARCHIVE_README",
+                "ARCHIVE_DUA"
+              ]
             }
           }
         ],
@@ -16604,36 +25112,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivePublicData"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -16641,7 +25177,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -16652,65 +25190,110 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivePublicData"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/stored-aip/{id}": {
       "get": {
-        "tags": ["archival-storage/stored-aip"],
+        "tags": [
+          "archival-storage/stored-aip"
+        ],
         "operationId": "archival-storage_stored-aip_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/StoredAIP" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/StoredAIP"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/stored-aip"],
+        "tags": [
+          "archival-storage/stored-aip"
+        ],
         "operationId": "archival-storage_stored-aip_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["archival-storage/stored-aip"],
+        "tags": [
+          "archival-storage/stored-aip"
+        ],
         "operationId": "archival-storage_stored-aip_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/StoredAIP" }
+              "schema": {
+                "$ref": "#/components/schemas/StoredAIP"
+              }
             }
           },
           "required": true
@@ -16719,29 +25302,46 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/StoredAIP" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/StoredAIP"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data/{id}": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16749,48 +25349,80 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/AipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/AipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -16798,7 +25430,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -16809,30 +25443,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/AipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/AipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/aip/{id}": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_aip_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16840,54 +25489,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_aip_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_aip_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -16897,24 +25580,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -16922,36 +25618,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -16959,7 +25683,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -16970,59 +25696,102 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/users/{id}": {
       "get": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/User" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/User"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17030,7 +25799,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17040,23 +25811,38 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/User" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/User"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-policies/{id}": {
       "get": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17064,36 +25850,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/submission-policies"],
+        "tags": [
+          "admin/submission-policies"
+        ],
         "operationId": "admin_submission-policies_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17101,7 +25915,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17112,24 +25928,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/{id}": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17137,36 +25966,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17174,7 +26031,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17185,24 +26044,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/subject-areas/{id}": {
       "get": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17210,36 +26082,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubjectArea" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubjectArea"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17247,7 +26147,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17258,24 +26160,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubjectArea" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubjectArea"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/scheduled-tasks/{id}": {
       "get": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17283,36 +26198,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ScheduledTask" }
+                "schema": {
+                  "$ref": "#/components/schemas/ScheduledTask"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/scheduled-tasks"],
+        "tags": [
+          "admin/scheduled-tasks"
+        ],
         "operationId": "admin_scheduled-tasks_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17320,7 +26263,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17331,59 +26276,102 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ScheduledTask" }
+                "schema": {
+                  "$ref": "#/components/schemas/ScheduledTask"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/roles/{id}": {
       "get": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Role" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Role"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/roles"],
+        "tags": [
+          "admin/roles"
+        ],
         "operationId": "admin_roles_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17391,7 +26379,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17401,23 +26391,38 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Role" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Role"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/preservation-policies/{id}": {
       "get": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17425,36 +26430,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/PreservationPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/preservation-policies"],
+        "tags": [
+          "admin/preservation-policies"
+        ],
         "operationId": "admin_preservation-policies_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17462,7 +26495,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17473,30 +26508,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/PreservationPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/PreservationPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{parentid}/notification-types/{id}": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_notification-types_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17504,54 +26554,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/NotificationType" }
+                "schema": {
+                  "$ref": "#/components/schemas/NotificationType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_notification-types_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_notification-types_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/NotificationType" }
+              "schema": {
+                "$ref": "#/components/schemas/NotificationType"
+              }
             }
           },
           "required": true
@@ -17561,24 +26645,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/NotificationType" }
+                "schema": {
+                  "$ref": "#/components/schemas/NotificationType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{id}": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "identifierType",
@@ -17602,35 +26699,65 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17638,7 +26765,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -17648,29 +26777,46 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/subject-areas/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_subject-areas_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17678,54 +26824,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubjectArea" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubjectArea"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_subject-areas_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_subject-areas_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/SubjectArea" }
+              "schema": {
+                "$ref": "#/components/schemas/SubjectArea"
+              }
             }
           },
           "required": true
@@ -17735,30 +26915,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubjectArea" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubjectArea"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/institutions/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_institutions_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17766,54 +26961,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_institutions_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_institutions_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Institution" }
+              "schema": {
+                "$ref": "#/components/schemas/Institution"
+              }
             }
           },
           "required": true
@@ -17823,30 +27052,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/funding-agencies/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_funding-agencies_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17854,54 +27098,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/FundingAgency" }
+                "schema": {
+                  "$ref": "#/components/schemas/FundingAgency"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_funding-agencies_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_funding-agencies_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/FundingAgency" }
+              "schema": {
+                "$ref": "#/components/schemas/FundingAgency"
+              }
             }
           },
           "required": true
@@ -17911,30 +27189,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/FundingAgency" }
+                "schema": {
+                  "$ref": "#/components/schemas/FundingAgency"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/additional-fields-forms/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17949,43 +27242,73 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -17993,7 +27316,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18011,19 +27336,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{id}": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18031,36 +27367,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18068,7 +27432,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18079,24 +27445,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/orcid-synchronizations/{id}": {
       "get": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18111,31 +27490,57 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/orcid-synchronizations"],
+        "tags": [
+          "admin/orcid-synchronizations"
+        ],
         "operationId": "admin_orcid-synchronizations_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18143,7 +27548,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18161,19 +27568,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18181,36 +27599,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18218,7 +27664,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18229,24 +27677,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/metadata-types/{id}": {
       "get": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18254,36 +27715,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/MetadataType" }
+                "schema": {
+                  "$ref": "#/components/schemas/MetadataType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18291,7 +27780,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18302,30 +27793,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/MetadataType" }
+                "schema": {
+                  "$ref": "#/components/schemas/MetadataType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/members/{parentid}/institutions/{id}": {
       "get": {
-        "tags": ["admin/members"],
+        "tags": [
+          "admin/members"
+        ],
         "operationId": "admin_members_by_id_institutions_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18333,54 +27839,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/members"],
+        "tags": [
+          "admin/members"
+        ],
         "operationId": "admin_members_by_id_institutions_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/members"],
+        "tags": [
+          "admin/members"
+        ],
         "operationId": "admin_members_by_id_institutions_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Institution" }
+              "schema": {
+                "$ref": "#/components/schemas/Institution"
+              }
             }
           },
           "required": true
@@ -18390,24 +27930,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses/{id}": {
       "get": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "identifierType",
@@ -18431,35 +27984,65 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/License" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/License"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18467,7 +28050,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18477,58 +28062,103 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/License" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/License"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/languages/{id}": {
       "get": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Language" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Language"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/languages"],
+        "tags": [
+          "admin/languages"
+        ],
         "operationId": "admin_languages_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18536,7 +28166,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18546,29 +28178,46 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Language" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Language"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/organizational-units/{id}": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_organizational-units_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18576,54 +28225,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_organizational-units_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_organizational-units_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+              "schema": {
+                "$ref": "#/components/schemas/OrganizationalUnit"
+              }
             }
           },
           "required": true
@@ -18633,83 +28316,134 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{parentid}/members/{id}": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_members_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_members_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_members_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/Person" }
+              "schema": {
+                "$ref": "#/components/schemas/Person"
+              }
             }
           },
           "required": true
@@ -18718,23 +28452,38 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{id}": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "identifierType",
@@ -18759,36 +28508,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18796,7 +28573,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18807,24 +28586,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/global-banners/{id}": {
       "get": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18832,36 +28624,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+                "schema": {
+                  "$ref": "#/components/schemas/GlobalBanner"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -18869,7 +28689,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -18880,30 +28702,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+                "schema": {
+                  "$ref": "#/components/schemas/GlobalBanner"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies/{parentid}/organizational-units/{id}": {
       "get": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_organizational-units_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -18911,54 +28748,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_organizational-units_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_organizational-units_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+              "schema": {
+                "$ref": "#/components/schemas/OrganizationalUnit"
+              }
             }
           },
           "required": true
@@ -18968,24 +28839,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies/{id}": {
       "get": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "identifierType",
@@ -19010,36 +28894,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/FundingAgency" }
+                "schema": {
+                  "$ref": "#/components/schemas/FundingAgency"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19047,7 +28959,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19058,24 +28972,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/FundingAgency" }
+                "schema": {
+                  "$ref": "#/components/schemas/FundingAgency"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/dissemination-policies/{id}": {
       "get": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19083,36 +29010,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/DisseminationPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/dissemination-policies"],
+        "tags": [
+          "admin/dissemination-policies"
+        ],
         "operationId": "admin_dissemination-policies_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19120,7 +29075,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19131,24 +29088,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DisseminationPolicy" }
+                "schema": {
+                  "$ref": "#/components/schemas/DisseminationPolicy"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-types/{id}": {
       "get": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19156,36 +29126,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveType" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19193,7 +29191,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19204,24 +29204,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveType" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveType"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-ratings/{id}": {
       "get": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19229,36 +29242,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveUserRating"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/archive-ratings"],
+        "tags": [
+          "admin/archive-ratings"
+        ],
         "operationId": "admin_archive-ratings_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19266,7 +29307,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19277,59 +29320,102 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveUserRating" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveUserRating"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/{id}": {
       "get": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/ArchiveACL" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveACL"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19337,7 +29423,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19347,23 +29435,38 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/ArchiveACL" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveACL"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/application-roles/{id}": {
       "get": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19378,31 +29481,57 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["admin/application-roles"],
+        "tags": [
+          "admin/application-roles"
+        ],
         "operationId": "admin_application-roles_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19410,7 +29539,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19428,25 +29559,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{parentid}/dip/{id}": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_dip_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19461,43 +29605,73 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_dip_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_dip_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19522,25 +29696,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{parentid}/aip/{id}": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_aip_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19548,54 +29735,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_aip_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_aip_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -19605,59 +29826,102 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Order" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Order"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19665,7 +29929,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19675,29 +29941,46 @@
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Order" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Order"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/data/{id}": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19705,48 +29988,80 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19754,7 +30069,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19765,30 +30082,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/DipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/aip/{id}": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_aip_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19796,54 +30128,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_aip_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_aip_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -19853,24 +30219,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{id}": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19885,31 +30264,57 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -19917,7 +30322,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -19935,25 +30342,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data/{id}": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19961,48 +30381,80 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/AipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/AipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -20010,7 +30462,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -20021,30 +30475,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/AipDataFile" }
+                "schema": {
+                  "$ref": "#/components/schemas/AipDataFile"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/aip/{id}": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_aip_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -20052,54 +30521,88 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_aip_by_id_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_aip_by_id_update",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
-              "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+              "schema": {
+                "$ref": "#/components/schemas/ArchivalInfoPackage"
+              }
             }
           },
           "required": true
@@ -20109,24 +30612,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{id}": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -20134,36 +30650,64 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_delete",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "patch": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_update",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
@@ -20171,7 +30715,9 @@
             "application/json": {
               "schema": {
                 "type": "object",
-                "additionalProperties": { "type": "object" }
+                "additionalProperties": {
+                  "type": "object"
+                }
               }
             }
           },
@@ -20182,23 +30728,38 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivalInfoPackage"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/sso-user": {
       "get": {
-        "tags": ["sso-user"],
+        "tags": [
+          "sso-user"
+        ],
         "operationId": "sso-user_user",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/User" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/User"
+                }
+              }
             }
           }
         }
@@ -20206,13 +30767,19 @@
     },
     "/resource-srv": {
       "get": {
-        "tags": ["resource-srv"],
+        "tags": [
+          "resource-srv"
+        ],
         "operationId": "resource-srv_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -20220,21 +30787,29 @@
     },
     "/resource-srv/checkTool": {
       "get": {
-        "tags": ["resource-srv/checkTool"],
+        "tags": [
+          "resource-srv/checkTool"
+        ],
         "operationId": "resource-srv_checkTool",
         "parameters": [
           {
             "name": "toolName",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "application/json": { "schema": { "type": "string" } }
+              "application/json": {
+                "schema": {
+                  "type": "string"
+                }
+              }
             }
           }
         }
@@ -20242,13 +30817,19 @@
     },
     "/preservation-planning": {
       "get": {
-        "tags": ["preservation-planning"],
+        "tags": [
+          "preservation-planning"
+        ],
         "operationId": "preservation-planning_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -20256,26 +30837,34 @@
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/{id}/reports": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_reports",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -20290,31 +30879,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/{id}/reports/{reportId}": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_reports_by_id_report",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "reportId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -20322,42 +30926,61 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/JobExecutionReport" }
+                "schema": {
+                  "$ref": "#/components/schemas/JobExecutionReport"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/{id}/reports/{reportId}/detail": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_reports_by_id_detail_reportLines",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "reportId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -20372,31 +30995,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/{id}/history": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_history",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -20411,48 +31049,77 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/{id}/download": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_by_id_download",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/{parentid}/executions/list-status": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_by_id_executions_list-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -20477,12 +31144,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/list-job-types": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_list-job-types",
         "responses": {
           "200": {
@@ -20518,12 +31194,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/preservation-jobs/list-job-recurrences": {
       "get": {
-        "tags": ["preservation-planning/preservation-jobs"],
+        "tags": [
+          "preservation-planning/preservation-jobs"
+        ],
         "operationId": "preservation-planning_preservation-jobs_list-job-recurrences",
         "responses": {
           "200": {
@@ -20534,40 +31219,72 @@
                   "type": "array",
                   "items": {
                     "type": "string",
-                    "enum": ["DAILY", "MONTHLY", "ONCE", "WEEKLY", "YEARLY"]
+                    "enum": [
+                      "DAILY",
+                      "MONTHLY",
+                      "ONCE",
+                      "WEEKLY",
+                      "YEARLY"
+                    ]
                   }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/monitor": {
       "get": {
-        "tags": ["preservation-planning/monitor"],
+        "tags": [
+          "preservation-planning/monitor"
+        ],
         "operationId": "preservation-planning_monitor_status",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "application/json": { "schema": { "type": "string" } }
+              "application/json": {
+                "schema": {
+                  "type": "string"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preservation-planning/modules": {
       "get": {
-        "tags": ["preservation-planning/modules"],
+        "tags": [
+          "preservation-planning/modules"
+        ],
         "operationId": "preservation-planning_modules",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/ModuleList" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/ModuleList"
+                }
+              }
             }
           }
         }
@@ -20575,7 +31292,9 @@
     },
     "/preservation-planning/aip": {
       "get": {
-        "tags": ["preservation-planning/aip"],
+        "tags": [
+          "preservation-planning/aip"
+        ],
         "operationId": "preservation-planning_aip_list",
         "parameters": [
           {
@@ -20599,7 +31318,9 @@
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -20614,18 +31335,31 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest": {
       "get": {
-        "tags": ["preingest"],
+        "tags": [
+          "preingest"
+        ],
         "operationId": "preingest_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -20633,26 +31367,34 @@
     },
     "/preingest/deposits/{parentid}/data/{id}/history": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_history",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -20667,54 +31409,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/{id}/download": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_download",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/{id}/download-token": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_by_id_download-token_getTokenForDepositDataFile",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -20722,48 +31495,69 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/search": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_search_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "depositDataFile",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+            "schema": {
+              "$ref": "#/components/schemas/DepositDataFile"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "match",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -20778,19 +31572,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/list-status": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_list-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -20830,19 +31635,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/list-folders": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_list-folders",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -20850,94 +31666,162 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{parentid}/data/list-current-status": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_data_list-current-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DepositDataFile" }
+            "schema": {
+              "$ref": "#/components/schemas/DepositDataFile"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "object" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "object"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/sip-package": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_sip-package_getSIP",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_sip-package_deleteSIP",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/history": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_history",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -20952,48 +31836,115 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/download": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_download_getFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "folder",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/{id}/download-token": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_by_id_download-token_getTokenForDeposit",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "description": "OK",
+            "content": {
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
+              }
+            }
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
+      }
+    },
+    "/preingest/deposits/{id}/download-anonymized-deposit": {
+      "get": {
+        "tags": [
+          "preingest/deposits"
+        ],
+        "operationId": "preingest_deposits_by_id_download-anonymized-deposit",
+        "parameters": [
+          {
+            "name": "id",
+            "in": "path",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21001,24 +31952,38 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/schema": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_schema",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21033,19 +31998,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/profile": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_profile",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21060,12 +32036,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/list-status": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list-status",
         "responses": {
           "200": {
@@ -21103,66 +32088,117 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/list-metadata-versions": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list-metadata-versions",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/list-ignore-files": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list-ignore-files_ignoreList",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/FileList" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/FileList"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/list-exclude-files": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list-exclude-files_excludeList",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/FileList" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/FileList"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/list-data-types": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list-data-types",
         "parameters": [
           {
             "name": "category",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21213,12 +32249,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/list-data-categories": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list-data-categories",
         "responses": {
           "200": {
@@ -21268,12 +32313,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/deposits/list-accesses": {
       "get": {
-        "tags": ["preingest/deposits"],
+        "tags": [
+          "preingest/deposits"
+        ],
         "operationId": "preingest_deposits_list-accesses",
         "responses": {
           "200": {
@@ -21285,32 +32339,49 @@
                   "items": {
                     "type": "string",
                     "description": "Access level of the archive:\n- PUBLIC => Open Access & Everyone\n- RESTRICTED => Team members (i.e., Org. Unit) & Trusted parties\n- CLOSED => Case by case & Individuals\n",
-                    "enum": ["PUBLIC", "RESTRICTED", "CLOSED"]
+                    "enum": [
+                      "PUBLIC",
+                      "RESTRICTED",
+                      "CLOSED"
+                    ]
                   }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/contributors": {
       "get": {
-        "tags": ["preingest/contributors"],
+        "tags": [
+          "preingest/contributors"
+        ],
         "operationId": "preingest_contributors_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Contributor" }
+            "schema": {
+              "$ref": "#/components/schemas/Contributor"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -21325,31 +32396,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/contributors/{parentid}/deposits": {
       "get": {
-        "tags": ["preingest/contributors"],
+        "tags": [
+          "preingest/contributors"
+        ],
         "operationId": "preingest_contributors_by_id_deposits_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/DepositContributor" }
+            "schema": {
+              "$ref": "#/components/schemas/DepositContributor"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -21364,48 +32450,76 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/contributors/{parentid}/deposits/{id}": {
       "get": {
-        "tags": ["preingest/contributors"],
+        "tags": [
+          "preingest/contributors"
+        ],
         "operationId": "preingest_contributors_by_id_deposits_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Deposit" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Deposit"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/preingest/contributors/{id}": {
       "get": {
-        "tags": ["preingest/contributors"],
+        "tags": [
+          "preingest/contributors"
+        ],
         "operationId": "preingest_contributors_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21413,23 +32527,38 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Contributor" }
+                "schema": {
+                  "$ref": "#/components/schemas/Contributor"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/oai-info": {
       "get": {
-        "tags": ["oai-info"],
+        "tags": [
+          "oai-info"
+        ],
         "operationId": "oai-info_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -21437,13 +32566,19 @@
     },
     "/oai-info/oai-provider": {
       "get": {
-        "tags": ["oai-info/oai-provider"],
+        "tags": [
+          "oai-info/oai-provider"
+        ],
         "operationId": "oai-info_oai-provider_status",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/OAIPMH" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/OAIPMH"
+                }
+              }
             }
           }
         }
@@ -21451,45 +32586,69 @@
     },
     "/oai-info/oai-provider/oai/xsl": {
       "get": {
-        "tags": ["oai-info/oai-provider"],
+        "tags": [
+          "oai-info/oai-provider"
+        ],
         "operationId": "oai-info_oai-provider_oai_xsl",
         "parameters": [
           {
             "name": "smartView",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         }
       }
     },
     "/oai-info/oai-provider/oai/schema": {
       "get": {
-        "tags": ["oai-info/oai-provider"],
+        "tags": [
+          "oai-info/oai-provider"
+        ],
         "operationId": "oai-info_oai-provider_oai_schema_xsd",
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         }
       }
     },
     "/ingest": {
       "get": {
-        "tags": ["ingest"],
+        "tags": [
+          "ingest"
+        ],
         "operationId": "ingest_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -21497,26 +32656,34 @@
     },
     "/ingest/sip/{parentid}/data/{id}/history": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_history",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -21531,54 +32698,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/data/{id}/download": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_download",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/data/{id}/download-token": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_by_id_download-token_getTokenForSipDataFile",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21586,24 +32784,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{parentid}/data/list-status": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_data_list-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21643,25 +32854,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/history": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_history",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -21676,42 +32900,69 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/download": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_download_getFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/download-token": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_download-token_getTokenForSip",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21719,61 +32970,105 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/{id}/aip-package": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip-package_getAIP",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       },
       "delete": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_by_id_aip-package_deleteAIP",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/schema": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_schema",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21788,19 +33083,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/profile": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_profile",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21815,12 +33121,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/list-status": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_list-status",
         "responses": {
           "200": {
@@ -21873,36 +33188,61 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/list-metadata-versions": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_list-metadata-versions",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/ingest/sip/list-data-types": {
       "get": {
-        "tags": ["ingest/sip"],
+        "tags": [
+          "ingest/sip"
+        ],
         "operationId": "ingest_sip_list-data-types",
         "parameters": [
           {
             "name": "category",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -21953,94 +33293,122 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
+      }
+    },
+    "/ingest/sip/list-data-categories": {
+      "get": {
+        "tags": [
+          "ingest/sip"
+        ],
+        "operationId": "ingest_sip_list-data-categories",
+        "responses": {
+          "200": {
+            "description": "OK",
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string",
+                    "enum": [
+                      "Primary",
+                      "Observational",
+                      "Experimental",
+                      "Simulation",
+                      "Derived",
+                      "Reference",
+                      "Digitalized",
+                      "Secondary",
+                      "Publication",
+                      "DataPaper",
+                      "Documentation",
+                      "Software",
+                      "Code",
+                      "Binaries",
+                      "VirtualMachine",
+                      "Administrative",
+                      "Document",
+                      "WebSite",
+                      "Other",
+                      "Package",
+                      "InformationPackage",
+                      "UpdatePackage",
+                      "Metadata",
+                      "CustomMetadata",
+                      "UpdatedMetadata",
+                      "Internal",
+                      "DatasetThumbnail",
+                      "ArchiveThumbnail",
+                      "ArchiveReadme",
+                      "DatafileThumbnail",
+                      "ArchiveDataUseAgreement"
+                    ]
+                  }
+                }
+              }
+            }
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
-    "/ingest/sip/list-data-categories": {
+    "/index": {
       "get": {
-        "tags": ["ingest/sip"],
-        "operationId": "ingest_sip_list-data-categories",
+        "tags": [
+          "index"
+        ],
+        "operationId": "index_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
                 "schema": {
-                  "type": "array",
-                  "items": {
-                    "type": "string",
-                    "enum": [
-                      "Primary",
-                      "Observational",
-                      "Experimental",
-                      "Simulation",
-                      "Derived",
-                      "Reference",
-                      "Digitalized",
-                      "Secondary",
-                      "Publication",
-                      "DataPaper",
-                      "Documentation",
-                      "Software",
-                      "Code",
-                      "Binaries",
-                      "VirtualMachine",
-                      "Administrative",
-                      "Document",
-                      "WebSite",
-                      "Other",
-                      "Package",
-                      "InformationPackage",
-                      "UpdatePackage",
-                      "Metadata",
-                      "CustomMetadata",
-                      "UpdatedMetadata",
-                      "Internal",
-                      "DatasetThumbnail",
-                      "ArchiveThumbnail",
-                      "ArchiveReadme",
-                      "DatafileThumbnail",
-                      "ArchiveDataUseAgreement"
-                    ]
-                  }
+                  "$ref": "#/components/schemas/Module"
                 }
               }
             }
           }
-        },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
-      }
-    },
-    "/index": {
-      "get": {
-        "tags": ["index"],
-        "operationId": "index_home",
-        "responses": {
-          "200": {
-            "description": "OK",
-            "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
-            }
-          }
         }
       }
     },
     "/index/indexes": {
       "get": {
-        "tags": ["index/indexes"],
+        "tags": [
+          "index/indexes"
+        ],
         "operationId": "index_indexes_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/IndexProperties" }
+            "schema": {
+              "$ref": "#/components/schemas/IndexProperties"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -22055,19 +33423,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/indexes/{id}": {
       "get": {
-        "tags": ["index/indexes"],
+        "tags": [
+          "index/indexes"
+        ],
         "operationId": "index_indexes_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22075,24 +33454,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/IndexProperties" }
+                "schema": {
+                  "$ref": "#/components/schemas/IndexProperties"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/index-field-aliases/list-facet-requests/{indexName}": {
       "get": {
-        "tags": ["index/index-field-aliases"],
+        "tags": [
+          "index/index-field-aliases"
+        ],
         "operationId": "index_index-field-aliases_list-facet-requests_by_id_facetsList",
         "parameters": [
           {
             "name": "indexName",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22107,18 +33499,31 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt": {
       "get": {
-        "tags": ["data-mgmt"],
+        "tags": [
+          "data-mgmt"
+        ],
         "operationId": "data-mgmt_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -22126,14 +33531,18 @@
     },
     "/data-mgmt/archive-public-data/{id}/download-dataset-file": {
       "get": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_by_id_download-dataset-file",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22148,18 +33557,31 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage": {
       "get": {
-        "tags": ["archival-storage"],
+        "tags": [
+          "archival-storage"
+        ],
         "operationId": "archival-storage_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -22167,14 +33589,18 @@
     },
     "/archival-storage/stored-aip/{id}/download": {
       "get": {
-        "tags": ["archival-storage/stored-aip"],
+        "tags": [
+          "archival-storage/stored-aip"
+        ],
         "operationId": "archival-storage_stored-aip_by_id_download_getFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22189,31 +33615,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data/{id}/history": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_history",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -22228,54 +33669,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data/{id}/download": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_download",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data/{id}/download-token": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_by_id_download-token_getTokenForAipDataFile",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22283,24 +33755,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/data/list-status": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_data_list-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22340,19 +33825,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{parentid}/aip/list-status": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_aip_list-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22406,25 +33902,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/history": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_history",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -22439,19 +33948,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/download": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_download_getFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22466,19 +33986,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/{id}/download-token": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_by_id_download-token_getTokenForAip",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22486,24 +34017,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/schema": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_schema",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22518,19 +34062,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/profile": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_profile",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22545,12 +34100,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/list-status": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_list-status",
         "responses": {
           "200": {
@@ -22603,36 +34167,61 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/list-metadata-versions": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_list-metadata-versions",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/list-data-types": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_list-data-types",
         "parameters": [
           {
             "name": "category",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22683,12 +34272,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/list-data-categories": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_list-data-categories",
         "responses": {
           "200": {
@@ -22738,25 +34336,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/list-aip-statuses": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_list-aip-statuses",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -22771,12 +34382,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/archival-storage/aip/list-aip-containers": {
       "get": {
-        "tags": ["archival-storage/aip"],
+        "tags": [
+          "archival-storage/aip"
+        ],
         "operationId": "archival-storage_aip_list-aip-containers",
         "responses": {
           "200": {
@@ -22787,25 +34407,42 @@
                   "type": "array",
                   "items": {
                     "type": "string",
-                    "enum": ["UNDEFINED", "ZIP", "BAG_IT"]
+                    "enum": [
+                      "UNDEFINED",
+                      "ZIP",
+                      "BAG_IT"
+                    ]
                   }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin": {
       "get": {
-        "tags": ["admin"],
+        "tags": [
+          "admin"
+        ],
         "operationId": "admin_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -22813,29 +34450,46 @@
     },
     "/admin/users/authenticated": {
       "get": {
-        "tags": ["admin/users"],
+        "tags": [
+          "admin/users"
+        ],
         "operationId": "admin_users_authenticated_getAuthenticatedUser",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/User" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/User"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/system-properties": {
       "get": {
-        "tags": ["admin/system-properties"],
+        "tags": [
+          "admin/system-properties"
+        ],
         "operationId": "admin_system-properties",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SystemProperties" }
+                "schema": {
+                  "$ref": "#/components/schemas/SystemProperties"
+                }
               }
             }
           }
@@ -22844,20 +34498,26 @@
     },
     "/admin/submission-agreements/{id}/get-my-approbations": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_get-my-approbations",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -22872,19 +34532,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/{id}/download-file": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_download-file",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -22899,31 +34570,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/get-all-approbations": {
       "get": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_get-all-approbations",
         "parameters": [
           {
             "name": "submissionAgreementId",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "userId",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -22938,59 +34624,99 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/subject-areas/list-sources": {
       "get": {
-        "tags": ["admin/subject-areas"],
+        "tags": [
+          "admin/subject-areas"
+        ],
         "operationId": "admin_subject-areas_list-sources",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/rating-types/{id}": {
       "get": {
-        "tags": ["admin/rating-types"],
+        "tags": [
+          "admin/rating-types"
+        ],
         "operationId": "admin_rating-types_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/RatingType" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/RatingType"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{id}/download-avatar": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_download-avatar",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23005,25 +34731,39 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/search-with-user": {
       "get": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_search-with-user",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": false,
-            "schema": { "type": "string", "default": "%" }
+            "schema": {
+              "type": "string",
+              "default": "%"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23038,31 +34778,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/additional-fields-forms/{id}/history": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_by_id_history",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23077,54 +34832,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/additional-fields-forms/{id}/download": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_by_id_download",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/additional-fields-forms/{id}/download-token": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_by_id_download-token_getTokenForOrganizationalUnitAdditionalFieldsForm",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23132,24 +34918,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{parentid}/additional-fields-forms/current-version": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_additional-fields-forms_current-version_getCurrentMetadataForm",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23164,19 +34963,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{id}/download-logo": {
       "get": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_download-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23191,79 +35001,156 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
+      }
+    },
+    "/admin/orcid/{orcid}/external-websites": {
+      "get": {
+        "tags": [
+          "admin/orcid"
+        ],
+        "operationId": "admin_orcid_by_id_external-websites_getExternalWebsitesByOrcid",
+        "parameters": [
+          {
+            "name": "orcid",
+            "in": "path",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "description": "OK",
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "$ref": "#/components/schemas/OrcidWebsiteDTO"
+                  }
+                }
+              }
+            }
+          }
+        }
       }
     },
     "/admin/orcid/start-orcid-auth": {
       "get": {
-        "tags": ["admin/orcid"],
+        "tags": [
+          "admin/orcid"
+        ],
         "operationId": "admin_orcid_start-orcid-auth",
         "parameters": [
           {
             "name": "originUrl",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
-            "content": { "*/*": { "schema": { "type": "string" } } }
+            "content": {
+              "*/*": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/orcid/landing": {
       "get": {
-        "tags": ["admin/orcid"],
+        "tags": [
+          "admin/orcid"
+        ],
         "operationId": "admin_orcid_landing",
         "parameters": [
           {
             "name": "code",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "error",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "error_description",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "authTransactionId",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } }
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        }
       }
     },
     "/admin/notifications/{id}/history": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_history",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23278,19 +35165,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/download-dua": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_download-dua",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23305,25 +35203,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/sent": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_sent_listSentNotification",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Notification" }
+            "schema": {
+              "$ref": "#/components/schemas/Notification"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23338,19 +35249,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/sent/{id}": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_sent_by_id_getSentNotification",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23358,30 +35280,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/inbox": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_inbox_listInboxNotification",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Notification" }
+            "schema": {
+              "$ref": "#/components/schemas/Notification"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23396,19 +35333,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/inbox/{id}": {
       "get": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_inbox_by_id_getInboxNotification",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23416,24 +35364,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/metadata-types/{id}/schema": {
       "get": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_by_id_schema",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23448,12 +35409,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/metadata-types/list-metadata-formats": {
       "get": {
-        "tags": ["admin/metadata-types"],
+        "tags": [
+          "admin/metadata-types"
+        ],
         "operationId": "admin_metadata-types_list-metadata-formats",
         "responses": {
           "200": {
@@ -23465,26 +35435,42 @@
                   "items": {
                     "type": "string",
                     "description": "The metadata format:\n- JSON\n- XML\n- SCHEMA_LESS\n- CUSTOM\n",
-                    "enum": ["CUSTOM", "JSON", "SCHEMA_LESS", "XML"]
+                    "enum": [
+                      "CUSTOM",
+                      "JSON",
+                      "SCHEMA_LESS",
+                      "XML"
+                    ]
                   }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses/{id}/download-logo": {
       "get": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_by_id_download-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23499,19 +35485,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{id}/download-logo": {
       "get": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_download-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23526,36 +35523,58 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/global-banners/get-active": {
       "get": {
-        "tags": ["admin/global-banners"],
+        "tags": [
+          "admin/global-banners"
+        ],
         "operationId": "admin_global-banners_get-active",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/GlobalBanner" }
+                "schema": {
+                  "$ref": "#/components/schemas/GlobalBanner"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies/{id}/download-logo": {
       "get": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_download-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23570,37 +35589,56 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/authorized-organizational-units": {
       "get": {
-        "tags": ["admin/authorized-organizational-units"],
+        "tags": [
+          "admin/authorized-organizational-units"
+        ],
         "operationId": "admin_authorized-organizational-units_listAll",
         "parameters": [
           {
             "name": "openOnly",
             "in": "query",
             "required": false,
-            "schema": { "type": "boolean", "default": true }
+            "schema": {
+              "type": "boolean",
+              "default": true
+            }
           },
           {
             "name": "roleSuperiorToVisitor",
             "in": "query",
             "required": false,
-            "schema": { "type": "boolean", "default": false }
+            "schema": {
+              "type": "boolean",
+              "default": false
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "schema": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23619,14 +35657,18 @@
     },
     "/admin/authorized-organizational-units/{id}": {
       "get": {
-        "tags": ["admin/authorized-organizational-units"],
+        "tags": [
+          "admin/authorized-organizational-units"
+        ],
         "operationId": "admin_authorized-organizational-units_by_id_getAuthorizedOrganizationalUnit",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23645,26 +35687,35 @@
     },
     "/admin/authorized-institutions": {
       "get": {
-        "tags": ["admin/authorized-institutions"],
+        "tags": [
+          "admin/authorized-institutions"
+        ],
         "operationId": "admin_authorized-institutions_listAll",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Institution" }
+            "schema": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           {
             "name": "showMembers",
             "in": "query",
             "required": false,
-            "schema": { "type": "boolean", "default": false }
+            "schema": {
+              "type": "boolean",
+              "default": false
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23679,36 +35730,61 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-types/list-reference-types": {
       "get": {
-        "tags": ["admin/archive-types"],
+        "tags": [
+          "admin/archive-types"
+        ],
         "operationId": "admin_archive-types_list-reference-types",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-statistics/{id}": {
       "get": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23716,24 +35792,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveStatistics" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveStatistics"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-statistics/{id}/statistics": {
       "get": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_by_id_statistics_getArchive",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23748,19 +35837,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-statistics/{id}/average-ratings": {
       "get": {
-        "tags": ["admin/archive-statistics"],
+        "tags": [
+          "admin/archive-statistics"
+        ],
         "operationId": "admin_archive-statistics_by_id_average-ratings_getAverageRating",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23770,25 +35870,38 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/AverageRating" }
+                  "items": {
+                    "$ref": "#/components/schemas/AverageRating"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/{id}/download-dua": {
       "get": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_by_id_download-dua",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23803,31 +35916,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/list-all-archive-acl": {
       "get": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_list-all-archive-acl",
         "parameters": [
           {
             "name": "deleted",
             "in": "query",
             "required": false,
-            "schema": { "type": "boolean" }
+            "schema": {
+              "type": "boolean"
+            }
           },
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveACL" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveACL"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23842,19 +35970,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/get-my-acls": {
       "get": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_get-my-acls_listMyACL",
         "parameters": [
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23869,18 +36008,31 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access": {
       "get": {
-        "tags": ["access"],
+        "tags": [
+          "access"
+        ],
         "operationId": "access_home",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         }
@@ -23888,14 +36040,18 @@
     },
     "/access/system-properties": {
       "get": {
-        "tags": ["access/system-properties"],
+        "tags": [
+          "access/system-properties"
+        ],
         "operationId": "access_system-properties",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SystemProperties" }
+                "schema": {
+                  "$ref": "#/components/schemas/SystemProperties"
+                }
               }
             }
           }
@@ -23904,14 +36060,18 @@
     },
     "/access/sitemap.xml": {
       "get": {
-        "tags": ["access/sitemap.xml"],
+        "tags": [
+          "access/sitemap.xml"
+        ],
         "operationId": "access_sitemap.xml_getSitemapIndex",
         "parameters": [
           {
             "name": "extra",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23921,8 +36081,12 @@
               "application/xml": {
                 "schema": {
                   "oneOf": [
-                    { "$ref": "#/components/schemas/Urlset" },
-                    { "$ref": "#/components/schemas/Sitemapindex" }
+                    {
+                      "$ref": "#/components/schemas/Urlset"
+                    },
+                    {
+                      "$ref": "#/components/schemas/Sitemapindex"
+                    }
                   ]
                 }
               }
@@ -23933,20 +36097,26 @@
     },
     "/access/sitemap-{name}.xml": {
       "get": {
-        "tags": ["access/sitemap-{name}.xml"],
+        "tags": [
+          "access/sitemap-{name}.xml"
+        ],
         "operationId": "access_sitemap-by_id.xml_getSitemap",
         "parameters": [
           {
             "name": "name",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "from",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -23954,7 +36124,9 @@
             "description": "OK",
             "content": {
               "application/xml": {
-                "schema": { "$ref": "#/components/schemas/Urlset" }
+                "schema": {
+                  "$ref": "#/components/schemas/Urlset"
+                }
               }
             }
           }
@@ -23963,20 +36135,26 @@
     },
     "/access/private-metadata": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -23991,19 +36169,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/{orderId}/download-status": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_by_id_download-status_getDownloadStatus",
         "parameters": [
           {
             "name": "orderId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24027,19 +36216,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/{id}": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24047,24 +36247,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/{id}/citations": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_by_id_citations",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24074,25 +36287,38 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/CitationDto" }
+                  "items": {
+                    "$ref": "#/components/schemas/CitationDto"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/{id}/bibliographies": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_by_id_bibliographies",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24102,47 +36328,76 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/CitationDto" }
+                  "items": {
+                    "$ref": "#/components/schemas/CitationDto"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/{dipName}/download": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_by_id_download",
         "parameters": [
           {
             "name": "dipName",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "orderId",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/private-metadata/list-download-status": {
       "get": {
-        "tags": ["access/private-metadata"],
+        "tags": [
+          "access/private-metadata"
+        ],
         "operationId": "access_private-metadata_list-download-status",
         "responses": {
           "200": {
@@ -24168,25 +36423,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/organizational-units": {
       "get": {
-        "tags": ["access/organizational-units"],
+        "tags": [
+          "access/organizational-units"
+        ],
         "operationId": "access_organizational-units_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/OrgUnit" }
+            "schema": {
+              "$ref": "#/components/schemas/OrgUnit"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24201,31 +36469,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/organizational-units/{parentid}/archives": {
       "get": {
-        "tags": ["access/organizational-units"],
+        "tags": [
+          "access/organizational-units"
+        ],
         "operationId": "access_organizational-units_by_id_archives_list",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "filterItem",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24240,25 +36523,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/organizational-units/{parentid}/archives/{id}": {
       "get": {
-        "tags": ["access/organizational-units"],
+        "tags": [
+          "access/organizational-units"
+        ],
         "operationId": "access_organizational-units_by_id_archives_by_id_get",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24266,47 +36562,75 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/organizational-units/{id}": {
       "get": {
-        "tags": ["access/organizational-units"],
+        "tags": [
+          "access/organizational-units"
+        ],
         "operationId": "access_organizational-units_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/OrgUnit" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/OrgUnit"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/organizational-units/{id}/download-logo": {
       "get": {
-        "tags": ["access/organizational-units"],
+        "tags": [
+          "access/organizational-units"
+        ],
         "operationId": "access_organizational-units_by_id_download-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24321,31 +36645,47 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/view": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_view",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "allInfo",
             "in": "query",
             "required": false,
-            "schema": { "type": "boolean", "default": false }
+            "schema": {
+              "type": "boolean",
+              "default": false
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24360,25 +36700,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/history": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_history",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24393,42 +36746,69 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/download": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_download_getFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/{id}/download-token": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_by_id_download-token_getTokenForOrder",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24436,17 +36816,28 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/list-status": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_list-status",
         "responses": {
           "200": {
@@ -24472,12 +36863,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/list-query-types": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_list-query-types",
         "responses": {
           "200": {
@@ -24488,32 +36888,49 @@
                   "type": "array",
                   "items": {
                     "type": "string",
-                    "enum": ["ADVANCED", "DIRECT", "SIMPLE"]
+                    "enum": [
+                      "ADVANCED",
+                      "DIRECT",
+                      "SIMPLE"
+                    ]
                   }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/list-public": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_list-public",
         "parameters": [
           {
             "name": "order",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Order" }
+            "schema": {
+              "$ref": "#/components/schemas/Order"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24521,30 +36938,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionOrder" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionOrder"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/orders/list-created-by-user": {
       "get": {
-        "tags": ["access/orders"],
+        "tags": [
+          "access/orders"
+        ],
         "operationId": "access_orders_list-created-by-user",
         "parameters": [
           {
             "name": "order",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Order" }
+            "schema": {
+              "$ref": "#/components/schemas/Order"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24552,30 +36984,45 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/RestCollectionOrder" }
+                "schema": {
+                  "$ref": "#/components/schemas/RestCollectionOrder"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24590,19 +37037,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{parentid}/ratings/list-for-user": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_ratings_list-for-user_getUserRating",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24617,25 +37075,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{parentid}/data/{id}": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_data_by_id_getDataFiles",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24643,24 +37114,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{orderId}/download-status": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_download-status_getDownloadStatus",
         "parameters": [
           {
             "name": "orderId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24684,19 +37168,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24704,24 +37199,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/thumbnail": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_thumbnail_downloadThumbnail",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24736,19 +37244,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/statistics": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_statistics_getStatistics",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24763,19 +37282,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/readme": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_readme_downloadReadme",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24790,19 +37320,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/packages": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_packages_getPackages",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24810,24 +37351,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/list-folders": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_list-folders",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24835,24 +37389,40 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/dua": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_dua_downloadDua",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24867,49 +37437,72 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/data": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_data_getDataFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "path",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "file",
             "in": "query",
             "required": false,
-            "schema": { "type": "string", "default": "*" }
+            "schema": {
+              "type": "string",
+              "default": "*"
+            }
           },
           {
             "name": "minSize",
             "in": "query",
             "required": false,
-            "schema": { "type": "string", "default": "0" }
+            "schema": {
+              "type": "string",
+              "default": "0"
+            }
           },
           {
             "name": "maxSize",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -24924,19 +37517,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/citations": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_citations",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24946,25 +37550,38 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/CitationDto" }
+                  "items": {
+                    "$ref": "#/components/schemas/CitationDto"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/bibliographies": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_bibliographies",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -24974,43 +37591,63 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/CitationDto" }
+                  "items": {
+                    "$ref": "#/components/schemas/CitationDto"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{id}/aip": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_aip_getAip",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "minSize",
             "in": "query",
             "required": false,
-            "schema": { "type": "string", "default": "0" }
+            "schema": {
+              "type": "string",
+              "default": "0"
+            }
           },
           {
             "name": "maxSize",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -25025,48 +37662,77 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{dipName}/download": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_download",
         "parameters": [
           {
             "name": "dipName",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "orderId",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{dipName}/download-token": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_download-token_getTokenForArchive",
         "parameters": [
           {
             "name": "dipName",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25074,24 +37740,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/search-doi": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_search-doi",
         "parameters": [
           {
             "name": "doi",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25099,17 +37778,28 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/list-download-status": {
       "get": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_list-download-status_listDownloadStatus",
         "responses": {
           "200": {
@@ -25135,31 +37825,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/data/{id}/history": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_by_id_history",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -25174,54 +37879,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/data/{id}/download": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_by_id_download",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/data/{id}/download-token": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_by_id_download-token_getTokenForDipDataFile",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25229,24 +37965,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/data/list-status": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_data_list-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25286,19 +38035,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{parentid}/aip/status": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_aip_status_listStatus",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25352,25 +38112,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{id}/history": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_history",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -25385,42 +38158,69 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{id}/download": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_download_getFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/{id}/download-token": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_by_id_download-token_getTokenDip",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25428,39 +38228,66 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/total-for-completed-order": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_total-for-completed-order_getCountForCompletedOrders",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "integer", "format": "int32" } }
+              "*/*": {
+                "schema": {
+                  "type": "integer",
+                  "format": "int32"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/schema": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_schema",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "disseminationPolicy",
@@ -25470,7 +38297,12 @@
               "type": "string",
               "description": "Type of dissemination: IIIF or WEB.",
               "default": "PUBLIC",
-              "enum": ["IIIF", "HEDERA", "BASIC", "OAIS"]
+              "enum": [
+                "IIIF",
+                "HEDERA",
+                "BASIC",
+                "OAIS"
+              ]
             }
           }
         ],
@@ -25486,19 +38318,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/profile": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_profile",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25513,12 +38356,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/list-status": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_list-status",
         "responses": {
           "200": {
@@ -25571,36 +38423,61 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/list-metadata-versions": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_list-metadata-versions",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/list-data-types": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_list-data-types",
         "parameters": [
           {
             "name": "category",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25651,12 +38528,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/list-data-categories": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_list-data-categories",
         "responses": {
           "200": {
@@ -25706,25 +38592,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/dip/get-by-aip-id/{id}": {
       "get": {
-        "tags": ["access/dip"],
+        "tags": [
+          "access/dip"
+        ],
         "operationId": "access_dip_get-by-aip-id_by_id_getDipContainingAip",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -25739,19 +38638,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/archives/metadata/**": {
       "get": {
-        "tags": ["access/archives"],
+        "tags": [
+          "access/archives"
+        ],
         "operationId": "access_archives_metadata_get",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
@@ -25760,20 +38670,26 @@
     },
     "/access/all-metadata": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_list",
         "parameters": [
           {
             "name": "search",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "schema": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -25788,19 +38704,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/{orderId}/download-status": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_by_id_download-status_getDownloadStatus",
         "parameters": [
           {
             "name": "orderId",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25824,19 +38751,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/{id}": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_by_id_get",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25844,24 +38782,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchiveMetadata" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveMetadata"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/{id}/citations": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_by_id_citations",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25871,25 +38822,38 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/CitationDto" }
+                  "items": {
+                    "$ref": "#/components/schemas/CitationDto"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/{id}/bibliographies": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_by_id_bibliographies",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -25899,47 +38863,76 @@
               "*/*": {
                 "schema": {
                   "type": "array",
-                  "items": { "$ref": "#/components/schemas/CitationDto" }
+                  "items": {
+                    "$ref": "#/components/schemas/CitationDto"
+                  }
                 }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/{dipName}/download": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_by_id_download",
         "parameters": [
           {
             "name": "dipName",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "orderId",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/all-metadata/list-download-status": {
       "get": {
-        "tags": ["access/all-metadata"],
+        "tags": [
+          "access/all-metadata"
+        ],
         "operationId": "access_all-metadata_list-download-status_listDownloadStatus",
         "responses": {
           "200": {
@@ -25965,31 +38958,46 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data/{id}/history": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_history",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -26004,54 +39012,85 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data/{id}/download": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_download",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data/{id}/download-token": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_by_id_download-token_getTokenForAipDownloadedDataFile",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26059,24 +39098,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/data/list-status": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_data_list-status",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26116,19 +39168,30 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{parentid}/aip/status": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_aip_status_listStatus",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26182,25 +39245,38 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{id}/history": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_history",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           },
           {
             "name": "pageable",
             "in": "query",
             "required": true,
-            "schema": { "$ref": "#/components/schemas/Pageable" }
+            "schema": {
+              "$ref": "#/components/schemas/Pageable"
+            }
           }
         ],
         "responses": {
@@ -26215,42 +39291,69 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{id}/download": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_download_getFiles",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "string", "format": "binary" } }
+              "*/*": {
+                "schema": {
+                  "type": "string",
+                  "format": "binary"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/{id}/download-token": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_by_id_download-token_getTokenAip",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26258,39 +39361,66 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/DownloadToken" }
+                "schema": {
+                  "$ref": "#/components/schemas/DownloadToken"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/total-for-completed-order": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_total-for-completed-order_getCountForCompletedOrders",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "type": "integer", "format": "int32" } }
+              "*/*": {
+                "schema": {
+                  "type": "integer",
+                  "format": "int32"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/profile": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_profile",
         "parameters": [
           {
             "name": "version",
             "in": "query",
             "required": false,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26305,12 +39435,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/list-status": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_list-status",
         "responses": {
           "200": {
@@ -26363,36 +39502,61 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/list-metadata-versions": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_list-metadata-versions",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "type": "array", "items": { "type": "string" } }
+                "schema": {
+                  "type": "array",
+                  "items": {
+                    "type": "string"
+                  }
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/list-data-types": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_list-data-types",
         "parameters": [
           {
             "name": "category",
             "in": "query",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26443,12 +39607,21 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/aip/list-data-categories": {
       "get": {
-        "tags": ["access/aip"],
+        "tags": [
+          "access/aip"
+        ],
         "operationId": "access_aip_list-data-categories",
         "responses": {
           "200": {
@@ -26498,50 +39671,90 @@
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/": {
       "get": {
-        "tags": ["dlcm"],
+        "tags": [
+          "dlcm"
+        ],
         "operationId": "",
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Module" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Module"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/index/settings/delete-all": {
       "delete": {
-        "tags": ["index/settings"],
+        "tags": [
+          "index/settings"
+        ],
         "operationId": "index_settings_delete-all",
         "parameters": [
           {
             "name": "confirm",
             "in": "query",
             "required": false,
-            "schema": { "type": "string", "default": "no" }
+            "schema": {
+              "type": "string",
+              "default": "no"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/data-mgmt/archive-public-data/{id}/delete-dataset-file": {
       "delete": {
-        "tags": ["data-mgmt/archive-public-data"],
+        "tags": [
+          "data-mgmt/archive-public-data"
+        ],
         "operationId": "data-mgmt_archive-public-data_by_id_delete-dataset-file",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26549,24 +39762,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/ArchivePublicData" }
+                "schema": {
+                  "$ref": "#/components/schemas/ArchivePublicData"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/submission-agreements/{id}/delete-file": {
       "delete": {
-        "tags": ["admin/submission-agreements"],
+        "tags": [
+          "admin/submission-agreements"
+        ],
         "operationId": "admin_submission-agreements_by_id_delete-file",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26574,47 +39800,75 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/SubmissionAgreement" }
+                "schema": {
+                  "$ref": "#/components/schemas/SubmissionAgreement"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/people/{id}/delete-avatar": {
       "delete": {
-        "tags": ["admin/people"],
+        "tags": [
+          "admin/people"
+        ],
         "operationId": "admin_people_by_id_delete-avatar",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/Person" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/Person"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/organizational-units/{id}/delete-logo": {
       "delete": {
-        "tags": ["admin/organizational-units"],
+        "tags": [
+          "admin/organizational-units"
+        ],
         "operationId": "admin_organizational-units_by_id_delete-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26622,24 +39876,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/OrganizationalUnit" }
+                "schema": {
+                  "$ref": "#/components/schemas/OrganizationalUnit"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/{id}/delete-dua": {
       "delete": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_by_id_delete-dua",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26647,63 +39914,106 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Notification" }
+                "schema": {
+                  "$ref": "#/components/schemas/Notification"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/notifications/delete-notifications-on-deposit/{id}": {
       "delete": {
-        "tags": ["admin/notifications"],
+        "tags": [
+          "admin/notifications"
+        ],
         "operationId": "admin_notifications_delete-notifications-on-deposit_by_id_deleteNotificationsOnDeposit",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/licenses/{id}/delete-logo": {
       "delete": {
-        "tags": ["admin/licenses"],
+        "tags": [
+          "admin/licenses"
+        ],
         "operationId": "admin_licenses_by_id_delete-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/License" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/License"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/institutions/{id}/delete-logo": {
       "delete": {
-        "tags": ["admin/institutions"],
+        "tags": [
+          "admin/institutions"
+        ],
         "operationId": "admin_institutions_by_id_delete-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26711,24 +40021,37 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/Institution" }
+                "schema": {
+                  "$ref": "#/components/schemas/Institution"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/funding-agencies/{id}/delete-logo": {
       "delete": {
-        "tags": ["admin/funding-agencies"],
+        "tags": [
+          "admin/funding-agencies"
+        ],
         "operationId": "admin_funding-agencies_by_id_delete-logo",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -26736,55 +40059,100 @@
             "description": "OK",
             "content": {
               "*/*": {
-                "schema": { "$ref": "#/components/schemas/FundingAgency" }
+                "schema": {
+                  "$ref": "#/components/schemas/FundingAgency"
+                }
               }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/admin/archive-acl/{id}/delete-dua": {
       "delete": {
-        "tags": ["admin/archive-acl"],
+        "tags": [
+          "admin/archive-acl"
+        ],
         "operationId": "admin_archive-acl_by_id_delete-dua",
         "parameters": [
           {
             "name": "id",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "description": "OK",
             "content": {
-              "*/*": { "schema": { "$ref": "#/components/schemas/ArchiveACL" } }
+              "*/*": {
+                "schema": {
+                  "$ref": "#/components/schemas/ArchiveACL"
+                }
+              }
             }
           }
         },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     },
     "/access/metadata/{parentid}/ratings/by-rating": {
       "delete": {
-        "tags": ["access/metadata"],
+        "tags": [
+          "access/metadata"
+        ],
         "operationId": "access_metadata_by_id_ratings_by-rating_delete",
         "parameters": [
           {
             "name": "parentid",
             "in": "path",
             "required": true,
-            "schema": { "type": "string" }
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "requestBody": {
-          "content": { "application/json": { "schema": { "type": "string" } } },
+          "content": {
+            "application/json": {
+              "schema": {
+                "type": "string"
+              }
+            }
+          },
           "required": true
         },
-        "responses": { "200": { "description": "OK" } },
-        "security": [{ "tokenAuth": [] }, { "auth": [] }]
+        "responses": {
+          "200": {
+            "description": "OK"
+          }
+        },
+        "security": [
+          {
+            "tokenAuth": []
+          },
+          {
+            "auth": []
+          }
+        ]
       }
     }
   },
@@ -26815,22 +40183,44 @@
       "JobScheduling": {
         "type": "object",
         "properties": {
-          "hour": { "type": "integer", "format": "int32" },
-          "month": { "type": "integer", "format": "int32" },
-          "monthDay": { "type": "integer", "format": "int32" },
-          "weekDay": { "type": "integer", "format": "int32" }
+          "hour": {
+            "type": "integer",
+            "format": "int32"
+          },
+          "month": {
+            "type": "integer",
+            "format": "int32"
+          },
+          "monthDay": {
+            "type": "integer",
+            "format": "int32"
+          },
+          "weekDay": {
+            "type": "integer",
+            "format": "int32"
+          }
         }
       },
       "Links": {
         "type": "object",
-        "additionalProperties": { "$ref": "#/components/schemas/Link" }
+        "additionalProperties": {
+          "$ref": "#/components/schemas/Link"
+        }
       },
       "PreservationJob": {
-        "required": ["jobRecurrence", "jobType", "name"],
+        "required": [
+          "jobRecurrence",
+          "jobType",
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -26844,7 +40234,13 @@
           "jobRecurrence": {
             "type": "string",
             "description": "The recurrence of the preservation job.",
-            "enum": ["DAILY", "MONTHLY", "ONCE", "WEEKLY", "YEARLY"]
+            "enum": [
+              "DAILY",
+              "MONTHLY",
+              "ONCE",
+              "WEEKLY",
+              "YEARLY"
+            ]
           },
           "jobType": {
             "type": "string",
@@ -26874,12 +40270,20 @@
             "type": "string",
             "description": "The name of the preservation job."
           },
-          "scheduling": { "$ref": "#/components/schemas/JobScheduling" },
+          "scheduling": {
+            "$ref": "#/components/schemas/JobScheduling"
+          },
           "lastExecutionStatus": {
             "type": "string",
             "description": "The status of the last job execution.",
             "readOnly": true,
-            "enum": ["COMPLETED", "CREATED", "IN_ERROR", "IN_PROGRESS", "READY"]
+            "enum": [
+              "COMPLETED",
+              "CREATED",
+              "IN_ERROR",
+              "IN_PROGRESS",
+              "READY"
+            ]
           },
           "executionNumber": {
             "type": "integer",
@@ -26887,30 +40291,58 @@
             "format": "int32",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The preservation job allows to run manage mass processing of archives. There are different types of job:\n- ARCHIVE_CHECK => Run the archive check on all archives\n- ARCHIVE_PRELOAD_BIG => Preload the archives bigger than 4GB to prepare DIP\n- ARCHIVE_PRELOAD_SMALL => Preload the archives smaller than 4GB to prepare DIP\n- CHECK_COMPLIANCE_LEVEL => coming soon\n- CLEAN_SUBMISSION => Purge deposits & SIP when archives are completed and replicated based on submission policy\n- SIMPLE_CLEAN_SUBMISSION => Purge deposits & SIP when archives are completed without checking replication based on submission policy\n- DISPOSAL => Trigger the disposal process\n- FIXITY => Run the fixity check for all archives\n- MIGRATION => Comming soon\n- PURGE_ORDER => Purge order data when order completed\n- PURGE_SUBMISSION_TEMP_FILES => Purge temporary files of submission process\n- REINDEX => Re-index all archives on main storage\n- REINDEX_ALL => Re-index all archives on all storages\n- RELOAD => Reload all archives from the storage\n- REPLICATION => Run the replication process on different storage nodes\n- REPLICATION_CHECK => Run the replication check on all archives\n"
       },
       "JobExecution": {
-        "required": ["preservationJob"],
+        "required": [
+          "preservationJob"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "preservationJob": { "$ref": "#/components/schemas/PreservationJob" },
-          "completionStatus": { "type": "integer", "format": "int32" },
-          "endDate": { "type": "string", "format": "date-time" },
-          "runNumber": { "type": "integer", "format": "int64" },
-          "startDate": { "type": "string", "format": "date-time" },
+          "preservationJob": {
+            "$ref": "#/components/schemas/PreservationJob"
+          },
+          "completionStatus": {
+            "type": "integer",
+            "format": "int32"
+          },
+          "endDate": {
+            "type": "string",
+            "format": "date-time"
+          },
+          "runNumber": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "startDate": {
+            "type": "string",
+            "format": "date-time"
+          },
           "status": {
             "type": "string",
-            "enum": ["COMPLETED", "CREATED", "IN_ERROR", "IN_PROGRESS", "READY"]
+            "enum": [
+              "COMPLETED",
+              "CREATED",
+              "IN_ERROR",
+              "IN_PROGRESS",
+              "READY"
+            ]
           },
           "statusMessage": {
             "maxLength": 1024,
@@ -26922,27 +40354,29 @@
             "format": "int64",
             "readOnly": true
           },
-          "reportNumber": {
+          "ignoredItems": {
             "type": "integer",
-            "format": "int32",
+            "format": "int64",
             "readOnly": true
           },
-          "processedItems": {
+          "inErrorItems": {
             "type": "integer",
             "format": "int64",
             "readOnly": true
           },
-          "ignoredItems": {
+          "processedItems": {
             "type": "integer",
             "format": "int64",
             "readOnly": true
           },
-          "inErrorItems": {
+          "reportNumber": {
             "type": "integer",
-            "format": "int64",
+            "format": "int32",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Preservation job execution information"
       },
@@ -26953,81 +40387,145 @@
             "type": "string",
             "description": "The detailed message on what happens"
           },
-          "resId": { "type": "string", "description": "The ID of the object" },
+          "resId": {
+            "type": "string",
+            "description": "The ID of the object"
+          },
           "status": {
             "type": "string",
             "description": "The status of the launched action",
-            "enum": ["EXECUTED", "NON_APPLICABLE", "NOT_EXECUTED"]
+            "enum": [
+              "EXECUTED",
+              "NON_APPLICABLE",
+              "NOT_EXECUTED"
+            ]
+          },
+          "messsage": {
+            "type": "string",
+            "writeOnly": true
           },
-          "messsage": { "type": "string", "writeOnly": true },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The result is the result of REST action (HTTP POST) with the status:\n- EXECUTED => the action was executed successfully\n- NOT_EXEUTED => the action failed and the message details the reason\n- NON_APPLICABLE => the action cannot be executed and the message details the reason\n"
       },
       "Pageable": {
         "type": "object",
         "properties": {
-          "page": { "minimum": 0, "type": "integer", "format": "int32" },
-          "size": { "minimum": 1, "type": "integer", "format": "int32" },
-          "sort": { "type": "array", "items": { "type": "string" } }
+          "page": {
+            "minimum": 0,
+            "type": "integer",
+            "format": "int32"
+          },
+          "size": {
+            "minimum": 1,
+            "type": "integer",
+            "format": "int32"
+          },
+          "sort": {
+            "type": "array",
+            "items": {
+              "type": "string"
+            }
+          }
         }
       },
       "FacetResult": {
         "type": "object",
         "properties": {
-          "name": { "type": "string" },
-          "field": { "type": "string" },
+          "name": {
+            "type": "string"
+          },
+          "field": {
+            "type": "string"
+          },
           "values": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResultValue" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResultValue"
+            }
           }
         }
       },
       "FacetResultValue": {
         "type": "object",
         "properties": {
-          "value": { "type": "string" },
-          "count": { "type": "integer", "format": "int64" }
+          "value": {
+            "type": "string"
+          },
+          "count": {
+            "type": "integer",
+            "format": "int64"
+          }
         }
       },
       "RestCollectionPage": {
         "type": "object",
         "properties": {
-          "currentPage": { "type": "integer", "format": "int64" },
-          "sizePage": { "type": "integer", "format": "int64" },
-          "totalItems": { "type": "integer", "format": "int64" },
-          "totalPages": { "type": "integer", "format": "int64" }
+          "currentPage": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "sizePage": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "totalItems": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "totalPages": {
+            "type": "integer",
+            "format": "int64"
+          }
         }
       },
       "RestCollectionPreservationJob": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/PreservationJob" }
+            "items": {
+              "$ref": "#/components/schemas/PreservationJob"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "ArchiveType": {
-        "required": ["typeName"],
+        "required": [
+          "typeName"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "masterType": { "$ref": "#/components/schemas/ArchiveType" },
+          "masterType": {
+            "$ref": "#/components/schemas/ArchiveType"
+          },
           "typeName": {
             "type": "string",
             "description": "The name of the archive type."
@@ -27037,7 +40535,9 @@
             "description": "If the archive type is a master type.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Archive type based on DataCite notion."
       },
@@ -27052,8 +40552,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27062,12 +40566,18 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "access": {
             "type": "string",
             "description": "Access level of the archive:\n- PUBLIC => Open Access & Everyone\n- RESTRICTED => Team members (i.e., Org. Unit) & Trusted parties\n- CLOSED => Case by case & Individuals\n",
-            "enum": ["PUBLIC", "RESTRICTED", "CLOSED"]
+            "enum": [
+              "PUBLIC",
+              "RESTRICTED",
+              "CLOSED"
+            ]
           },
           "dataSensitivity": {
             "type": "string",
@@ -27134,7 +40644,9 @@
             "type": "string",
             "description": "The ARK Identifier of the deposit."
           },
-          "embargo": { "$ref": "#/components/schemas/EmbargoInfo" },
+          "embargo": {
+            "$ref": "#/components/schemas/EmbargoInfo"
+          },
           "keywords": {
             "type": "array",
             "description": "The keyword List of the deposit.",
@@ -27143,7 +40655,9 @@
               "description": "The keyword List of the deposit."
             }
           },
-          "language": { "$ref": "#/components/schemas/Language" },
+          "language": {
+            "$ref": "#/components/schemas/Language"
+          },
           "languageId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27158,11 +40672,21 @@
             "type": "string",
             "description": "The archive type identifier of the deposit."
           },
-          "archiveType": { "$ref": "#/components/schemas/ArchiveType" },
+          "archiveType": {
+            "$ref": "#/components/schemas/ArchiveType"
+          },
           "metadataVersion": {
             "type": "string",
-            "description": "DLCM metadata are based on METS container, DataCite as descriptive metadata and PREMIS as administrative metadata.\nMetadata version:\n- 1.0 = DataCite 4.0 + PREMIS 3.0\n- 1.1 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0 + Data File Categories\n- 2.0 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.0\n- 2.1 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.1 + Dataset Thumbnail support\n- 3.0 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.1\n- 3.1 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.2 + Archive Thumbnail & DUA & README support\n- 4.0 = Datacite 4.5 + PREMIS 3.0 + DLCM Info 3.0 + Update of Archive Thumbnail & DUA & README\n",
-            "enum": ["1.0", "1.1", "2.0", "2.1", "3.0", "3.1", "4.0"]
+            "description": "DLCM metadata are based on METS container, DataCite as descriptive metadata and PREMIS as administrative metadata.\nMetadata version:\n- 1.0 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0\n- 1.1 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0\n- 2.0 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.0 + Data File Categories\n- 2.1 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.1 + Dataset Thumbnail support\n- 3.0 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.1\n- 3.1 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.2 + Archive Thumbnail & DUA & README support\n- 4.0 = Datacite 4.5 + PREMIS 3.0 + DLCM Info 3.0 + Update of Archive Thumbnail & DUA & README\n",
+            "enum": [
+              "1.0",
+              "1.1",
+              "2.0",
+              "2.1",
+              "3.0",
+              "3.1",
+              "4.0"
+            ]
           },
           "organizationalUnit": {
             "$ref": "#/components/schemas/OrganizationalUnit"
@@ -27269,6 +40793,10 @@
               "description": "List of DOI which indicates A is used as a source of information by B."
             }
           },
+          "anonymizedDepositPageId": {
+            "type": "string",
+            "description": "The id of the page listing all anonymized deposits of a given deposit"
+          },
           "additionalFieldsValues": {
             "type": "string",
             "description": "Some eventual additional fields values generated through an additional fields form."
@@ -27279,15 +40807,22 @@
             "type": "string",
             "description": "The additional fields form ID used to generate the additional fields values."
           },
-          "errorStatusWithMessage": { "type": "string", "writeOnly": true },
+          "errorStatusWithMessage": {
+            "type": "string",
+            "writeOnly": true
+          },
           "collectionSize": {
             "type": "integer",
             "description": "The number of archives in the deposit.",
             "format": "int32",
             "readOnly": true
           },
-          "hasEmbargo": { "type": "boolean" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "hasEmbargo": {
+            "type": "boolean"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A deposit is a simple package to prepare a SIP.\nDeposit status:\n- APPROVED => Approved deposit. The SIP preparation is in progress.\n- CANCEL_EDITING_METADATA => A cancellation of metadata edition is in progress.\n- CHECKED => Checked deposit. The deposit is ready for SIP preparation.\n- CHECKING_COMPLIANCE => A compliance check is in progress for completed deposits.\n- CHECKING_COMPLIANCE_CLEANED => A compliance check is in progress for cleaned deposits.\n- CLEANED => Cleaned deposit: the data file are purged based on submission policy.\n- CLEANING => A clean process is in progress.\n- COMPLETED => Completed deposit. The preparation of SIP is completed.\n- COMPLIANCE_ERROR => An error occurred during a compliance check.\n- DELETING => A deletion process is in progress.\n- EDITING_METADATA_REJECTED => The metadata edition was rejected.\n- EDITING_METADATA => The deposit is in edition mode for metadata.\n- IN_ERROR => An error occurred during the SIP preparation.\n- IN_PROGRESS => The deposit is in progress, ready for adding data files.\n- IN_VALIDATION => The deposit is waiting for an approval.\n- REJECTED => The deposit was rejected.\n- SUBMITTED => Submitted deposit. The SIP preparation is in progress.\n- UPGRADING_METADATA => The deposit is in upgrade mode of metadata version.\n"
       },
@@ -27297,7 +40832,11 @@
           "access": {
             "type": "string",
             "description": "Access level of the archive:\n- PUBLIC => Open Access & Everyone\n- RESTRICTED => Team members (i.e., Org. Unit) & Trusted parties\n- CLOSED => Case by case & Individuals\n",
-            "enum": ["PUBLIC", "RESTRICTED", "CLOSED"]
+            "enum": [
+              "PUBLIC",
+              "RESTRICTED",
+              "CLOSED"
+            ]
           },
           "months": {
             "type": "integer",
@@ -27313,11 +40852,17 @@
         "description": "Embargo information."
       },
       "Institution": {
-        "required": ["name"],
+        "required": [
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27353,7 +40898,9 @@
             "type": "string",
             "description": "The ROR identifier of the institution."
           },
-          "logo": { "$ref": "#/components/schemas/InstitutionLogo" },
+          "logo": {
+            "$ref": "#/components/schemas/InstitutionLogo"
+          },
           "identifiers": {
             "type": "object",
             "additionalProperties": {
@@ -27365,17 +40912,25 @@
           "organizationalUnit": {
             "type": "array",
             "writeOnly": true,
-            "items": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "items": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "An institution represents academic institutions, such as UNIGE and HES-SO."
       },
       "InstitutionLogo": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27397,15 +40952,21 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The logo of the institution."
       },
       "Language": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27416,16 +40977,25 @@
             "type": "string",
             "description": "The ISO 639-1 code of the language"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The language for internationalization (i18n) & localization (L10n)"
       },
       "License": {
-        "required": ["openLicenseId", "title"],
+        "required": [
+          "openLicenseId",
+          "title"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27459,7 +41029,12 @@
           "odConformance": {
             "type": "string",
             "description": "Conformance Status.",
-            "enum": ["approved", "", "not reviewed", "rejected"]
+            "enum": [
+              "approved",
+              "",
+              "not reviewed",
+              "rejected"
+            ]
           },
           "openLicenseId": {
             "type": "string",
@@ -27468,12 +41043,21 @@
           "osdConformance": {
             "type": "string",
             "description": "Conformance Status.",
-            "enum": ["approved", "", "not reviewed", "rejected"]
+            "enum": [
+              "approved",
+              "",
+              "not reviewed",
+              "rejected"
+            ]
           },
           "status": {
             "type": "string",
             "description": "License status.",
-            "enum": ["active", "retired", "superseded"]
+            "enum": [
+              "active",
+              "retired",
+              "superseded"
+            ]
           },
           "title": {
             "type": "string",
@@ -27484,21 +41068,29 @@
             "description": "The source URL of the license.",
             "format": "url"
           },
-          "logo": { "$ref": "#/components/schemas/LicenseLogo" },
+          "logo": {
+            "$ref": "#/components/schemas/LicenseLogo"
+          },
           "description": {
             "type": "string",
             "description": "The description of the license. The format is: <openLicenseId> (<title>).",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A license represents software licenses (Academic Free License 3.0, Design Science License, MIT License…​)."
       },
       "LicenseLogo": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27520,16 +41112,25 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The logo of the license."
       },
       "OrganizationalUnit": {
-        "required": ["name", "openingDate"],
+        "required": [
+          "name",
+          "openingDate"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27541,7 +41142,9 @@
             "description": "The closing date of the organizational unit.",
             "format": "date"
           },
-          "defaultLicense": { "$ref": "#/components/schemas/License" },
+          "defaultLicense": {
+            "$ref": "#/components/schemas/License"
+          },
           "defaultPreservationPolicy": {
             "$ref": "#/components/schemas/PreservationPolicy"
           },
@@ -27557,7 +41160,9 @@
           "institutions": {
             "type": "array",
             "writeOnly": true,
-            "items": { "$ref": "#/components/schemas/Institution" }
+            "items": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           "isEmpty": {
             "type": "boolean",
@@ -27587,20 +41192,28 @@
             "description": "The URL of the organizational unit.",
             "format": "url"
           },
-          "logo": { "$ref": "#/components/schemas/OrganizationalUnitLogo" },
+          "logo": {
+            "$ref": "#/components/schemas/OrganizationalUnitLogo"
+          },
           "open": {
             "type": "boolean",
             "description": "If the organizational unit is currently open."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "An organizational unit is a logical entity that represents a research project or laboratory or any other organizational group of researchers. A preservation space is associated to it."
       },
       "OrganizationalUnitLogo": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27622,16 +41235,24 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The logo of the organizational unit."
       },
       "PreservationPolicy": {
-        "required": ["name"],
+        "required": [
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27669,17 +41290,27 @@
             "description": "The retention duration in human-readable format of the package.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A preservation policy defines whether approval is required for an AIP’s disposition as well as how long it should be kept."
       },
       "SearchCriteria": {
         "type": "object",
         "properties": {
-          "caseInsensitive": { "type": "boolean" },
-          "caseType": { "type": "string" },
-          "key": { "type": "string" },
-          "operation": { "type": "string" },
+          "caseInsensitive": {
+            "type": "boolean"
+          },
+          "caseType": {
+            "type": "string"
+          },
+          "key": {
+            "type": "string"
+          },
+          "operation": {
+            "type": "string"
+          },
           "operationType": {
             "type": "string",
             "enum": [
@@ -27696,15 +41327,25 @@
               "STARTS_WITH"
             ]
           },
-          "value": { "type": "object" }
+          "value": {
+            "type": "object"
+          }
         }
       },
       "SubmissionAgreement": {
-        "required": ["submissionAgreementFile", "title", "version"],
+        "required": [
+          "submissionAgreementFile",
+          "title",
+          "version"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27728,15 +41369,21 @@
           "submissionAgreementFile": {
             "$ref": "#/components/schemas/SubmissionAgreementFile"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A submission agreement defines the conditions of the submissions."
       },
       "SubmissionAgreementFile": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27758,16 +41405,24 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The submission agreement file"
       },
       "SubmissionPolicy": {
-        "required": ["name"],
+        "required": [
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27792,7 +41447,11 @@
           "submissionAgreementType": {
             "type": "string",
             "description": "The type of submission agreement when submitting a deposit:\n- WITHOUT => No submission agreement needed.\n- ON_FIRST_DEPOSIT => For the first deposit submission, the user has to approve the submission agreement once.\n- FOR_EACH_DEPOSIT => At each deposit submission, the user has to approve the submission agreement.\n",
-            "enum": ["WITHOUT", "ON_FIRST_DEPOSIT", "FOR_EACH_DEPOSIT"]
+            "enum": [
+              "WITHOUT",
+              "ON_FIRST_DEPOSIT",
+              "FOR_EACH_DEPOSIT"
+            ]
           },
           "submissionAgreement": {
             "$ref": "#/components/schemas/SubmissionAgreement"
@@ -27803,25 +41462,44 @@
             "format": "int32",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A submission policy is a policy that can be associated to an SIP. It defines whether an SIP can submitted with or without approval and the amount of time it should be kept."
       },
       "Label": {
-        "required": ["language", "text"],
+        "required": [
+          "language",
+          "text"
+        ],
         "type": "object",
         "properties": {
-          "text": { "maxLength": 1024, "minLength": 0, "type": "string" },
-          "language": { "$ref": "#/components/schemas/Language" }
+          "text": {
+            "maxLength": 1024,
+            "minLength": 0,
+            "type": "string"
+          },
+          "language": {
+            "$ref": "#/components/schemas/Language"
+          }
         },
         "description": "The name labels for each supported languages of the subject area."
       },
       "SubjectArea": {
-        "required": ["code", "name", "source"],
+        "required": [
+          "code",
+          "name",
+          "source"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27830,7 +41508,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "code": {
             "maxLength": 50,
@@ -27841,7 +41521,9 @@
           "labels": {
             "type": "array",
             "description": "The name labels for each supported languages of the subject area.",
-            "items": { "$ref": "#/components/schemas/Label" }
+            "items": {
+              "$ref": "#/components/schemas/Label"
+            }
           },
           "name": {
             "maxLength": 1024,
@@ -27855,7 +41537,9 @@
             "type": "string",
             "description": "The source of the subject area."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A subject area delineates a range of academic, administrative, and patrimonial disciplines.\nEach of these disciplines may follow its own classification system, reflecting their unique attributes and contexts (for example: SNF Disciplines, http://www.snf.ch/SiteCollectionDocuments/allg_disziplinenliste.pdf, or re3data Subjects, https://www.re3data.org/browse/by-subject/, for academic disciplines). A subject area could be associated with a specific organizational unit."
       },
@@ -27869,17 +41553,39 @@
         ],
         "type": "object",
         "properties": {
-          "checksum": { "type": "string" },
+          "checksum": {
+            "type": "string"
+          },
           "checksumAlgo": {
             "type": "string",
-            "enum": ["CRC32", "MD5", "SHA-1", "SHA-256", "SHA-512"]
+            "enum": [
+              "CRC32",
+              "MD5",
+              "SHA-1",
+              "SHA-256",
+              "SHA-512"
+            ]
           },
           "checksumOrigin": {
             "type": "string",
-            "enum": ["DLCM", "DLCM_TOMBSTONE", "USER", "PORTAL"]
+            "enum": [
+              "DLCM",
+              "DLCM_TOMBSTONE",
+              "USER",
+              "PORTAL"
+            ]
+          },
+          "checksumType": {
+            "type": "string",
+            "enum": [
+              "COMPLETE",
+              "PARTIAL"
+            ]
           },
-          "checksumType": { "type": "string", "enum": ["COMPLETE", "PARTIAL"] },
-          "creationTime": { "type": "string", "format": "date-time" }
+          "creationTime": {
+            "type": "string",
+            "format": "date-time"
+          }
         }
       },
       "DepositDataFile": {
@@ -27892,8 +41598,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -27902,7 +41612,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "complianceLevel": {
             "type": "string",
@@ -27987,18 +41699,34 @@
               "ArchiveDataUseAgreement"
             ]
           },
-          "fileFormat": { "$ref": "#/components/schemas/FileFormat" },
-          "fileSize": { "type": "integer", "format": "int64" },
-          "finalData": { "type": "string", "format": "uri" },
-          "fileName": { "type": "string", "readOnly": true },
-          "metadataType": { "$ref": "#/components/schemas/MetadataType" },
+          "fileFormat": {
+            "$ref": "#/components/schemas/FileFormat"
+          },
+          "fileSize": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "finalData": {
+            "type": "string",
+            "format": "uri"
+          },
+          "fileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "metadataType": {
+            "$ref": "#/components/schemas/MetadataType"
+          },
           "relativeLocation": {
             "maxLength": 460,
             "minLength": 0,
             "pattern": "(^\\/$)|(^\\/.*(?<!\\/)$)",
             "type": "string"
           },
-          "sourceData": { "type": "string", "format": "uri" },
+          "sourceData": {
+            "type": "string",
+            "format": "uri"
+          },
           "status": {
             "type": "string",
             "enum": [
@@ -28029,12 +41757,18 @@
             "minLength": 0,
             "type": "string"
           },
-          "virusCheck": { "$ref": "#/components/schemas/VirusCheck" },
+          "virusCheck": {
+            "$ref": "#/components/schemas/VirusCheck"
+          },
           "checksums": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DataFileChecksum" }
+            "items": {
+              "$ref": "#/components/schemas/DataFileChecksum"
+            }
+          },
+          "infoPackage": {
+            "$ref": "#/components/schemas/Deposit"
           },
-          "infoPackage": { "$ref": "#/components/schemas/Deposit" },
           "fileStatus": {
             "type": "string",
             "writeOnly": true,
@@ -28061,10 +41795,20 @@
               "VIRUS_SKIPPED"
             ]
           },
-          "fullFileName": { "type": "string", "readOnly": true },
-          "inProgress": { "type": "boolean" },
-          "smartSize": { "type": "string", "readOnly": true },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "fullFileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "inProgress": {
+            "type": "boolean"
+          },
+          "smartSize": {
+            "type": "string",
+            "readOnly": true
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "FileFormat": {
@@ -28096,7 +41840,9 @@
             "type": "string",
             "description": "The format PRONOM identifier of the  file."
           },
-          "tool": { "$ref": "#/components/schemas/Tool" },
+          "tool": {
+            "$ref": "#/components/schemas/Tool"
+          },
           "version": {
             "maxLength": 50,
             "minLength": 0,
@@ -28107,11 +41853,19 @@
         "description": "File format informations."
       },
       "MetadataType": {
-        "required": ["metadataFormat", "name", "version"],
+        "required": [
+          "metadataFormat",
+          "name",
+          "version"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28127,7 +41881,12 @@
           "metadataFormat": {
             "type": "string",
             "description": "The metadata format:\n- JSON\n- XML\n- SCHEMA_LESS\n- CUSTOM\n",
-            "enum": ["CUSTOM", "JSON", "SCHEMA_LESS", "XML"]
+            "enum": [
+              "CUSTOM",
+              "JSON",
+              "SCHEMA_LESS",
+              "XML"
+            ]
           },
           "metadataSchema": {
             "type": "string",
@@ -28155,7 +41914,9 @@
             "description": "The name and the version of the metadata type.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The metadata type allow to define custom metadata."
       },
@@ -28166,7 +41927,10 @@
             "type": "string",
             "description": "The description of the tool."
           },
-          "name": { "type": "string", "description": "The name of the tool." },
+          "name": {
+            "type": "string",
+            "description": "The name of the tool."
+          },
           "puid": {
             "type": "string",
             "description": "The PRONOM identifier of the tool."
@@ -28190,16 +41954,26 @@
             "type": "string",
             "description": "The result details of the virus check."
           },
-          "tool": { "$ref": "#/components/schemas/Tool" }
+          "tool": {
+            "$ref": "#/components/schemas/Tool"
+          }
         },
         "description": "Virus check information."
       },
       "Person": {
-        "required": ["firstName", "lastName", "verifiedOrcid"],
+        "required": [
+          "firstName",
+          "lastName",
+          "verifiedOrcid"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28208,7 +41982,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "firstName": {
             "maxLength": 255,
@@ -28231,20 +42007,28 @@
             "type": "boolean",
             "description": "if the person ORCID is verified with ORCID authentication."
           },
-          "avatar": { "$ref": "#/components/schemas/PersonAvatar" },
+          "avatar": {
+            "$ref": "#/components/schemas/PersonAvatar"
+          },
           "fullName": {
             "type": "string",
             "description": "The full name of the person."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A person is associated to a user on the platform. It contains information such as the person’s ORCID, institution and organizational units it belongs to."
       },
       "PersonAvatar": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28266,16 +42050,26 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The avatar of the person."
       },
       "ArchivalInfoPackage": {
-        "required": ["archiveContainer", "info", "lastArchiving"],
+        "required": [
+          "archiveContainer",
+          "info",
+          "lastArchiving"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28294,7 +42088,11 @@
           "archiveContainer": {
             "type": "string",
             "description": "The container type of the AIP.",
-            "enum": ["UNDEFINED", "ZIP", "BAG_IT"]
+            "enum": [
+              "UNDEFINED",
+              "ZIP",
+              "BAG_IT"
+            ]
           },
           "archivalUnit": {
             "type": "boolean",
@@ -28334,14 +42132,22 @@
             "description": "The total size in bytes of the collection AIP.",
             "format": "int64"
           },
-          "checksumCheck": { "$ref": "#/components/schemas/ChecksumCheck" },
+          "checksumCheck": {
+            "$ref": "#/components/schemas/ChecksumCheck"
+          },
           "checksums": {
             "type": "array",
             "description": "The checksum list of the AIP.",
-            "items": { "$ref": "#/components/schemas/DataFileChecksum" }
+            "items": {
+              "$ref": "#/components/schemas/DataFileChecksum"
+            }
+          },
+          "fileFormat": {
+            "$ref": "#/components/schemas/FileFormat"
+          },
+          "info": {
+            "$ref": "#/components/schemas/RepresentationInfo"
           },
-          "fileFormat": { "$ref": "#/components/schemas/FileFormat" },
-          "info": { "$ref": "#/components/schemas/RepresentationInfo" },
           "sipIds": {
             "type": "array",
             "description": "The source SIP list (IDs) of the AIP.",
@@ -28350,7 +42156,9 @@
               "description": "The source SIP list (IDs) of the AIP."
             }
           },
-          "virusCheck": { "$ref": "#/components/schemas/VirusCheck" },
+          "virusCheck": {
+            "$ref": "#/components/schemas/VirusCheck"
+          },
           "publicationDate": {
             "type": "string",
             "description": "The publication date of the AIP.",
@@ -28456,7 +42264,9 @@
             "description": "The retention duration in human-readable format of the package.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Archival Information Package (AIP)"
       },
@@ -28476,13 +42286,21 @@
         "description": "Checksum verification information."
       },
       "RepresentationInfo": {
-        "required": ["metadataVersion", "name", "organizationalUnitId"],
+        "required": [
+          "metadataVersion",
+          "name",
+          "organizationalUnitId"
+        ],
         "type": "object",
         "properties": {
           "access": {
             "type": "string",
             "description": "Access level of the archive:\n- PUBLIC => Open Access & Everyone\n- RESTRICTED => Team members (i.e., Org. Unit) & Trusted parties\n- CLOSED => Case by case & Individuals\n",
-            "enum": ["PUBLIC", "RESTRICTED", "CLOSED"]
+            "enum": [
+              "PUBLIC",
+              "RESTRICTED",
+              "CLOSED"
+            ]
           },
           "dataSensitivity": {
             "type": "string",
@@ -28525,15 +42343,25 @@
             "type": "string",
             "description": "The description of the package."
           },
-          "embargo": { "$ref": "#/components/schemas/EmbargoInfo" },
+          "embargo": {
+            "$ref": "#/components/schemas/EmbargoInfo"
+          },
           "licenseId": {
             "type": "string",
             "description": "The license identifier of the package."
           },
           "metadataVersion": {
             "type": "string",
-            "description": "DLCM metadata are based on METS container, DataCite as descriptive metadata and PREMIS as administrative metadata.\nMetadata version:\n- 1.0 = DataCite 4.0 + PREMIS 3.0\n- 1.1 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0 + Data File Categories\n- 2.0 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.0\n- 2.1 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.1 + Dataset Thumbnail support\n- 3.0 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.1\n- 3.1 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.2 + Archive Thumbnail & DUA & README support\n- 4.0 = Datacite 4.5 + PREMIS 3.0 + DLCM Info 3.0 + Update of Archive Thumbnail & DUA & README\n",
-            "enum": ["1.0", "1.1", "2.0", "2.1", "3.0", "3.1", "4.0"]
+            "description": "DLCM metadata are based on METS container, DataCite as descriptive metadata and PREMIS as administrative metadata.\nMetadata version:\n- 1.0 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0\n- 1.1 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0\n- 2.0 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.0 + Data File Categories\n- 2.1 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.1 + Dataset Thumbnail support\n- 3.0 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.1\n- 3.1 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.2 + Archive Thumbnail & DUA & README support\n- 4.0 = Datacite 4.5 + PREMIS 3.0 + DLCM Info 3.0 + Update of Archive Thumbnail & DUA & README\n",
+            "enum": [
+              "1.0",
+              "1.1",
+              "2.0",
+              "2.1",
+              "3.0",
+              "3.1",
+              "4.0"
+            ]
           },
           "name": {
             "maxLength": 255,
@@ -28608,7 +42436,11 @@
             "type": "string",
             "description": "Access level of the archive:\n- PUBLIC => Open Access & Everyone\n- RESTRICTED => Team members (i.e., Org. Unit) & Trusted parties\n- CLOSED => Case by case & Individuals\n",
             "readOnly": true,
-            "enum": ["PUBLIC", "RESTRICTED", "CLOSED"]
+            "enum": [
+              "PUBLIC",
+              "RESTRICTED",
+              "CLOSED"
+            ]
           }
         },
         "description": "OAIS Information Package: SIP, AIP or DIP."
@@ -28616,25 +42448,42 @@
       "RestCollectionDeposit": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Deposit" }
+            "items": {
+              "$ref": "#/components/schemas/Deposit"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "OAISet": {
-        "required": ["enabled", "name", "query", "spec"],
+        "required": [
+          "enabled",
+          "name",
+          "query",
+          "spec"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28669,23 +42518,33 @@
             "type": "string",
             "description": "The spec of OAI set, which is an unique identifier for the set."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "OAI set."
       },
       "RestCollectionOAISet": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OAISet" }
+            "items": {
+              "$ref": "#/components/schemas/OAISet"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -28694,14 +42553,20 @@
         "properties": {
           "all": {
             "type": "object",
-            "additionalProperties": { "type": "string" },
+            "additionalProperties": {
+              "type": "string"
+            },
             "writeOnly": true
           },
-          "empty": { "type": "boolean" }
+          "empty": {
+            "type": "boolean"
+          }
         },
         "additionalProperties": {
           "type": "array",
-          "items": { "type": "string" }
+          "items": {
+            "type": "string"
+          }
         }
       },
       "OAIMetadataPrefix": {
@@ -28715,8 +42580,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28774,32 +42643,48 @@
             "type": "string",
             "description": "The XML transformation from reference prefix to the OAI metadata prefix."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The OAI metadata prefixes defined the metadata formats supported by OAI-PMH provider. The default metadata prefix is oai_dc, derived from Dublin Core."
       },
       "RestCollectionOAIMetadataPrefix": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OAIMetadataPrefix" }
+            "items": {
+              "$ref": "#/components/schemas/OAIMetadataPrefix"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "SubmissionInfoPackage": {
-        "required": ["info"],
+        "required": [
+          "info"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28832,7 +42717,9 @@
             "type": "string",
             "description": "The source deposit identifier of the SIP."
           },
-          "info": { "$ref": "#/components/schemas/RepresentationInfo" },
+          "info": {
+            "$ref": "#/components/schemas/RepresentationInfo"
+          },
           "organizationalUnit": {
             "$ref": "#/components/schemas/OrganizationalUnit"
           },
@@ -28916,7 +42803,9 @@
             "description": "The retention duration in human-readable format of the package.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Submission Information Package (SIP)"
       },
@@ -28930,8 +42819,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -28940,7 +42833,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "complianceLevel": {
             "type": "string",
@@ -29025,18 +42920,34 @@
               "ArchiveDataUseAgreement"
             ]
           },
-          "fileFormat": { "$ref": "#/components/schemas/FileFormat" },
-          "fileSize": { "type": "integer", "format": "int64" },
-          "finalData": { "type": "string", "format": "uri" },
-          "fileName": { "type": "string", "readOnly": true },
-          "metadataType": { "$ref": "#/components/schemas/MetadataType" },
+          "fileFormat": {
+            "$ref": "#/components/schemas/FileFormat"
+          },
+          "fileSize": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "finalData": {
+            "type": "string",
+            "format": "uri"
+          },
+          "fileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "metadataType": {
+            "$ref": "#/components/schemas/MetadataType"
+          },
           "relativeLocation": {
             "maxLength": 460,
             "minLength": 0,
             "pattern": "(^\\/$)|(^\\/.*(?<!\\/)$)",
             "type": "string"
           },
-          "sourceData": { "type": "string", "format": "uri" },
+          "sourceData": {
+            "type": "string",
+            "format": "uri"
+          },
           "status": {
             "type": "string",
             "enum": [
@@ -29067,10 +42978,14 @@
             "minLength": 0,
             "type": "string"
           },
-          "virusCheck": { "$ref": "#/components/schemas/VirusCheck" },
+          "virusCheck": {
+            "$ref": "#/components/schemas/VirusCheck"
+          },
           "checksums": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DataFileChecksum" }
+            "items": {
+              "$ref": "#/components/schemas/DataFileChecksum"
+            }
           },
           "infoPackage": {
             "$ref": "#/components/schemas/SubmissionInfoPackage"
@@ -29101,50 +43016,86 @@
               "VIRUS_SKIPPED"
             ]
           },
-          "fullFileName": { "type": "string", "readOnly": true },
-          "inProgress": { "type": "boolean" },
-          "smartSize": { "type": "string", "readOnly": true },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "fullFileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "inProgress": {
+            "type": "boolean"
+          },
+          "smartSize": {
+            "type": "string",
+            "readOnly": true
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionSubmissionInfoPackage": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SubmissionInfoPackage" }
+            "items": {
+              "$ref": "#/components/schemas/SubmissionInfoPackage"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "IndexProperties": {
         "type": "object",
         "properties": {
-          "resId": { "type": "string" },
+          "resId": {
+            "type": "string"
+          },
           "settings": {
             "type": "object",
-            "additionalProperties": { "type": "object" }
+            "additionalProperties": {
+              "type": "object"
+            }
           },
           "mapping": {
             "type": "object",
-            "additionalProperties": { "type": "object" }
+            "additionalProperties": {
+              "type": "object"
+            }
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "An IndexProperties defines the settings and the mapping of the index."
       },
       "IndexFieldAlias": {
-        "required": ["alias", "facet", "field", "indexName", "system"],
+        "required": [
+          "alias",
+          "facet",
+          "field",
+          "indexName",
+          "system"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -29200,63 +43151,96 @@
           "labels": {
             "type": "array",
             "description": "The translated labels by languages for the index field alias.",
-            "items": { "$ref": "#/components/schemas/Label" }
+            "items": {
+              "$ref": "#/components/schemas/Label"
+            }
           },
           "descriptionLabels": {
             "type": "array",
             "description": "The translated descriptions of the index field alias.",
-            "items": { "$ref": "#/components/schemas/LargeLabel" }
+            "items": {
+              "$ref": "#/components/schemas/LargeLabel"
+            }
           },
           "withDescription": {
             "type": "boolean",
             "description": "If the index field alias has a description.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A index field alias defines a facet/category for indexing and searching."
       },
       "LargeLabel": {
-        "required": ["language", "text"],
+        "required": [
+          "language",
+          "text"
+        ],
         "type": "object",
         "properties": {
-          "text": { "type": "string" },
-          "language": { "$ref": "#/components/schemas/Language" }
+          "text": {
+            "type": "string"
+          },
+          "language": {
+            "$ref": "#/components/schemas/Language"
+          }
         },
         "description": "The translated descriptions of the index field alias."
       },
       "RestCollectionIndexFieldAlias": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/IndexFieldAlias" }
+            "items": {
+              "$ref": "#/components/schemas/IndexFieldAlias"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "ArchiveMetadata": {
         "type": "object",
         "properties": {
-          "resId": { "type": "string" },
-          "index": { "type": "string" },
+          "resId": {
+            "type": "string"
+          },
+          "index": {
+            "type": "string"
+          },
           "metadata": {
             "type": "object",
-            "additionalProperties": { "type": "object" }
+            "additionalProperties": {
+              "type": "object"
+            }
           },
           "currentAccess": {
             "type": "string",
             "description": "Access level of the archive:\n- PUBLIC => Open Access & Everyone\n- RESTRICTED => Team members (i.e., Org. Unit) & Trusted parties\n- CLOSED => Case by case & Individuals\n",
             "readOnly": true,
-            "enum": ["PUBLIC", "RESTRICTED", "CLOSED"]
+            "enum": [
+              "PUBLIC",
+              "RESTRICTED",
+              "CLOSED"
+            ]
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Public metadata of an archive"
       },
@@ -29275,23 +43259,51 @@
               "NESTED_BOOLEAN"
             ]
           },
-          "searchOperator": { "type": "string", "enum": ["AND", "OR"] },
+          "searchOperator": {
+            "type": "string",
+            "enum": [
+              "AND",
+              "OR"
+            ]
+          },
           "booleanClauseType": {
             "type": "string",
-            "enum": ["MUST", "FILTER", "SHOULD", "MUST_NOT"]
+            "enum": [
+              "MUST",
+              "FILTER",
+              "SHOULD",
+              "MUST_NOT"
+            ]
+          },
+          "field": {
+            "type": "string"
           },
-          "field": { "type": "string" },
           "multiMatchFields": {
             "type": "array",
-            "items": { "type": "string" }
+            "items": {
+              "type": "string"
+            }
+          },
+          "value": {
+            "type": "string"
+          },
+          "terms": {
+            "type": "array",
+            "items": {
+              "type": "string"
+            }
+          },
+          "upperValue": {
+            "type": "string"
+          },
+          "lowerValue": {
+            "type": "string"
           },
-          "value": { "type": "string" },
-          "terms": { "type": "array", "items": { "type": "string" } },
-          "upperValue": { "type": "string" },
-          "lowerValue": { "type": "string" },
           "nestedConditions": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCondition" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCondition"
+            }
           }
         },
         "description": "The search conditions describes the query to search in the indexes.\n"
@@ -29299,25 +43311,39 @@
       "RestCollectionArchiveMetadata": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ArchiveMetadata" }
+            "items": {
+              "$ref": "#/components/schemas/ArchiveMetadata"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "ArchivePublicData": {
-        "required": ["aipId"],
+        "required": [
+          "aipId"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -29333,18 +43359,30 @@
           "dataFileType": {
             "type": "string",
             "description": "The data file type of the archive public data.",
-            "enum": ["ARCHIVE_THUMBNAIL", "ARCHIVE_README", "ARCHIVE_DUA"]
+            "enum": [
+              "ARCHIVE_THUMBNAIL",
+              "ARCHIVE_README",
+              "ARCHIVE_DUA"
+            ]
+          },
+          "dataFile": {
+            "$ref": "#/components/schemas/ArchivePublicDataFile"
           },
-          "dataFile": { "$ref": "#/components/schemas/ArchivePublicDataFile" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Archive public data are data files which stored in the archive but with a public access:\n- ARCHIVE_THUMBNAIL => Dataset Thumbnail\n- ARCHIVE_README    => Dataset README\n- ARCHIVE_DUA       => Dataset Data Use Agreement\n"
       },
       "ArchivePublicDataFile": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -29366,44 +43404,67 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The data file of the archive public data."
       },
       "RestCollectionArchivePublicData": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ArchivePublicData" }
+            "items": {
+              "$ref": "#/components/schemas/ArchivePublicData"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "StoredAIP": {
-        "required": ["aipId", "archiveUri", "organizationalUnitId"],
+        "required": [
+          "aipId",
+          "archiveUri",
+          "organizationalUnitId"
+        ],
         "type": "object",
         "properties": {
-          "resId": { "type": "string" },
+          "resId": {
+            "type": "string"
+          },
           "aipId": {
             "maxLength": 2147483647,
             "minLength": 1,
             "type": "string"
           },
-          "archiveUri": { "type": "string", "format": "uri" },
+          "archiveUri": {
+            "type": "string",
+            "format": "uri"
+          },
           "organizationalUnitId": {
             "maxLength": 2147483647,
             "minLength": 1,
             "type": "string"
           },
-          "archiveId": { "type": "string" },
-          "aip": { "$ref": "#/components/schemas/ArchivalInfoPackage" },
+          "archiveId": {
+            "type": "string"
+          },
+          "aip": {
+            "$ref": "#/components/schemas/ArchivalInfoPackage"
+          },
           "dataSensitivity": {
             "type": "string",
             "description": "DataTage represents the data sensitivity of the archive:\n- UNDEFINED => Not defined (Data sensitivity not set to support previous archives)\n- BLUE => Public (Non-confidential information, stored and shared freely)\n- GREEN => Controlled public (Not harmful personal information, shared with some access control)\n- YELLOW => Accountable (Potentially harmful personal information, shared with loosely verified and/or approved recipients)\n- ORANGE => More accountable (Sensitive personal information, shared with verified and/or approved recipients under agreement)\n- RED => Fully accountable (Very sensitive personal information, shared with strong verification of approved recipients under signed agreement)\n- CRIMSON => Maximum restricted (Maximum sensitive, explicit permission for each transaction, strong verification of approved recipients under signed agreement)\n",
@@ -29419,9 +43480,15 @@
           },
           "archiveContainer": {
             "type": "string",
-            "enum": ["UNDEFINED", "ZIP", "BAG_IT"]
+            "enum": [
+              "UNDEFINED",
+              "ZIP",
+              "BAG_IT"
+            ]
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "AipDataFile": {
@@ -29434,8 +43501,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -29444,7 +43515,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "complianceLevel": {
             "type": "string",
@@ -29529,18 +43602,34 @@
               "ArchiveDataUseAgreement"
             ]
           },
-          "fileFormat": { "$ref": "#/components/schemas/FileFormat" },
-          "fileSize": { "type": "integer", "format": "int64" },
-          "finalData": { "type": "string", "format": "uri" },
-          "fileName": { "type": "string", "readOnly": true },
-          "metadataType": { "$ref": "#/components/schemas/MetadataType" },
+          "fileFormat": {
+            "$ref": "#/components/schemas/FileFormat"
+          },
+          "fileSize": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "finalData": {
+            "type": "string",
+            "format": "uri"
+          },
+          "fileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "metadataType": {
+            "$ref": "#/components/schemas/MetadataType"
+          },
           "relativeLocation": {
             "maxLength": 460,
             "minLength": 0,
             "pattern": "(^\\/$)|(^\\/.*(?<!\\/)$)",
             "type": "string"
           },
-          "sourceData": { "type": "string", "format": "uri" },
+          "sourceData": {
+            "type": "string",
+            "format": "uri"
+          },
           "status": {
             "type": "string",
             "enum": [
@@ -29571,12 +43660,18 @@
             "minLength": 0,
             "type": "string"
           },
-          "virusCheck": { "$ref": "#/components/schemas/VirusCheck" },
+          "virusCheck": {
+            "$ref": "#/components/schemas/VirusCheck"
+          },
           "checksums": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DataFileChecksum" }
+            "items": {
+              "$ref": "#/components/schemas/DataFileChecksum"
+            }
+          },
+          "infoPackage": {
+            "$ref": "#/components/schemas/ArchivalInfoPackage"
           },
-          "infoPackage": { "$ref": "#/components/schemas/ArchivalInfoPackage" },
           "fileStatus": {
             "type": "string",
             "writeOnly": true,
@@ -29603,25 +43698,43 @@
               "VIRUS_SKIPPED"
             ]
           },
-          "fullFileName": { "type": "string", "readOnly": true },
-          "inProgress": { "type": "boolean" },
-          "smartSize": { "type": "string", "readOnly": true },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "fullFileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "inProgress": {
+            "type": "boolean"
+          },
+          "smartSize": {
+            "type": "string",
+            "readOnly": true
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionArchivalInfoPackage": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ArchivalInfoPackage" }
+            "items": {
+              "$ref": "#/components/schemas/ArchivalInfoPackage"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -29662,20 +43775,51 @@
       "AuthUserDto": {
         "type": "object",
         "properties": {
-          "resId": { "type": "string" },
-          "externalUid": { "type": "string" },
-          "creationWhen": { "type": "string", "format": "date-time" },
-          "lastUpdateWhen": { "type": "string", "format": "date-time" },
-          "creationWho": { "type": "string" },
-          "lastUpdateWho": { "type": "string" },
-          "disabled": { "type": "boolean", "writeOnly": true },
-          "email": { "type": "string" },
-          "firstName": { "type": "string" },
-          "homeOrganization": { "type": "string" },
-          "lastName": { "type": "string" },
-          "applicationRole": { "$ref": "#/components/schemas/ApplicationRole" },
-          "firstLogin": { "$ref": "#/components/schemas/AuthLoginInfo" },
-          "lastLogin": { "$ref": "#/components/schemas/LoginInfo" },
+          "resId": {
+            "type": "string"
+          },
+          "externalUid": {
+            "type": "string"
+          },
+          "creationWhen": {
+            "type": "string",
+            "format": "date-time"
+          },
+          "lastUpdateWhen": {
+            "type": "string",
+            "format": "date-time"
+          },
+          "creationWho": {
+            "type": "string"
+          },
+          "lastUpdateWho": {
+            "type": "string"
+          },
+          "disabled": {
+            "type": "boolean",
+            "writeOnly": true
+          },
+          "email": {
+            "type": "string"
+          },
+          "firstName": {
+            "type": "string"
+          },
+          "homeOrganization": {
+            "type": "string"
+          },
+          "lastName": {
+            "type": "string"
+          },
+          "applicationRole": {
+            "$ref": "#/components/schemas/ApplicationRole"
+          },
+          "firstLogin": {
+            "$ref": "#/components/schemas/AuthLoginInfo"
+          },
+          "lastLogin": {
+            "$ref": "#/components/schemas/LoginInfo"
+          },
           "orcid": {
             "type": "string",
             "description": "The ORCID of the person (Format: xxxx-xxxx-xxxx-xxxx)."
@@ -29684,8 +43828,12 @@
             "type": "boolean",
             "description": "if the person ORCID is verified with ORCID authentication."
           },
-          "fullName": { "type": "string" },
-          "enabled": { "type": "boolean" }
+          "fullName": {
+            "type": "string"
+          },
+          "enabled": {
+            "type": "boolean"
+          }
         }
       },
       "LoginInfo": {
@@ -29714,8 +43862,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -29724,7 +43876,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "lastLoginTime": {
             "type": "string",
@@ -29737,8 +43891,13 @@
             "type": "string",
             "description": "The IP address from last login of the user."
           },
-          "applicationRole": { "$ref": "#/components/schemas/ApplicationRole" },
-          "disabled": { "type": "boolean", "writeOnly": true },
+          "applicationRole": {
+            "$ref": "#/components/schemas/ApplicationRole"
+          },
+          "disabled": {
+            "type": "boolean",
+            "writeOnly": true
+          },
           "email": {
             "maxLength": 255,
             "minLength": 1,
@@ -29769,7 +43928,9 @@
             "type": "string",
             "description": "The home organization of the user."
           },
-          "person": { "$ref": "#/components/schemas/Person" },
+          "person": {
+            "$ref": "#/components/schemas/Person"
+          },
           "fullName": {
             "type": "string",
             "description": "The full name of the user."
@@ -29778,40 +43939,60 @@
             "type": "boolean",
             "description": "If the user is enable."
           },
-          "authUserDto": { "$ref": "#/components/schemas/AuthUserDto" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "authUserDto": {
+            "$ref": "#/components/schemas/AuthUserDto"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A user represents a user of the platform. A person and roles are associated to it."
       },
       "RestCollectionUser": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/User" }
+            "items": {
+              "$ref": "#/components/schemas/User"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionSubmissionPolicy": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SubmissionPolicy" }
+            "items": {
+              "$ref": "#/components/schemas/SubmissionPolicy"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -29824,57 +44005,94 @@
         }
       },
       "SubmissionAgreementUser": {
-        "required": ["approbationTime"],
+        "required": [
+          "approbationTime"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "submissionAgreement": {
             "$ref": "#/components/schemas/SubmissionAgreement"
           },
-          "user": { "$ref": "#/components/schemas/User" },
-          "approbationTime": { "type": "string", "format": "date-time" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "user": {
+            "$ref": "#/components/schemas/User"
+          },
+          "approbationTime": {
+            "type": "string",
+            "format": "date-time"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionSubmissionAgreement": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SubmissionAgreement" }
+            "items": {
+              "$ref": "#/components/schemas/SubmissionAgreement"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionSubjectArea": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SubjectArea" }
+            "items": {
+              "$ref": "#/components/schemas/SubjectArea"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "ScheduledTask": {
-        "required": ["cronExpression", "name", "taskType"],
+        "required": [
+          "cronExpression",
+          "name",
+          "taskType"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -29930,70 +44148,106 @@
             "format": "date-time",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The scheduled task."
       },
       "RestCollectionScheduledTask": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ScheduledTask" }
+            "items": {
+              "$ref": "#/components/schemas/ScheduledTask"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "Role": {
-        "required": ["level", "name"],
+        "required": [
+          "level",
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "name": { "type": "string", "description": "The name of the role." },
+          "name": {
+            "type": "string",
+            "description": "The name of the role."
+          },
           "level": {
             "type": "integer",
             "description": "The level of the role.",
             "format": "int32"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A role defines a user’s access level on the platform, giving different permissions for performing actions on it."
       },
       "RestCollectionRole": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Role" }
+            "items": {
+              "$ref": "#/components/schemas/Role"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RatingType": {
-        "required": ["name"],
+        "required": [
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30004,63 +44258,96 @@
             "type": "string",
             "description": "The name of the rating type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The rating types is the type of grade for a dataset: Quality or Usefulness."
       },
       "RestCollectionRatingType": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/RatingType" }
+            "items": {
+              "$ref": "#/components/schemas/RatingType"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionPreservationPolicy": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/PreservationPolicy" }
+            "items": {
+              "$ref": "#/components/schemas/PreservationPolicy"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "OrganizationalUnitPersonRole": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "NotificationType": {
-        "required": ["notificationCategory", "notifiedInstitutionManager"],
+        "required": [
+          "notificationCategory",
+          "notifiedInstitutionManager"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "notifiedOrgUnitRole": { "$ref": "#/components/schemas/Role" },
+          "notifiedOrgUnitRole": {
+            "$ref": "#/components/schemas/Role"
+          },
           "notifiedInstitutionManager": {
             "type": "boolean",
             "description": "If the insitution manage has to be notified."
@@ -30071,33 +44358,52 @@
           "notificationCategory": {
             "type": "string",
             "description": "The category of the nofication type.",
-            "enum": ["INFO", "REQUEST"]
+            "enum": [
+              "INFO",
+              "REQUEST"
+            ]
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "List of notification type:\n- ACCESS_DATASET_REQUEST\n- APPROVE_DISPOSAL_BY_ORGUNIT_REQUEST\n- APPROVE_DISPOSAL_REQUEST\n- COMPLETED_ARCHIVE_INFO\n- CREATED_DEPOSIT_INFO\n- IN_ERROR_AIP_INFO\n- IN_ERROR_DEPOSIT_INFO\n- IN_ERROR_DIP_INFO\n- IN_ERROR_DOWNLOADED_AIP_INFO\n- IN_ERROR_SIP_INFO\n- JOIN_ORGUNIT_REQUEST\n- MY_APPROVED_DEPOSIT_INFO\n- MY_COMPLETED_ARCHIVE_INFO\n- MY_COMPLETED_DEPOSIT_INFO\n- MY_INDIRECT_COMPLETED_DEPOSIT_INFO\n- VALIDATE_DEPOSIT_REQUEST\n"
       },
       "InstitutionPersonRole": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionPerson": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Person" }
+            "items": {
+              "$ref": "#/components/schemas/Person"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -30112,16 +44418,26 @@
       "OrganizationalUnitSubmissionPolicy": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
-          "defaultPolicy": { "type": "boolean" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "defaultPolicy": {
+            "type": "boolean"
+          },
           "compositeKey": {
             "$ref": "#/components/schemas/OrganizationalUnitSubmissionPolicyId"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
-      "OrganizationalUnitSubmissionPolicyId": { "type": "object" },
+      "OrganizationalUnitSubmissionPolicyId": {
+        "type": "object"
+      },
       "JoinResourceContainerOrganizationalUnitPreservationPolicy": {
         "type": "object",
         "properties": {
@@ -30133,29 +44449,49 @@
       "OrganizationalUnitPreservationPolicy": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
-          "defaultPolicy": { "type": "boolean" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "defaultPolicy": {
+            "type": "boolean"
+          },
           "compositeKey": {
             "$ref": "#/components/schemas/OrganizationalUnitPreservationPolicyId"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
-      "OrganizationalUnitPreservationPolicyId": { "type": "object" },
+      "OrganizationalUnitPreservationPolicyId": {
+        "type": "object"
+      },
       "OrgUnitPersonRoleDTO": {
-        "required": ["level", "name"],
+        "required": [
+          "level",
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "name": { "type": "string", "description": "The name of the role." },
+          "name": {
+            "type": "string",
+            "description": "The name of the role."
+          },
           "level": {
             "type": "integer",
             "description": "The level of the role.",
@@ -30164,15 +44500,25 @@
           "joinResource": {
             "$ref": "#/components/schemas/OrganizationalUnitPersonRole"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "OrgUnitPersonRoleListDTO": {
-        "required": ["firstName", "lastName", "verifiedOrcid"],
+        "required": [
+          "firstName",
+          "lastName",
+          "verifiedOrcid"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30181,7 +44527,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "firstName": {
             "maxLength": 255,
@@ -30204,24 +44552,37 @@
             "type": "boolean",
             "description": "if the person ORCID is verified with ORCID authentication."
           },
-          "avatar": { "$ref": "#/components/schemas/PersonAvatar" },
+          "avatar": {
+            "$ref": "#/components/schemas/PersonAvatar"
+          },
           "fullName": {
             "type": "string",
             "description": "The full name of the person."
           },
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "roles": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OrgUnitPersonRoleDTO" }
+            "items": {
+              "$ref": "#/components/schemas/OrgUnitPersonRoleDTO"
+            }
           }
         }
       },
       "FundingAgency": {
-        "required": ["acronym", "name"],
+        "required": [
+          "acronym",
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30255,7 +44616,9 @@
             "type": "string",
             "description": "The ROR identifier of the funding agency."
           },
-          "logo": { "$ref": "#/components/schemas/FundingAgencyLogo" },
+          "logo": {
+            "$ref": "#/components/schemas/FundingAgencyLogo"
+          },
           "identifiers": {
             "type": "object",
             "additionalProperties": {
@@ -30264,15 +44627,21 @@
             },
             "description": "The other identifier list of the funding agency."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A funding agency represents organizations or groups who provide funds for research projects."
       },
       "FundingAgencyLogo": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30294,16 +44663,24 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The logo of the funding agency."
       },
       "DisseminationPolicy": {
-        "required": ["name"],
+        "required": [
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30319,7 +44696,12 @@
           "type": {
             "type": "string",
             "description": "Type of dissemination: IIIF or WEB.",
-            "enum": ["IIIF", "HEDERA", "BASIC", "OAIS"]
+            "enum": [
+              "IIIF",
+              "HEDERA",
+              "BASIC",
+              "OAIS"
+            ]
           },
           "parameters": {
             "maxLength": 2147483646,
@@ -30336,7 +44718,10 @@
           "downloadFileName": {
             "type": "string",
             "description": "Name used when downloading file: ARCHIVE_ID or ARCHIVE_NAME",
-            "enum": ["ARCHIVE_ID", "ARCHIVE_NAME"]
+            "enum": [
+              "ARCHIVE_ID",
+              "ARCHIVE_NAME"
+            ]
           },
           "suffix": {
             "maxLength": 255,
@@ -30350,7 +44735,9 @@
             "format": "int32",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A dissemination policy defines how to disseminate archives."
       },
@@ -30365,8 +44752,12 @@
       "OrganizationalUnitDisseminationPolicy": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "organizationalUnit": {
             "$ref": "#/components/schemas/OrganizationalUnit"
           },
@@ -30379,50 +44770,90 @@
             "type": "string",
             "description": "The parameters of the dissemination policy."
           },
-          "compositeKey": { "type": "string" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "compositeKey": {
+            "type": "string"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "AdditionalFieldsForm": {
-        "required": ["description", "name", "type"],
+        "required": [
+          "description",
+          "name",
+          "type"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "type": { "type": "string", "enum": ["FORMLY"] },
-          "name": { "type": "string" },
-          "description": { "type": "string" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "type": {
+            "type": "string",
+            "enum": [
+              "FORMLY"
+            ]
+          },
+          "name": {
+            "type": "string"
+          },
+          "description": {
+            "type": "string"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionOrganizationalUnit": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "items": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "DlcmOrcidSynchronization": {
-        "required": ["objectId", "person", "personId", "putCode"],
+        "required": [
+          "objectId",
+          "person",
+          "personId",
+          "putCode"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30455,24 +44886,38 @@
             "type": "integer",
             "description": "The ORCID's work put code"
           },
-          "person": { "$ref": "#/components/schemas/Person" },
-          "aipId": { "type": "string" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "person": {
+            "$ref": "#/components/schemas/Person"
+          },
+          "aipId": {
+            "type": "string"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionDlcmOrcidSynchronization": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DlcmOrcidSynchronization" }
+            "items": {
+              "$ref": "#/components/schemas/DlcmOrcidSynchronization"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -30486,17 +44931,27 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "signedDuaFile": { "$ref": "#/components/schemas/SignedDuaFile" },
-          "recipient": { "$ref": "#/components/schemas/Person" },
-          "emitter": { "$ref": "#/components/schemas/User" },
+          "signedDuaFile": {
+            "$ref": "#/components/schemas/SignedDuaFile"
+          },
+          "recipient": {
+            "$ref": "#/components/schemas/Person"
+          },
+          "emitter": {
+            "$ref": "#/components/schemas/User"
+          },
           "message": {
             "maxLength": 4096,
             "minLength": 1,
@@ -30512,12 +44967,20 @@
           "notificationStatus": {
             "type": "string",
             "description": "The status of the notification.",
-            "enum": ["APPROVED", "PENDING", "REFUSED", "NON_APPLICABLE"]
+            "enum": [
+              "APPROVED",
+              "PENDING",
+              "REFUSED",
+              "NON_APPLICABLE"
+            ]
           },
           "notificationMark": {
             "type": "string",
             "description": "The mark (read/unread) of the notification.",
-            "enum": ["READ", "UNREAD"]
+            "enum": [
+              "READ",
+              "UNREAD"
+            ]
           },
           "notificationType": {
             "$ref": "#/components/schemas/NotificationType"
@@ -30540,15 +45003,21 @@
             "description": "The date and the time when the notification was sent.",
             "format": "date-time"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Notifications can be sent to organizational units managers in order to request access to closed archive, or to ask for membership."
       },
       "SignedDuaFile": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30570,31 +45039,45 @@
             "type": "string",
             "description": "The content type of the file. It could be named as MIME type or media type."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The signed DUA of the notification."
       },
       "RestCollectionNotification": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Notification" }
+            "items": {
+              "$ref": "#/components/schemas/Notification"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "NotificationContributorDto": {
         "type": "object",
         "properties": {
-          "notification": { "$ref": "#/components/schemas/Notification" },
-          "contributorsId": { "type": "string" }
+          "notification": {
+            "$ref": "#/components/schemas/Notification"
+          },
+          "contributorsId": {
+            "type": "string"
+          }
         }
       },
       "NotificationsContributorDto": {
@@ -30611,73 +45094,114 @@
       "RestCollectionMetadataType": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/MetadataType" }
+            "items": {
+              "$ref": "#/components/schemas/MetadataType"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionLicense": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/License" }
+            "items": {
+              "$ref": "#/components/schemas/License"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionLanguage": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Language" }
+            "items": {
+              "$ref": "#/components/schemas/Language"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionInstitution": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Institution" }
+            "items": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "GlobalBanner": {
-        "required": ["endDate", "name", "startDate", "type"],
+        "required": [
+          "endDate",
+          "name",
+          "startDate",
+          "type"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30691,17 +45215,25 @@
           "type": {
             "type": "string",
             "description": "The type of the global banner.",
-            "enum": ["CRITICAL", "WARNING", "INFO"]
+            "enum": [
+              "CRITICAL",
+              "WARNING",
+              "INFO"
+            ]
           },
           "titleLabels": {
             "type": "array",
             "description": "The title list by language of the global banner.",
-            "items": { "$ref": "#/components/schemas/Label" }
+            "items": {
+              "$ref": "#/components/schemas/Label"
+            }
           },
           "descriptionLabels": {
             "type": "array",
             "description": "The description list by language of the global banner.",
-            "items": { "$ref": "#/components/schemas/LargeLabel" }
+            "items": {
+              "$ref": "#/components/schemas/LargeLabel"
+            }
           },
           "enabled": {
             "type": "boolean",
@@ -30722,86 +45254,126 @@
             "description": "If the global banner has a description.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The global banner allows to communicate general informations."
       },
       "RestCollectionGlobalBanner": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/GlobalBanner" }
+            "items": {
+              "$ref": "#/components/schemas/GlobalBanner"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionFundingAgency": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FundingAgency" }
+            "items": {
+              "$ref": "#/components/schemas/FundingAgency"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionDisseminationPolicy": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DisseminationPolicy" }
+            "items": {
+              "$ref": "#/components/schemas/DisseminationPolicy"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionArchiveType": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ArchiveType" }
+            "items": {
+              "$ref": "#/components/schemas/ArchiveType"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "ArchiveStatistics": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Archive statistics are the number of view/download for an archive."
       },
@@ -30824,25 +45396,42 @@
       "RestCollectionArchiveStatistics": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ArchiveStatistics" }
+            "items": {
+              "$ref": "#/components/schemas/ArchiveStatistics"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "ArchiveUserRating": {
-        "required": ["archiveId", "grade", "ratingType", "user"],
+        "required": [
+          "archiveId",
+          "grade",
+          "ratingType",
+          "user"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30853,30 +45442,44 @@
             "type": "string",
             "description": "The archive identifier of the archive rating."
           },
-          "user": { "$ref": "#/components/schemas/User" },
-          "ratingType": { "$ref": "#/components/schemas/RatingType" },
+          "user": {
+            "$ref": "#/components/schemas/User"
+          },
+          "ratingType": {
+            "$ref": "#/components/schemas/RatingType"
+          },
           "grade": {
             "type": "integer",
             "description": "The grade of the archive rating.",
             "format": "int32"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Archive ratings are the grade assigned by an user to an archive."
       },
       "RestCollectionArchiveUserRating": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ArchiveUserRating" }
+            "items": {
+              "$ref": "#/components/schemas/ArchiveUserRating"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -30890,15 +45493,21 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "signedDuaFile": { "$ref": "#/components/schemas/SignedDuaFile" },
+          "signedDuaFile": {
+            "$ref": "#/components/schemas/SignedDuaFile"
+          },
           "aipId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30908,7 +45517,9 @@
           "organizationalUnit": {
             "$ref": "#/components/schemas/OrganizationalUnit"
           },
-          "user": { "$ref": "#/components/schemas/User" },
+          "user": {
+            "$ref": "#/components/schemas/User"
+          },
           "expiration": {
             "type": "string",
             "description": "The expiration date of the ACL.",
@@ -30923,32 +45534,49 @@
             "description": "If the archive ACL is expired.",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "An archive access control list (ACL) is used to grant users access to restricted or closed archives."
       },
       "RestCollectionArchiveACL": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/ArchiveACL" }
+            "items": {
+              "$ref": "#/components/schemas/ArchiveACL"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "SolidifyApplicationRole": {
-        "required": ["level", "name"],
+        "required": [
+          "level",
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -30964,50 +45592,74 @@
             "description": "The level of the application role. The lowest value has more privileges.",
             "format": "int32"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A role at the application level, one of USER, ADMIN, ROOT."
       },
       "RestCollectionSolidifyApplicationRole": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SolidifyApplicationRole" }
+            "items": {
+              "$ref": "#/components/schemas/SolidifyApplicationRole"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "DisseminationPolicyDto": {
         "type": "object",
         "properties": {
-          "disseminationPolicyId": { "type": "string" },
+          "disseminationPolicyId": {
+            "type": "string"
+          },
           "subsetItemList": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OrderSubsetItem" }
+            "items": {
+              "$ref": "#/components/schemas/OrderSubsetItem"
+            }
           }
         }
       },
       "OrderSubsetItem": {
-        "required": ["itemPath"],
+        "required": [
+          "itemPath"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "itemPath": { "type": "string" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "itemPath": {
+            "type": "string"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "Order": {
@@ -31019,8 +45671,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -31033,12 +45689,22 @@
           },
           "subsetItems": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OrderSubsetItem" }
+            "items": {
+              "$ref": "#/components/schemas/OrderSubsetItem"
+            }
           },
           "metadataVersion": {
             "type": "string",
-            "description": "DLCM metadata are based on METS container, DataCite as descriptive metadata and PREMIS as administrative metadata.\nMetadata version:\n- 1.0 = DataCite 4.0 + PREMIS 3.0\n- 1.1 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0 + Data File Categories\n- 2.0 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.0\n- 2.1 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.1 + Dataset Thumbnail support\n- 3.0 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.1\n- 3.1 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.2 + Archive Thumbnail & DUA & README support\n- 4.0 = Datacite 4.5 + PREMIS 3.0 + DLCM Info 3.0 + Update of Archive Thumbnail & DUA & README\n",
-            "enum": ["1.0", "1.1", "2.0", "2.1", "3.0", "3.1", "4.0"]
+            "description": "DLCM metadata are based on METS container, DataCite as descriptive metadata and PREMIS as administrative metadata.\nMetadata version:\n- 1.0 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0\n- 1.1 = DataCite 4.0 + PREMIS 3.0 + DLCM Info 1.0\n- 2.0 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.0 + Data File Categories\n- 2.1 = DataCite 4.3 + PREMIS 3.0 + DLCM Info 2.1 + Dataset Thumbnail support\n- 3.0 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.1\n- 3.1 = DataCite 4.4 + PREMIS 3.0 + DLCM Info 2.2 + Archive Thumbnail & DUA & README support\n- 4.0 = Datacite 4.5 + PREMIS 3.0 + DLCM Info 3.0 + Update of Archive Thumbnail & DUA & README\n",
+            "enum": [
+              "1.0",
+              "1.1",
+              "2.0",
+              "2.1",
+              "3.0",
+              "3.1",
+              "4.0"
+            ]
           },
           "name": {
             "maxLength": 255,
@@ -31053,7 +45719,11 @@
           "queryType": {
             "type": "string",
             "description": "The type of the order query.",
-            "enum": ["ADVANCED", "DIRECT", "SIMPLE"]
+            "enum": [
+              "ADVANCED",
+              "DIRECT",
+              "SIMPLE"
+            ]
           },
           "status": {
             "type": "string",
@@ -31093,7 +45763,10 @@
               "SUBMITTED"
             ]
           },
-          "errorStatus": { "type": "string", "writeOnly": true },
+          "errorStatus": {
+            "type": "string",
+            "writeOnly": true
+          },
           "dipNumber": {
             "type": "integer",
             "description": "The DIP number of the order query.",
@@ -31104,23 +45777,33 @@
             "description": "The AIP number of the order query.",
             "format": "int32"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Orders allow to prepare archive download (DIP) from the archives (AIP)."
       },
       "DisseminationInfoPackage": {
-        "required": ["info"],
+        "required": [
+          "info"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "info": { "$ref": "#/components/schemas/RepresentationInfo" },
+          "info": {
+            "$ref": "#/components/schemas/RepresentationInfo"
+          },
           "ready": {
             "type": "boolean",
             "description": "If DIP package is ready.",
@@ -31175,23 +45858,33 @@
               "REPLICATING_TOMBSTONE"
             ]
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Dissemination Information Package (DIP)"
       },
       "RestCollectionOrder": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Order" }
+            "items": {
+              "$ref": "#/components/schemas/Order"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -31205,8 +45898,12 @@
         ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -31215,7 +45912,9 @@
           },
           "searchCriterias": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SearchCriteria" }
+            "items": {
+              "$ref": "#/components/schemas/SearchCriteria"
+            }
           },
           "complianceLevel": {
             "type": "string",
@@ -31300,18 +45999,34 @@
               "ArchiveDataUseAgreement"
             ]
           },
-          "fileFormat": { "$ref": "#/components/schemas/FileFormat" },
-          "fileSize": { "type": "integer", "format": "int64" },
-          "finalData": { "type": "string", "format": "uri" },
-          "fileName": { "type": "string", "readOnly": true },
-          "metadataType": { "$ref": "#/components/schemas/MetadataType" },
+          "fileFormat": {
+            "$ref": "#/components/schemas/FileFormat"
+          },
+          "fileSize": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "finalData": {
+            "type": "string",
+            "format": "uri"
+          },
+          "fileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "metadataType": {
+            "$ref": "#/components/schemas/MetadataType"
+          },
           "relativeLocation": {
             "maxLength": 460,
             "minLength": 0,
             "pattern": "(^\\/$)|(^\\/.*(?<!\\/)$)",
             "type": "string"
           },
-          "sourceData": { "type": "string", "format": "uri" },
+          "sourceData": {
+            "type": "string",
+            "format": "uri"
+          },
           "status": {
             "type": "string",
             "enum": [
@@ -31342,10 +46057,14 @@
             "minLength": 0,
             "type": "string"
           },
-          "virusCheck": { "$ref": "#/components/schemas/VirusCheck" },
+          "virusCheck": {
+            "$ref": "#/components/schemas/VirusCheck"
+          },
           "checksums": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DataFileChecksum" }
+            "items": {
+              "$ref": "#/components/schemas/DataFileChecksum"
+            }
           },
           "infoPackage": {
             "$ref": "#/components/schemas/DisseminationInfoPackage"
@@ -31376,25 +46095,43 @@
               "VIRUS_SKIPPED"
             ]
           },
-          "fullFileName": { "type": "string", "readOnly": true },
-          "inProgress": { "type": "boolean" },
-          "smartSize": { "type": "string", "readOnly": true },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "fullFileName": {
+            "type": "string",
+            "readOnly": true
+          },
+          "inProgress": {
+            "type": "boolean"
+          },
+          "smartSize": {
+            "type": "string",
+            "readOnly": true
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionDisseminationInfoPackage": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DisseminationInfoPackage" }
+            "items": {
+              "$ref": "#/components/schemas/DisseminationInfoPackage"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
@@ -31405,134 +46142,219 @@
             "type": "string",
             "description": "The name of the module."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The functional module."
       },
       "RestCollectionJobExecution": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/JobExecution" }
+            "items": {
+              "$ref": "#/components/schemas/JobExecution"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "JobExecutionReport": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string",
             "description": "The identifier of the resource. The default format is a Universally Unique IDentifier (UUID)."
           },
-          "executionNumber": { "type": "integer", "format": "int64" },
-          "ignoredItems": { "type": "integer", "format": "int64" },
-          "inErrorItems": { "type": "integer", "format": "int64" },
+          "executionNumber": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "ignoredItems": {
+            "type": "integer",
+            "format": "int64"
+          },
+          "inErrorItems": {
+            "type": "integer",
+            "format": "int64"
+          },
           "jobExecutionId": {
             "maxLength": 50,
             "minLength": 0,
             "type": "string"
           },
-          "processedItems": { "type": "integer", "format": "int64" },
+          "processedItems": {
+            "type": "integer",
+            "format": "int64"
+          },
           "totalItems": {
             "type": "integer",
             "format": "int64",
             "readOnly": true
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionJobExecutionReport": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/JobExecutionReport" }
+            "items": {
+              "$ref": "#/components/schemas/JobExecutionReport"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "JobExecutionReportLine": {
-        "required": ["changeTime", "resId", "status"],
+        "required": [
+          "changeTime",
+          "resId",
+          "status"
+        ],
         "type": "object",
         "properties": {
-          "changeTime": { "type": "string", "format": "date-time" },
+          "changeTime": {
+            "type": "string",
+            "format": "date-time"
+          },
           "errorMessage": {
             "maxLength": 1024,
             "minLength": 0,
             "type": "string"
           },
-          "reportId": { "maxLength": 50, "minLength": 0, "type": "string" },
-          "resId": { "maxLength": 50, "minLength": 0, "type": "string" },
+          "reportId": {
+            "maxLength": 50,
+            "minLength": 0,
+            "type": "string"
+          },
+          "resId": {
+            "maxLength": 50,
+            "minLength": 0,
+            "type": "string"
+          },
           "status": {
             "type": "string",
-            "enum": ["ERROR", "IGNORED", "PROCESSED"]
+            "enum": [
+              "ERROR",
+              "IGNORED",
+              "PROCESSED"
+            ]
           },
-          "url": { "type": "string" }
+          "url": {
+            "type": "string"
+          }
         }
       },
       "RestCollectionJobExecutionReportLine": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/JobExecutionReportLine" }
+            "items": {
+              "$ref": "#/components/schemas/JobExecutionReportLine"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionStatusHistory": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/StatusHistory" }
+            "items": {
+              "$ref": "#/components/schemas/StatusHistory"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "StatusHistory": {
-        "required": ["changeTime", "status"],
+        "required": [
+          "changeTime",
+          "status"
+        ],
         "type": "object",
         "properties": {
-          "changeTime": { "type": "string", "format": "date-time" },
-          "createdBy": { "type": "string" },
-          "creatorName": { "type": "string" },
+          "changeTime": {
+            "type": "string",
+            "format": "date-time"
+          },
+          "createdBy": {
+            "type": "string"
+          },
+          "creatorName": {
+            "type": "string"
+          },
           "description": {
             "maxLength": 1024,
             "minLength": 0,
             "type": "string"
           },
-          "status": { "type": "string" }
+          "status": {
+            "type": "string"
+          }
         }
       },
       "ModuleList": {
@@ -31586,16 +46408,24 @@
               "description": "The URL list of Archival Storage module."
             }
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The functional module list."
       },
       "AipCopy": {
         "type": "object",
         "properties": {
-          "aip": { "$ref": "#/components/schemas/ArchivalInfoPackage" },
-          "storageUrl": { "type": "string" },
-          "noUpdatedCopy": { "type": "boolean" },
+          "aip": {
+            "$ref": "#/components/schemas/ArchivalInfoPackage"
+          },
+          "storageUrl": {
+            "type": "string"
+          },
+          "noUpdatedCopy": {
+            "type": "boolean"
+          },
           "status": {
             "type": "string",
             "description": "OAIS Package Status:\n- CHECKED => Checked package during archiving process\n- CHECKING => A package verification is in progress during checking process\n- CHECK_PENDING => A package verification is pending during checking process\n- CLEANED => Cleaned package during cleaning process for SIP only\n- CLEANING => A package clean is in progress during cleaning process for SIP only\n- COMPLETED => Completed package\n- DISPOSABLE => The Package is candidate for disposal process for AIP only\n- DISPOSAL_APPROVED_BY_ORGUNIT => Disposal org. unit approval done during disposal process for AIP only\n- DISPOSAL_APPROVED => Disposal approval done during disposal process for AIP only\n- DISPOSED => Disposed package for AIP only\n- DOWNLOADING => A package download is in progress\n- EDITING_METADATA => A package metadata edition is in progress\n- FIXING => A package correction is in progress\n- FIXITY_ERROR => Error when checking checksums\n- FIX_PENDING => A package correction is pending\n- INDEXING => A package indexing is in progress\n- IN_ERROR => Package in error during archiving process\n- IN_PREPARATION => Package in preparation during archiving process\n- IN_PROGRESS => A package archiving process is in progress\n- METADATA_EDITION_PENDING => A metadata edition is pending\n- METADATA_UPGRADE_PENDING => A metadata version upgrade is pending\n- PACKAGE_REPLICATION_PENDING => A package replication is pending\n- PRESERVATION_ERROR => Package in error during checking process\n- READY => Package Ready\n- REINDEXING => A package re-indexing is in progress\n- RELOADED => Reloaded package from storage location\n- REPLICATING_PACKAGE => A package replication is in progress\n- REPLICATING_TOMBSTONE => A tombstone package replication is in progress\n- RESUBMITTING => A package re-submission is in progress\n- STORED => Package stored on storage location\n- TOMBSTONE_REPLICATION_PENDING => A tombstone replication is pending\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n",
@@ -31640,53 +46470,84 @@
       "AipCopyList": {
         "type": "object",
         "properties": {
-          "resId": { "type": "string" },
+          "resId": {
+            "type": "string"
+          },
           "copies": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AipCopy" }
+            "items": {
+              "$ref": "#/components/schemas/AipCopy"
+            }
+          },
+          "creationDate": {
+            "type": "string",
+            "format": "date-time"
           },
-          "creationDate": { "type": "string", "format": "date-time" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionAipCopyList": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AipCopyList" }
+            "items": {
+              "$ref": "#/components/schemas/AipCopyList"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionDepositDataFile": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DepositDataFile" }
+            "items": {
+              "$ref": "#/components/schemas/DepositDataFile"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "DownloadToken": {
-        "required": ["resourceType"],
+        "required": [
+          "resourceType"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -31713,94 +46574,175 @@
             "type": "string",
             "description": "The token of the download token."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "The download token."
       },
-      "StreamingResponseBody": { "type": "object" },
+      "StreamingResponseBody": {
+        "type": "object"
+      },
       "FileList": {
         "type": "object",
         "properties": {
-          "files": { "type": "array", "items": { "type": "string" } },
-          "puids": { "type": "array", "items": { "type": "string" } }
+          "files": {
+            "type": "array",
+            "items": {
+              "type": "string"
+            }
+          },
+          "puids": {
+            "type": "array",
+            "items": {
+              "type": "string"
+            }
+          }
         }
       },
       "Contributor": {
         "type": "object",
         "properties": {
-          "resId": { "type": "string" },
+          "resId": {
+            "type": "string"
+          },
           "depositNumber": {
             "type": "integer",
             "description": "The deposit number of the contributor.",
             "format": "int32"
           },
-          "fullName": { "type": "string" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
-          "orcid": { "type": "string" },
-          "verifiedOrcid": { "type": "boolean" },
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "firstName": { "type": "string" },
-          "lastName": { "type": "string" },
-          "avatar": { "$ref": "#/components/schemas/PersonAvatar" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "fullName": {
+            "type": "string"
+          },
+          "orcid": {
+            "type": "string"
+          },
+          "firstName": {
+            "type": "string"
+          },
+          "lastName": {
+            "type": "string"
+          },
+          "verifiedOrcid": {
+            "type": "boolean"
+          },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "avatar": {
+            "$ref": "#/components/schemas/PersonAvatar"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "Contributors are people who are involved in archives."
       },
       "RestCollectionContributor": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Contributor" }
+            "items": {
+              "$ref": "#/components/schemas/Contributor"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "DepositContributor": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
-          "position": { "type": "integer", "format": "int32" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "position": {
+            "type": "integer",
+            "format": "int32"
+          },
           "compositeKey": {
             "$ref": "#/components/schemas/DepositContributorId"
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
-      "DepositContributorId": { "type": "object" },
+      "DepositContributorId": {
+        "type": "object"
+      },
       "AboutType": {
         "type": "object",
-        "properties": { "any": { "type": "object" } }
+        "properties": {
+          "any": {
+            "type": "object"
+          }
+        }
       },
       "DescriptionType": {
         "type": "object",
-        "properties": { "any": { "type": "object" } }
+        "properties": {
+          "any": {
+            "type": "object"
+          }
+        }
       },
       "GetRecordType": {
-        "required": ["record"],
+        "required": [
+          "record"
+        ],
         "type": "object",
         "properties": {
-          "record": { "$ref": "#/components/schemas/RecordType" }
+          "record": {
+            "$ref": "#/components/schemas/RecordType"
+          }
         }
       },
       "HeaderType": {
-        "required": ["datestamp", "identifier"],
+        "required": [
+          "datestamp",
+          "identifier"
+        ],
         "type": "object",
         "properties": {
-          "identifier": { "type": "string" },
-          "datestamp": { "type": "string" },
-          "setSpec": { "type": "array", "items": { "type": "string" } },
+          "identifier": {
+            "type": "string"
+          },
+          "datestamp": {
+            "type": "string"
+          },
+          "setSpec": {
+            "type": "array",
+            "items": {
+              "type": "string"
+            }
+          },
           "status": {
             "type": "string",
-            "xml": { "attribute": true },
-            "enum": ["DELETED"]
+            "xml": {
+              "attribute": true
+            },
+            "enum": [
+              "DELETED"
+            ]
           }
         }
       },
@@ -31816,33 +46758,64 @@
         ],
         "type": "object",
         "properties": {
-          "repositoryName": { "type": "string" },
-          "baseURL": { "type": "string" },
-          "protocolVersion": { "type": "string" },
-          "adminEmail": { "type": "array", "items": { "type": "string" } },
-          "earliestDatestamp": { "type": "string" },
+          "repositoryName": {
+            "type": "string"
+          },
+          "baseURL": {
+            "type": "string"
+          },
+          "protocolVersion": {
+            "type": "string"
+          },
+          "adminEmail": {
+            "type": "array",
+            "items": {
+              "type": "string"
+            }
+          },
+          "earliestDatestamp": {
+            "type": "string"
+          },
           "deletedRecord": {
             "type": "string",
-            "enum": ["NO", "PERSISTENT", "TRANSIENT"]
+            "enum": [
+              "NO",
+              "PERSISTENT",
+              "TRANSIENT"
+            ]
           },
           "granularity": {
             "type": "string",
-            "enum": ["YYYY_MM_DD", "YYYY_MM_DD_THH_MM_SS_Z"]
+            "enum": [
+              "YYYY_MM_DD",
+              "YYYY_MM_DD_THH_MM_SS_Z"
+            ]
+          },
+          "compression": {
+            "type": "array",
+            "items": {
+              "type": "string"
+            }
           },
-          "compression": { "type": "array", "items": { "type": "string" } },
           "description": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DescriptionType" }
+            "items": {
+              "$ref": "#/components/schemas/DescriptionType"
+            }
           }
         }
       },
       "ListIdentifiersType": {
-        "required": ["header"],
+        "required": [
+          "header"
+        ],
         "type": "object",
         "properties": {
           "header": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/HeaderType" }
+            "items": {
+              "$ref": "#/components/schemas/HeaderType"
+            }
           },
           "resumptionToken": {
             "$ref": "#/components/schemas/ResumptionTokenType"
@@ -31850,22 +46823,30 @@
         }
       },
       "ListMetadataFormatsType": {
-        "required": ["metadataFormat"],
+        "required": [
+          "metadataFormat"
+        ],
         "type": "object",
         "properties": {
           "metadataFormat": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/MetadataFormatType" }
+            "items": {
+              "$ref": "#/components/schemas/MetadataFormatType"
+            }
           }
         }
       },
       "ListRecordsType": {
-        "required": ["record"],
+        "required": [
+          "record"
+        ],
         "type": "object",
         "properties": {
           "record": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/RecordType" }
+            "items": {
+              "$ref": "#/components/schemas/RecordType"
+            }
           },
           "resumptionToken": {
             "$ref": "#/components/schemas/ResumptionTokenType"
@@ -31873,12 +46854,16 @@
         }
       },
       "ListSetsType": {
-        "required": ["set"],
+        "required": [
+          "set"
+        ],
         "type": "object",
         "properties": {
           "set": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SetType" }
+            "items": {
+              "$ref": "#/components/schemas/SetType"
+            }
           },
           "resumptionToken": {
             "$ref": "#/components/schemas/ResumptionTokenType"
@@ -31886,29 +46871,47 @@
         }
       },
       "MetadataFormatType": {
-        "required": ["metadataNamespace", "metadataPrefix", "schema"],
+        "required": [
+          "metadataNamespace",
+          "metadataPrefix",
+          "schema"
+        ],
         "type": "object",
         "properties": {
-          "metadataPrefix": { "type": "string" },
-          "schema": { "type": "string" },
-          "metadataNamespace": { "type": "string" }
+          "metadataPrefix": {
+            "type": "string"
+          },
+          "schema": {
+            "type": "string"
+          },
+          "metadataNamespace": {
+            "type": "string"
+          }
         }
       },
       "OAIPMH": {
         "type": "object",
         "properties": {
-          "oai": { "$ref": "#/components/schemas/OAIPMHtype" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "oai": {
+            "$ref": "#/components/schemas/OAIPMHtype"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "OAI-PMH Provider\nSpecifications: http://www.openarchives.org/OAI/openarchivesprotocol.html\n"
       },
       "OAIPMHerrorType": {
         "type": "object",
         "properties": {
-          "value": { "type": "string" },
+          "value": {
+            "type": "string"
+          },
           "code": {
             "type": "string",
-            "xml": { "attribute": true },
+            "xml": {
+              "attribute": true
+            },
             "enum": [
               "CANNOT_DISSEMINATE_FORMAT",
               "ID_DOES_NOT_EXIST",
@@ -31923,46 +46926,76 @@
         }
       },
       "OAIPMHtype": {
-        "required": ["request", "responseDate"],
+        "required": [
+          "request",
+          "responseDate"
+        ],
         "type": "object",
         "properties": {
-          "responseDate": { "type": "string", "format": "date-time" },
-          "request": { "$ref": "#/components/schemas/RequestType" },
+          "responseDate": {
+            "type": "string",
+            "format": "date-time"
+          },
+          "request": {
+            "$ref": "#/components/schemas/RequestType"
+          },
           "error": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OAIPMHerrorType" }
+            "items": {
+              "$ref": "#/components/schemas/OAIPMHerrorType"
+            }
+          },
+          "identify": {
+            "$ref": "#/components/schemas/IdentifyType"
           },
-          "identify": { "$ref": "#/components/schemas/IdentifyType" },
           "listMetadataFormats": {
             "$ref": "#/components/schemas/ListMetadataFormatsType"
           },
-          "listSets": { "$ref": "#/components/schemas/ListSetsType" },
-          "getRecord": { "$ref": "#/components/schemas/GetRecordType" },
+          "listSets": {
+            "$ref": "#/components/schemas/ListSetsType"
+          },
+          "getRecord": {
+            "$ref": "#/components/schemas/GetRecordType"
+          },
           "listIdentifiers": {
             "$ref": "#/components/schemas/ListIdentifiersType"
           },
-          "listRecords": { "$ref": "#/components/schemas/ListRecordsType" }
+          "listRecords": {
+            "$ref": "#/components/schemas/ListRecordsType"
+          }
         }
       },
       "RecordType": {
-        "required": ["header"],
+        "required": [
+          "header"
+        ],
         "type": "object",
         "properties": {
-          "header": { "$ref": "#/components/schemas/HeaderType" },
-          "metadata": { "$ref": "#/components/schemas/MetadataType" },
+          "header": {
+            "$ref": "#/components/schemas/HeaderType"
+          },
+          "metadata": {
+            "$ref": "#/components/schemas/MetadataType"
+          },
           "about": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AboutType" }
+            "items": {
+              "$ref": "#/components/schemas/AboutType"
+            }
           }
         }
       },
       "RequestType": {
         "type": "object",
         "properties": {
-          "value": { "type": "string" },
+          "value": {
+            "type": "string"
+          },
           "verb": {
             "type": "string",
-            "xml": { "attribute": true },
+            "xml": {
+              "attribute": true
+            },
             "enum": [
               "IDENTIFY",
               "LIST_METADATA_FORMATS",
@@ -31972,136 +47005,241 @@
               "LIST_RECORDS"
             ]
           },
-          "identifier": { "type": "string", "xml": { "attribute": true } },
-          "metadataPrefix": { "type": "string", "xml": { "attribute": true } },
-          "from": { "type": "string", "xml": { "attribute": true } },
-          "until": { "type": "string", "xml": { "attribute": true } },
-          "set": { "type": "string", "xml": { "attribute": true } },
-          "resumptionToken": { "type": "string", "xml": { "attribute": true } }
+          "identifier": {
+            "type": "string",
+            "xml": {
+              "attribute": true
+            }
+          },
+          "metadataPrefix": {
+            "type": "string",
+            "xml": {
+              "attribute": true
+            }
+          },
+          "from": {
+            "type": "string",
+            "xml": {
+              "attribute": true
+            }
+          },
+          "until": {
+            "type": "string",
+            "xml": {
+              "attribute": true
+            }
+          },
+          "set": {
+            "type": "string",
+            "xml": {
+              "attribute": true
+            }
+          },
+          "resumptionToken": {
+            "type": "string",
+            "xml": {
+              "attribute": true
+            }
+          }
         }
       },
       "ResumptionTokenType": {
         "type": "object",
         "properties": {
-          "value": { "type": "string" },
+          "value": {
+            "type": "string"
+          },
           "expirationDate": {
             "type": "string",
             "format": "date-time",
-            "xml": { "attribute": true }
+            "xml": {
+              "attribute": true
+            }
           },
           "completeListSize": {
             "type": "integer",
-            "xml": { "attribute": true }
+            "xml": {
+              "attribute": true
+            }
           },
-          "cursor": { "type": "integer", "xml": { "attribute": true } }
+          "cursor": {
+            "type": "integer",
+            "xml": {
+              "attribute": true
+            }
+          }
         }
       },
       "SetType": {
-        "required": ["setName", "setSpec"],
+        "required": [
+          "setName",
+          "setSpec"
+        ],
         "type": "object",
         "properties": {
-          "setSpec": { "type": "string" },
-          "setName": { "type": "string" },
+          "setSpec": {
+            "type": "string"
+          },
+          "setName": {
+            "type": "string"
+          },
           "setDescription": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DescriptionType" }
+            "items": {
+              "$ref": "#/components/schemas/DescriptionType"
+            }
           }
         }
       },
       "RestCollectionSipDataFile": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SipDataFile" }
+            "items": {
+              "$ref": "#/components/schemas/SipDataFile"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionIndexProperties": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/IndexProperties" }
+            "items": {
+              "$ref": "#/components/schemas/IndexProperties"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "FacetRequest": {
         "type": "object",
         "properties": {
-          "name": { "type": "string" },
-          "minCount": { "type": "integer", "format": "int32" },
-          "limit": { "type": "integer", "format": "int32" },
-          "field": { "type": "string" }
+          "name": {
+            "type": "string"
+          },
+          "minCount": {
+            "type": "integer",
+            "format": "int32"
+          },
+          "limit": {
+            "type": "integer",
+            "format": "int32"
+          },
+          "field": {
+            "type": "string"
+          }
         }
       },
       "RestCollectionFacetRequest": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetRequest" }
+            "items": {
+              "$ref": "#/components/schemas/FacetRequest"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionStoredAIP": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/StoredAIP" }
+            "items": {
+              "$ref": "#/components/schemas/StoredAIP"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionAipDataFile": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AipDataFile" }
+            "items": {
+              "$ref": "#/components/schemas/AipDataFile"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "AipStatus": {
         "type": "object",
         "properties": {
-          "creationTime": { "type": "string", "format": "date-time" },
-          "resId": { "type": "string" },
+          "creationTime": {
+            "type": "string",
+            "format": "date-time"
+          },
+          "resId": {
+            "type": "string"
+          },
           "status": {
             "type": "string",
             "description": "OAIS Package Status:\n- CHECKED => Checked package during archiving process\n- CHECKING => A package verification is in progress during checking process\n- CHECK_PENDING => A package verification is pending during checking process\n- CLEANED => Cleaned package during cleaning process for SIP only\n- CLEANING => A package clean is in progress during cleaning process for SIP only\n- COMPLETED => Completed package\n- DISPOSABLE => The Package is candidate for disposal process for AIP only\n- DISPOSAL_APPROVED_BY_ORGUNIT => Disposal org. unit approval done during disposal process for AIP only\n- DISPOSAL_APPROVED => Disposal approval done during disposal process for AIP only\n- DISPOSED => Disposed package for AIP only\n- DOWNLOADING => A package download is in progress\n- EDITING_METADATA => A package metadata edition is in progress\n- FIXING => A package correction is in progress\n- FIXITY_ERROR => Error when checking checksums\n- FIX_PENDING => A package correction is pending\n- INDEXING => A package indexing is in progress\n- IN_ERROR => Package in error during archiving process\n- IN_PREPARATION => Package in preparation during archiving process\n- IN_PROGRESS => A package archiving process is in progress\n- METADATA_EDITION_PENDING => A metadata edition is pending\n- METADATA_UPGRADE_PENDING => A metadata version upgrade is pending\n- PACKAGE_REPLICATION_PENDING => A package replication is pending\n- PRESERVATION_ERROR => Package in error during checking process\n- READY => Package Ready\n- REINDEXING => A package re-indexing is in progress\n- RELOADED => Reloaded package from storage location\n- REPLICATING_PACKAGE => A package replication is in progress\n- REPLICATING_TOMBSTONE => A tombstone package replication is in progress\n- RESUBMITTING => A package re-submission is in progress\n- STORED => Package stored on storage location\n- TOMBSTONE_REPLICATION_PENDING => A tombstone replication is pending\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n",
@@ -32141,57 +47279,93 @@
               "REPLICATING_TOMBSTONE"
             ]
           },
-          "updateTime": { "type": "string", "format": "date-time" }
+          "updateTime": {
+            "type": "string",
+            "format": "date-time"
+          }
         }
       },
       "RestCollectionAipStatus": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AipStatus" }
+            "items": {
+              "$ref": "#/components/schemas/AipStatus"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "FacetProperties": {
         "type": "object",
         "properties": {
-          "name": { "type": "string" },
-          "defaultVisibleValues": { "type": "integer", "format": "int32" },
+          "name": {
+            "type": "string"
+          },
+          "defaultVisibleValues": {
+            "type": "integer",
+            "format": "int32"
+          },
           "labels": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/LabelDTO" }
+            "items": {
+              "$ref": "#/components/schemas/LabelDTO"
+            }
           },
           "descriptionLabels": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/LabelDTO" }
+            "items": {
+              "$ref": "#/components/schemas/LabelDTO"
+            }
           },
-          "withDescription": { "type": "boolean" }
+          "withDescription": {
+            "type": "boolean"
+          }
         },
         "description": "Describes facet properties used on archives search page."
       },
       "LabelDTO": {
         "type": "object",
         "properties": {
-          "text": { "type": "string" },
-          "language": { "type": "string" }
+          "text": {
+            "type": "string"
+          },
+          "language": {
+            "type": "string"
+          }
         }
       },
       "OrcidConfigDTO": {
         "type": "object",
         "properties": {
-          "baseUrl": { "type": "string" },
-          "authorizeUrl": { "type": "string" },
-          "tokenUrl": { "type": "string" },
-          "clientId": { "type": "string" },
-          "scope": { "type": "string" }
+          "baseUrl": {
+            "type": "string"
+          },
+          "authorizeUrl": {
+            "type": "string"
+          },
+          "tokenUrl": {
+            "type": "string"
+          },
+          "clientId": {
+            "type": "string"
+          },
+          "scope": {
+            "type": "string"
+          }
         },
         "description": "ORCID configuration (authorizeUrl, clientId, scope)"
       },
@@ -32249,17 +47423,25 @@
           "searchFacets": {
             "type": "array",
             "description": "Describes facet properties used on archives search page.",
-            "items": { "$ref": "#/components/schemas/FacetProperties" }
+            "items": {
+              "$ref": "#/components/schemas/FacetProperties"
+            }
+          },
+          "orcid": {
+            "$ref": "#/components/schemas/OrcidConfigDTO"
           },
-          "orcid": { "$ref": "#/components/schemas/OrcidConfigDTO" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A system property is defined by the back-end administrators, for the whole system."
       },
       "RestCollectionJoinResourceContainerSubmissionAgreementUser": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
             "items": {
@@ -32268,41 +47450,63 @@
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionSubmissionAgreementUser": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/SubmissionAgreementUser" }
+            "items": {
+              "$ref": "#/components/schemas/SubmissionAgreementUser"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "JoinResourceContainer": {
         "type": "object",
         "properties": {
-          "joinResource": { "$ref": "#/components/schemas/JoinResourceObject" }
+          "joinResource": {
+            "$ref": "#/components/schemas/JoinResourceObject"
+          }
         }
       },
       "JoinResourceObject": {
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
-          "compositeKey": { "type": "object" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "compositeKey": {
+            "type": "object"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "Relation3TiersChildDTO": {
@@ -32310,46 +47514,66 @@
         "properties": {
           "grandChildren": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/JoinResourceContainer" }
+            "items": {
+              "$ref": "#/components/schemas/JoinResourceContainer"
+            }
           }
         }
       },
       "RestCollectionRelation3TiersChildDTO": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/Relation3TiersChildDTO" }
+            "items": {
+              "$ref": "#/components/schemas/Relation3TiersChildDTO"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionNotificationType": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/NotificationType" }
+            "items": {
+              "$ref": "#/components/schemas/NotificationType"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionJoinResourceContainerOrganizationalUnitSubmissionPolicy": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
             "items": {
@@ -32358,16 +47582,22 @@
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionJoinResourceContainerOrganizationalUnitPreservationPolicy": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
             "items": {
@@ -32376,16 +47606,22 @@
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionJoinResourceContainerOrganizationalUnitDisseminationPolicy": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
             "items": {
@@ -32394,34 +47630,78 @@
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionAdditionalFieldsForm": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AdditionalFieldsForm" }
+            "items": {
+              "$ref": "#/components/schemas/AdditionalFieldsForm"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
+      "I18nLink": {
+        "type": "object",
+        "properties": {
+          "url": {
+            "type": "string"
+          },
+          "languageCode": {
+            "type": "string"
+          },
+          "text": {
+            "type": "string"
+          }
+        }
+      },
+      "OrcidWebsiteDTO": {
+        "type": "object",
+        "properties": {
+          "links": {
+            "type": "array",
+            "items": {
+              "$ref": "#/components/schemas/I18nLink"
+            }
+          }
+        }
+      },
       "AuthorizedOrganizationalUnitDto": {
-        "required": ["name", "openingDate"],
+        "required": [
+          "name",
+          "openingDate"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -32433,7 +47713,9 @@
             "description": "The closing date of the organizational unit.",
             "format": "date"
           },
-          "defaultLicense": { "$ref": "#/components/schemas/License" },
+          "defaultLicense": {
+            "$ref": "#/components/schemas/License"
+          },
           "defaultPreservationPolicy": {
             "$ref": "#/components/schemas/PreservationPolicy"
           },
@@ -32449,7 +47731,9 @@
           "institutions": {
             "type": "array",
             "writeOnly": true,
-            "items": { "$ref": "#/components/schemas/Institution" }
+            "items": {
+              "$ref": "#/components/schemas/Institution"
+            }
           },
           "isEmpty": {
             "type": "boolean",
@@ -32479,21 +47763,33 @@
             "description": "The URL of the organizational unit.",
             "format": "url"
           },
-          "logo": { "$ref": "#/components/schemas/OrganizationalUnitLogo" },
-          "role": { "$ref": "#/components/schemas/Role" },
-          "roleFromOrganizationalUnit": { "$ref": "#/components/schemas/Role" },
-          "roleFromInstitution": { "$ref": "#/components/schemas/Role" },
+          "logo": {
+            "$ref": "#/components/schemas/OrganizationalUnitLogo"
+          },
+          "role": {
+            "$ref": "#/components/schemas/Role"
+          },
+          "roleFromOrganizationalUnit": {
+            "$ref": "#/components/schemas/Role"
+          },
+          "roleFromInstitution": {
+            "$ref": "#/components/schemas/Role"
+          },
           "open": {
             "type": "boolean",
             "description": "If the organizational unit is currently open."
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionAuthorizedOrganizationalUnitDto": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
             "items": {
@@ -32502,18 +47798,28 @@
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "AuthorizedInstitutionDto": {
-        "required": ["name"],
+        "required": [
+          "name"
+        ],
         "type": "object",
         "properties": {
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "resId": {
             "maxLength": 50,
             "minLength": 0,
@@ -32549,7 +47855,9 @@
             "type": "string",
             "description": "The ROR identifier of the institution."
           },
-          "logo": { "$ref": "#/components/schemas/InstitutionLogo" },
+          "logo": {
+            "$ref": "#/components/schemas/InstitutionLogo"
+          },
           "identifiers": {
             "type": "object",
             "additionalProperties": {
@@ -32558,62 +47866,99 @@
             },
             "description": "The other identifiers list of the institution."
           },
-          "role": { "$ref": "#/components/schemas/Role" },
+          "role": {
+            "$ref": "#/components/schemas/Role"
+          },
           "organizationalUnit": {
             "type": "array",
             "writeOnly": true,
-            "items": { "$ref": "#/components/schemas/OrganizationalUnit" }
+            "items": {
+              "$ref": "#/components/schemas/OrganizationalUnit"
+            }
           },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         }
       },
       "RestCollectionAuthorizedInstitutionDto": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AuthorizedInstitutionDto" }
+            "items": {
+              "$ref": "#/components/schemas/AuthorizedInstitutionDto"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "ArchiveStatisticsDto": {
         "type": "object",
         "properties": {
-          "statistics": { "$ref": "#/components/schemas/StatisticsInfo" },
+          "statistics": {
+            "$ref": "#/components/schemas/StatisticsInfo"
+          },
           "averageRatings": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/AverageRating" }
+            "items": {
+              "$ref": "#/components/schemas/AverageRating"
+            }
           },
           "averageRating": {
             "type": "array",
             "writeOnly": true,
-            "items": { "$ref": "#/components/schemas/AverageRating" }
+            "items": {
+              "$ref": "#/components/schemas/AverageRating"
+            }
           }
         }
       },
       "AverageRating": {
         "type": "object",
         "properties": {
-          "ratingType": { "type": "string" },
-          "averageValue": { "type": "integer", "format": "int32" },
-          "numberVotes": { "type": "integer", "format": "int64" }
+          "ratingType": {
+            "type": "string"
+          },
+          "averageValue": {
+            "type": "integer",
+            "format": "int32"
+          },
+          "numberVotes": {
+            "type": "integer",
+            "format": "int64"
+          }
         }
       },
       "Sitemapindex": {
-        "required": ["sitemap"],
+        "required": [
+          "sitemap"
+        ],
         "type": "object",
         "properties": {
-          "any": { "type": "array", "items": { "type": "object" } },
+          "any": {
+            "type": "array",
+            "items": {
+              "type": "object"
+            }
+          },
           "sitemap": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/TSitemap" }
+            "items": {
+              "$ref": "#/components/schemas/TSitemap"
+            }
           }
         },
         "xml": {
@@ -32622,20 +47967,37 @@
         }
       },
       "TSitemap": {
-        "required": ["loc"],
+        "required": [
+          "loc"
+        ],
         "type": "object",
         "properties": {
-          "loc": { "type": "string" },
-          "lastmod": { "type": "string" },
-          "any": { "type": "array", "items": { "type": "object" } }
+          "loc": {
+            "type": "string"
+          },
+          "lastmod": {
+            "type": "string"
+          },
+          "any": {
+            "type": "array",
+            "items": {
+              "type": "object"
+            }
+          }
         }
       },
       "TUrl": {
-        "required": ["loc"],
+        "required": [
+          "loc"
+        ],
         "type": "object",
         "properties": {
-          "loc": { "type": "string" },
-          "lastmod": { "type": "string" },
+          "loc": {
+            "type": "string"
+          },
+          "lastmod": {
+            "type": "string"
+          },
           "changefreq": {
             "type": "string",
             "enum": [
@@ -32648,18 +48010,34 @@
               "NEVER"
             ]
           },
-          "priority": { "type": "number" },
-          "any": { "type": "array", "items": { "type": "object" } }
+          "priority": {
+            "type": "number"
+          },
+          "any": {
+            "type": "array",
+            "items": {
+              "type": "object"
+            }
+          }
         }
       },
       "Urlset": {
-        "required": ["url"],
+        "required": [
+          "url"
+        ],
         "type": "object",
         "properties": {
-          "any": { "type": "array", "items": { "type": "object" } },
+          "any": {
+            "type": "array",
+            "items": {
+              "type": "object"
+            }
+          },
           "url": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/TUrl" }
+            "items": {
+              "$ref": "#/components/schemas/TUrl"
+            }
           }
         },
         "xml": {
@@ -32670,22 +48048,36 @@
       "CitationDto": {
         "type": "object",
         "properties": {
-          "language": { "type": "string" },
-          "text": { "type": "string" },
-          "style": { "type": "string" },
-          "outputFormat": { "type": "string" }
+          "language": {
+            "type": "string"
+          },
+          "text": {
+            "type": "string"
+          },
+          "style": {
+            "type": "string"
+          },
+          "outputFormat": {
+            "type": "string"
+          }
         }
       },
       "OrgUnit": {
         "type": "object",
         "properties": {
-          "resId": { "type": "string" },
-          "creation": { "$ref": "#/components/schemas/ChangeInfo" },
+          "resId": {
+            "type": "string"
+          },
+          "creation": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "description": {
             "type": "string",
             "description": "The description of the organizational unit."
           },
-          "lastUpdate": { "$ref": "#/components/schemas/ChangeInfo" },
+          "lastUpdate": {
+            "$ref": "#/components/schemas/ChangeInfo"
+          },
           "name": {
             "type": "string",
             "description": "The name of the organizational unit."
@@ -32705,77 +48097,125 @@
             "description": "The closing date of the organizational unit.",
             "format": "date"
           },
-          "logo": { "$ref": "#/components/schemas/OrganizationalUnitLogo" },
-          "_links": { "$ref": "#/components/schemas/Links" }
+          "logo": {
+            "$ref": "#/components/schemas/OrganizationalUnitLogo"
+          },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          }
         },
         "description": "A organizational unit is a logical entity which could represent a research project or laboratory or all other organizational group of researchers. This entity contains public information of a organizational unit."
       },
       "RestCollectionOrgUnit": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OrgUnit" }
+            "items": {
+              "$ref": "#/components/schemas/OrgUnit"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "OrderArchive": {
         "type": "object",
         "properties": {
-          "archive": { "$ref": "#/components/schemas/ArchivalInfoPackage" },
-          "metadata": { "$ref": "#/components/schemas/ArchiveMetadata" }
+          "archive": {
+            "$ref": "#/components/schemas/ArchivalInfoPackage"
+          },
+          "metadata": {
+            "$ref": "#/components/schemas/ArchiveMetadata"
+          }
         }
       },
       "RestCollectionOrderArchive": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/OrderArchive" }
+            "items": {
+              "$ref": "#/components/schemas/OrderArchive"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "RestCollectionDipDataFile": {
         "type": "object",
         "properties": {
-          "_links": { "$ref": "#/components/schemas/Links" },
+          "_links": {
+            "$ref": "#/components/schemas/Links"
+          },
           "_data": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/DipDataFile" }
+            "items": {
+              "$ref": "#/components/schemas/DipDataFile"
+            }
           },
           "_facets": {
             "type": "array",
-            "items": { "$ref": "#/components/schemas/FacetResult" }
+            "items": {
+              "$ref": "#/components/schemas/FacetResult"
+            }
           },
-          "_page": { "$ref": "#/components/schemas/RestCollectionPage" }
+          "_page": {
+            "$ref": "#/components/schemas/RestCollectionPage"
+          }
         },
         "description": "The structure of the REST response:\n- data: the list of objects\n- page: the pagination information\n- links: the HATEOAS links\n- facets: the search information\n"
       },
       "Link": {
         "type": "object",
         "properties": {
-          "href": { "type": "string" },
-          "hreflang": { "type": "string" },
-          "title": { "type": "string" },
-          "type": { "type": "string" },
-          "deprecation": { "type": "string" },
-          "profile": { "type": "string" },
-          "name": { "type": "string" },
-          "templated": { "type": "boolean" }
+          "href": {
+            "type": "string"
+          },
+          "hreflang": {
+            "type": "string"
+          },
+          "title": {
+            "type": "string"
+          },
+          "type": {
+            "type": "string"
+          },
+          "deprecation": {
+            "type": "string"
+          },
+          "profile": {
+            "type": "string"
+          },
+          "name": {
+            "type": "string"
+          },
+          "templated": {
+            "type": "boolean"
+          }
         }
       }
     },
@@ -32791,10 +48231,12 @@
           "authorizationCode": {
             "authorizationUrl": "doc/oauth/authorize",
             "tokenUrl": "doc/oauth/token",
-            "scopes": { "app-dlcm": "DLCM Solution" }
+            "scopes": {
+              "app-dlcm": "DLCM Solution"
+            }
           }
         }
       }
     }
   }
-}
+}
\ No newline at end of file
-- 
GitLab