diff --git a/src/app/enums/index.ts b/src/app/enums/index.ts index 77b68f018a562b1b0e80235a2157172ddee37b43..bc40f96dbaea46d3ddde70c37e678976490f09e8 100644 --- a/src/app/enums/index.ts +++ b/src/app/enums/index.ts @@ -1301,6 +1301,7 @@ export namespace Enums { { key: StatusEnum.CHECKING, value: MARK_AS_TRANSLATABLE("enum.package.status.checking"), + backgroundColorHexa: ColorHexaEnum.orange, }, { key: StatusEnum.CHECKED, @@ -1407,6 +1408,19 @@ export namespace Enums { value: MARK_AS_TRANSLATABLE("enum.package.status.upgradingMetadata"), backgroundColorHexa: ColorHexaEnum.orange, }, + { + key: StatusEnum.COMPLIANCE_LEVEL_UPDATE_PENDING, + value: MARK_AS_TRANSLATABLE("enum.package.status.complianceLevelUpdatePending"), + }, + { + key: StatusEnum.UPDATING_COMPLIANCE_LEVEL, + value: MARK_AS_TRANSLATABLE("enum.package.status.updatingComplianceLevel"), + backgroundColorHexa: ColorHexaEnum.orange, + }, + { + key: StatusEnum.COMPLIANCE_LEVEL_UPDATED, + value: MARK_AS_TRANSLATABLE("enum.package.status.complianceLevelUpdated"), + }, ]; export const statusIsCompleted: (status: StatusEnum) => boolean = status => (status === StatusEnum.COMPLETED || status === StatusEnum.DISPOSED); @@ -1463,6 +1477,10 @@ export namespace Enums { key: JobTypeEnum.METADATA_MIGRATION, value: MARK_AS_TRANSLATABLE("preservation.job.jobTypeEnum.metadataMigration"), }, + { + key: JobTypeEnum.COMPLIANCE_LEVEL_UPDATE, + value: MARK_AS_TRANSLATABLE("preservation.job.jobTypeEnum.complianceLevelUpdate"), + }, { key: JobTypeEnum.PURGE_SUBMISSION_TEMP_FILES, value: MARK_AS_TRANSLATABLE("preservation.job.jobTypeEnum.purgeSubmissionTempFiles"), diff --git a/src/app/icons.ts b/src/app/icons.ts index 17669c8a3c13b9cf327cb1ba5a1bf03c4502aa3d..d3b9ee94f7fc1c6e1f0c9f1e1d247698e214903e 100644 --- a/src/app/icons.ts +++ b/src/app/icons.ts @@ -443,6 +443,11 @@ export const icons: IconInfos[] = [ lib: IconLibEnum.materialIcon, icon: "check", }, + { + name: IconNameEnum.compliance, + lib: IconLibEnum.materialIcon, + icon: "verified", + }, { name: IconNameEnum.init, lib: IconLibEnum.materialIcon, diff --git a/src/app/shared/enums/api-action-name.enum.ts b/src/app/shared/enums/api-action-name.enum.ts index 47908b6b1107ff9b8ceac20b22b5bb1eb23b9d1c..7bb2421e7c499960ed3bff717b2a3f7493e6294a 100644 --- a/src/app/shared/enums/api-action-name.enum.ts +++ b/src/app/shared/enums/api-action-name.enum.ts @@ -56,6 +56,7 @@ export enum ApiActionNameExtendEnum { APPROVE_DISPOSAL_BY_ORGUNIT = "approve-disposal-by-orgunit", CHECK_SUBMISSION_AGREEMENT = "check-submission-agreement", EXTEND_RETENTION = "extend-retention", + UPDATE_COMPLIANCE = "start-compliance-level-update", SELF = "self", MODULE = "module", diff --git a/src/app/shared/enums/icon-name.enum.ts b/src/app/shared/enums/icon-name.enum.ts index 4fe97b38e0ed3245f93cca81f67dc2cf77764864..dc5b07774524b49d89ffcfc4b278ce4e51ae7d8a 100644 --- a/src/app/shared/enums/icon-name.enum.ts +++ b/src/app/shared/enums/icon-name.enum.ts @@ -107,6 +107,7 @@ export class IconNameEnum extends IconNamePartialEnum { @PropertyName() static doubleChecksum: string; @PropertyName() static reindex: string; @PropertyName() static check: string; + @PropertyName() static compliance: string; @PropertyName() static init: string; @PropertyName() static run: string; @PropertyName() static resume: string; diff --git a/src/app/shared/enums/label-translate.enum.ts b/src/app/shared/enums/label-translate.enum.ts index 2eb4dded9faee21a76a7ee99ea2999a94a941995..90ad82c11a80374a17517fbe0e7733aeee939080 100644 --- a/src/app/shared/enums/label-translate.enum.ts +++ b/src/app/shared/enums/label-translate.enum.ts @@ -113,6 +113,7 @@ export class LabelTranslateEnum { static disposeOf: string = MARK_AS_TRANSLATABLE("general.button.disposeOf"); static extendTheRetention: string = MARK_AS_TRANSLATABLE("general.button.extendTheRetention"); static reindex: string = MARK_AS_TRANSLATABLE("general.button.reindex"); + static updateCompliance: string = MARK_AS_TRANSLATABLE("general.button.updateCompliance"); static simpleChecksums: string = MARK_AS_TRANSLATABLE("general.button.simpleChecksums"); static send: string = MARK_AS_TRANSLATABLE("general.button.send"); static downloadFolder: string = MARK_AS_TRANSLATABLE("general.button.downloadFolder"); diff --git a/src/app/shared/features/aip/components/routables/aip-detail-edit/shared-aip-detail-edit.routable.ts b/src/app/shared/features/aip/components/routables/aip-detail-edit/shared-aip-detail-edit.routable.ts index a98364c54117d52208f666791b3c92bd1d891187..14c1d6ca58d32f2a8ad326331bcc845ecfda95d2 100644 --- a/src/app/shared/features/aip/components/routables/aip-detail-edit/shared-aip-detail-edit.routable.ts +++ b/src/app/shared/features/aip/components/routables/aip-detail-edit/shared-aip-detail-edit.routable.ts @@ -218,6 +218,14 @@ export class SharedAipDetailEditRoutable extends AbstractDetailEditCommonRoutabl labelToTranslate: (current) => LabelTranslateEnum.check, order: 40, }, + { + color: "primary", + icon: IconNameEnum.compliance, + displayCondition: current => AipHelper.isComplianceUpdateAuthorized(current, this.mode), + callback: () => this._updateCompliance(), + labelToTranslate: (current) => LabelTranslateEnum.updateCompliance, + order: 40, + }, { color: "primary", icon: IconNameEnum.dispose, @@ -417,6 +425,10 @@ export class SharedAipDetailEditRoutable extends AbstractDetailEditCommonRoutabl this._store.dispatch(new SharedAipAction.Reindex(this._resId, ViewModeEnum.detail)); } + private _updateCompliance(): void { + this._store.dispatch(new SharedAipAction.UpdateCompliance(this._resId, ViewModeEnum.detail)); + } + private _check(): void { this._store.dispatch(new SharedAipAction.Check(this._resId, ViewModeEnum.detail)); } diff --git a/src/app/shared/features/aip/components/routables/aip-list/shared-aip-list.routable.ts b/src/app/shared/features/aip/components/routables/aip-list/shared-aip-list.routable.ts index cb31e35f9970c486abd94cd496a18e173936b364..4167a7c11d814574213f0c3698e41613c3a5c11f 100644 --- a/src/app/shared/features/aip/components/routables/aip-list/shared-aip-list.routable.ts +++ b/src/app/shared/features/aip/components/routables/aip-list/shared-aip-list.routable.ts @@ -178,6 +178,14 @@ export class SharedAipListRoutable extends AbstractListRoutable<Aip, SharedAipSt labelToTranslate: (current) => LabelTranslateEnum.check, order: 40, }, + { + color: "primary", + icon: IconNameEnum.compliance, + displayCondition: list => list?.filter(current => AipHelper.isComplianceUpdateAuthorized(current, this.mode)).length > 0, + callback: list => this._store.dispatch(new SharedAipAction.BulkUpdateCompliance(list?.filter(aip => AipHelper.isComplianceUpdateAuthorized(aip, this.mode)))), + labelToTranslate: (current) => LabelTranslateEnum.updateCompliance, + order: 40, + }, { color: "primary", icon: IconNameEnum.dispose, @@ -235,6 +243,13 @@ export class SharedAipListRoutable extends AbstractListRoutable<Aip, SharedAipSt placeholder: (current) => LabelTranslateEnum.check, isWrapped: true, }, + { + logo: IconNameEnum.compliance, + displayOnCondition: current => AipHelper.isComplianceUpdateAuthorized(current, this.mode), + callback: current => this._store.dispatch(new SharedAipAction.UpdateCompliance(current.resId, ViewModeEnum.list)), + placeholder: (current) => LabelTranslateEnum.updateCompliance, + isWrapped: true, + }, { logo: IconNameEnum.dispose, displayOnCondition: current => AipHelper.isDisposeAuthorized(current, this.mode), diff --git a/src/app/shared/features/aip/helpers/aip.helper.ts b/src/app/shared/features/aip/helpers/aip.helper.ts index 61590c59171a71816988eb3795c607ef2abc5ce9..17619bd34848ea4a8cbb6bbd802a8eb2a1e64249 100644 --- a/src/app/shared/features/aip/helpers/aip.helper.ts +++ b/src/app/shared/features/aip/helpers/aip.helper.ts @@ -151,6 +151,12 @@ export class AipHelper { || Enums.Package.statusIsDisposable(aip.info.status as Enums.Package.StatusEnum)); } + static isComplianceUpdateAuthorized(aip: Aip, mode: AipMode): boolean { + return mode === AipMode.AIP + && isNotNullNorUndefined(aip?.info) + && (Enums.Package.statusIsCompleted(aip.info.status as Enums.Package.StatusEnum)); + } + static isDisposeAuthorized(aip: Aip, mode: AipMode): boolean { return mode === AipMode.AIP && isNotNullNorUndefined(aip?.info) diff --git a/src/app/shared/features/aip/stores/shared-aip.action.ts b/src/app/shared/features/aip/stores/shared-aip.action.ts index 1f7153209d5c885d591a3dcbbb4ba023bbd00d81..511af1068d4a56e6b0137d845c9f55fcc2f51f2a 100644 --- a/src/app/shared/features/aip/stores/shared-aip.action.ts +++ b/src/app/shared/features/aip/stores/shared-aip.action.ts @@ -234,6 +234,22 @@ export namespace SharedAipAction { static readonly type: string = `[${state}] Reindex Fail`; } + export class UpdateCompliance extends BaseAction { + static readonly type: string = `[${state}] Update Compliance`; + + constructor(public id: string, public viewMode: ViewModeEnum | undefined) { + super(); + } + } + + export class UpdateComplianceSuccess extends BaseSubActionSuccess<UpdateCompliance> { + static readonly type: string = `[${state}] Update Compliance Success`; + } + + export class UpdateComplianceFail extends BaseSubActionFail<UpdateCompliance> { + static readonly type: string = `[${state}] Update Compliance Fail`; + } + export class Check extends BaseAction { static readonly type: string = `[${state}] Check`; @@ -418,6 +434,22 @@ export namespace SharedAipAction { static readonly type: string = `[${state}] Bulk Reindex Fail`; } + export class BulkUpdateCompliance extends BaseAction { + static readonly type: string = `[${state}] Bulk Update Compliance`; + + constructor(public listAip: Aip[]) { + super(); + } + } + + export class BulkUpdateComplianceSuccess extends BaseSubActionSuccess<BulkUpdateCompliance> { + static readonly type: string = `[${state}] Bulk Update Compliance Success`; + } + + export class BulkUpdateComplianceFail extends BaseSubActionFail<BulkUpdateCompliance> { + static readonly type: string = `[${state}] Bulk Update Compliance Fail`; + } + export class BulkCheck extends BaseAction { static readonly type: string = `[${state}] Bulk Check`; diff --git a/src/app/shared/features/aip/stores/shared-aip.state.ts b/src/app/shared/features/aip/stores/shared-aip.state.ts index e38757bf9781d3535ac14a2d2fc2d53b845b59f8..4358f094d75d0ac63c78932f7f0b703ff6708d17 100644 --- a/src/app/shared/features/aip/stores/shared-aip.state.ts +++ b/src/app/shared/features/aip/stores/shared-aip.state.ts @@ -235,6 +235,44 @@ export class SharedAipState extends ResourceState<SharedAipStateModel, Aip> { this._notificationService.showError(MARK_AS_TRANSLATABLE("notification.aip.action.reindex.fail")); } + @Action(SharedAipAction.UpdateCompliance) + updateCompliance(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.UpdateCompliance): Observable<Result> { + ctx.patchState({ + isLoadingCounter: ctx.getState().isLoadingCounter + 1, + }); + return this._apiService.post<Result>(`${this._urlResource}/${action.id}/${ApiActionNameEnum.UPDATE_COMPLIANCE}`) + .pipe( + tap(result => { + if (result?.status === ResultActionStatusEnum.EXECUTED) { + ctx.dispatch(new SharedAipAction.UpdateComplianceSuccess(action)); + } else { + ctx.dispatch(new SharedAipAction.UpdateComplianceFail(action)); + } + }), + catchError((error: SolidifyHttpErrorResponseModel) => { + ctx.dispatch(new SharedAipAction.UpdateComplianceFail(action)); + throw error; + }), + ); + } + + @Action(SharedAipAction.UpdateComplianceSuccess) + updateComplianceSuccess(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.UpdateComplianceSuccess): void { + ctx.patchState({ + isLoadingCounter: ctx.getState().isLoadingCounter - 1, + }); + this._notificationService.showInformation(MARK_AS_TRANSLATABLE("notification.aip.action.updateCompliance.success")); + this._refreshView(ctx, action.parentAction.id, action.parentAction.viewMode); + } + + @Action(SharedAipAction.UpdateComplianceFail) + updateComplianceFail(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.UpdateComplianceFail): void { + ctx.patchState({ + isLoadingCounter: ctx.getState().isLoadingCounter - 1, + }); + this._notificationService.showError(MARK_AS_TRANSLATABLE("notification.aip.action.updateCompliance.fail")); + } + @Action(SharedAipAction.DeepChecksum) deepChecksum(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.DeepChecksum): Observable<Result> { ctx.patchState({ @@ -757,6 +795,49 @@ export class SharedAipState extends ResourceState<SharedAipStateModel, Aip> { }); } + @Action(SharedAipAction.BulkUpdateCompliance) + bulkUpdateCompliance(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.BulkUpdateCompliance): Observable<boolean> { + ctx.patchState({ + isLoadingCounter: ctx.getState().isLoadingCounter + 1, + }); + + const actionSubActionCompletionsWrappers: ActionSubActionCompletionsWrapper[] = action.listAip + .map(aip => + ({ + action: new SharedAipAction.UpdateCompliance(aip.resId, undefined), + subActionCompletions: [ + this._actions$.pipe(ofSolidifyActionCompleted(SharedAipAction.UpdateComplianceSuccess)), + this._actions$.pipe(ofSolidifyActionCompleted(SharedAipAction.UpdateComplianceFail)), + ], + }), + ); + return StoreUtil.dispatchParallelActionAndWaitForSubActionsCompletion(ctx, actionSubActionCompletionsWrappers).pipe( + map(result => { + if (result.success) { + ctx.dispatch(new SharedAipAction.BulkUpdateComplianceSuccess(action)); + } else { + ctx.dispatch(new SharedAipAction.BulkUpdateComplianceFail(action)); + } + return result.success; + }), + ); + } + + @Action(SharedAipAction.BulkUpdateComplianceSuccess) + bulkUpdateComplianceSuccess(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.BulkUpdateComplianceSuccess): void { + ctx.patchState({ + isLoadingCounter: ctx.getState().isLoadingCounter - 1, + }); + this._refreshList(ctx); + } + + @Action(SharedAipAction.BulkUpdateComplianceFail) + bulkUpdateComplianceFail(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.BulkUpdateComplianceFail): void { + ctx.patchState({ + isLoadingCounter: ctx.getState().isLoadingCounter - 1, + }); + } + @Action(SharedAipAction.BulkCheck) bulkCheck(ctx: SolidifyStateContext<SharedAipStateModel>, action: SharedAipAction.BulkCheck): Observable<boolean> { ctx.patchState({ diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index f2482efbf661798114a593ebe869b618004e12fa..a8f8d596248c1c0f548f694a603a2ae65c92d7eb 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1077,6 +1077,8 @@ "cleaned": "enum.package.status.cleaned", "cleaning": "enum.package.status.cleaning", "completed": "enum.package.status.completed", + "complianceLevelUpdatePending": "enum.package.status.complianceLevelUpdatePending", + "complianceLevelUpdated": "enum.package.status.complianceLevelUpdated", "copyMissing": "enum.package.status.copyMissing", "disposable": "enum.package.status.disposable", "disposalApproved": "enum.package.status.disposalApproved", @@ -1102,6 +1104,7 @@ "resubmitting": "enum.package.status.resubmitting", "stored": "enum.package.status.stored", "tombstoneReplicationPending": "enum.package.status.tombstoneReplicationPending", + "updatingComplianceLevel": "enum.package.status.updatingComplianceLevel", "updatingRetention": "enum.package.status.updatingRetention", "upgradingMetadata": "enum.package.status.upgradingMetadata" } @@ -1252,6 +1255,7 @@ "submit": "Absenden", "switchToANewEditableFile": "general.button.switchToANewEditableFile", "synchronize": "Synchronisieren", + "updateCompliance": "general.button.updateCompliance", "uploadAReadmeFile": "general.button.uploadAReadmeFile", "uploadData": "Daten hochladen", "validate": "Validierung", @@ -1902,6 +1906,10 @@ "simpleChecksum": { "fail": "Prüfsumme kann nicht erstellt werden", "success": "Die Prüfsummen des Archives werden überprüft" + }, + "updateCompliance": { + "fail": "notification.aip.action.updateCompliance.fail", + "success": "notification.aip.action.updateCompliance.success" } } }, @@ -2181,6 +2189,7 @@ "archivePreloadSmall": "Archive Preloading [small size]", "checkComplianceLevel": "Überprüfen Sie die Konformitätsstufe", "cleanSubmission": "Bereinigung der Einreichung", + "complianceLevelUpdate": "preservation.job.jobTypeEnum.complianceLevelUpdate", "disposal": "Löschvorgang auslösen", "fixity": "Beständigkeit", "metadataMigration": "preservation.job.jobTypeEnum.metadataMigration", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 5fee568019ed991d3df29e2691cbc10c99c3c96f..3d8616f5d61ec3b61d93d9d481626f0895658319 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -1077,6 +1077,8 @@ "cleaned": "Cleaned", "cleaning": "Cleaning", "completed": "Completed", + "complianceLevelUpdatePending": "Compliance level update pending", + "complianceLevelUpdated": "Compliance level updated", "copyMissing": "Copy missing", "disposable": "Disposable", "disposalApproved": "Disposal approved by an administrator", @@ -1102,6 +1104,7 @@ "resubmitting": "Resubmitting", "stored": "Stored", "tombstoneReplicationPending": "Tombstone replication pending", + "updatingComplianceLevel": "Updating compliance levels", "updatingRetention": "Updating the retention", "upgradingMetadata": "Upgrading metadata" } @@ -1252,6 +1255,7 @@ "submit": "Submit", "switchToANewEditableFile": "Switch to a new editable file", "synchronize": "Synchronize", + "updateCompliance": "Update the compliance", "uploadAReadmeFile": "Upload a Readme file", "uploadData": "Upload data", "validate": "Validate", @@ -1902,6 +1906,10 @@ "simpleChecksum": { "fail": "Unable to perform a simple checkum", "success": "The archive's simple checksums will be verified" + }, + "updateCompliance": { + "fail": "Unable to start the archive compliance update", + "success": "The archive compliance update has been started" } } }, @@ -2179,8 +2187,9 @@ "archiveCheck": "Archive Check", "archivePreloadBig": "Archive Preloading [big size]", "archivePreloadSmall": "Archive Preloading [small size]", - "checkComplianceLevel": "Check compliance level", + "checkComplianceLevel": "Compliance level check", "cleanSubmission": "Clean Submission", + "complianceLevelUpdate": "Compliance level update", "disposal": "Trigger Disposal Processes", "fixity": "Fixity", "metadataMigration": "Metadata Migration", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index c6c24f7554d039034908fdc73d54c830a9b46180..07c688aa28cb9aef24324d95029cdd16122ceda2 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -1077,6 +1077,8 @@ "cleaned": "Nettoyé", "cleaning": "En cours de nettoyage", "completed": "Terminé", + "complianceLevelUpdatePending": "Mise à jour des niveaux de conformité en attente", + "complianceLevelUpdated": "Niveaux de conformité mis à jour", "copyMissing": "Copie manquante", "disposable": "Prêt à être détruit", "disposalApproved": "Sort final approuvé par l'administrateur", @@ -1102,6 +1104,7 @@ "resubmitting": "Resoumission", "stored": "Stocké", "tombstoneReplicationPending": "Réplication du record en attente", + "updatingComplianceLevel": "Mise à jour des niveaux de conformité", "updatingRetention": "Mise à jour de la duréee de conservation", "upgradingMetadata": "Mise à niveau de métadonnées" } @@ -1252,6 +1255,7 @@ "submit": "Soumettre", "switchToANewEditableFile": "Basculer sur un nouveau fichier éditable", "synchronize": "Synchroniser", + "updateCompliance": "Mettre à jour la conformité", "uploadAReadmeFile": "Envoyer un fichier readme", "uploadData": "Envoyer données", "validate": "Valider", @@ -1902,6 +1906,10 @@ "simpleChecksum": { "fail": "Impossible de faire un simple checksums", "success": "Les checksums simple de l'archive vont être vérifiés" + }, + "updateCompliance": { + "fail": "Impossible de démarrer la mise à jour des niveaux de conformité de l'archive", + "success": "La mise à jour des niveaux de conformité de l'archive va démarrer" } } }, @@ -2181,6 +2189,7 @@ "archivePreloadSmall": "Pré-chargement des archives [petite taille]", "checkComplianceLevel": "Vérification de la conformité", "cleanSubmission": "Nettoyage de la soumission", + "complianceLevelUpdate": "Mise à jour des niveaux de conformité", "disposal": "Déclenchement de l'application des sorts finaux", "fixity": "Fixité", "metadataMigration": "Migration des métadonnées", diff --git a/src/assets/openapi/dlcm-openapi-3.0.json b/src/assets/openapi/dlcm-openapi-3.0.json index dbf747ba4ec44020ef23f894255a7c2185e51f3d..2263fb368e1f52b6fa0a34beef7b560cbee5f0ed 100644 --- a/src/assets/openapi/dlcm-openapi-3.0.json +++ b/src/assets/openapi/dlcm-openapi-3.0.json @@ -3,12 +3,8 @@ "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": [ @@ -17,34 +13,24 @@ "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": { @@ -59,26 +45,15 @@ } } }, - "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 @@ -88,85 +63,50 @@ "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": { @@ -181,36 +121,23 @@ } } }, - "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 @@ -220,225 +147,139 @@ "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": { @@ -453,44 +294,29 @@ } } }, - "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 @@ -507,94 +333,59 @@ } } }, - "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" } + }, + { + "name": "lightVersion", + "in": "query", + "required": true, + "schema": { "type": "boolean" } } ], "responses": { @@ -609,26 +400,15 @@ } } }, - "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 @@ -637,78 +417,43 @@ "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": { @@ -723,39 +468,23 @@ } } }, - "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 @@ -775,80 +504,47 @@ } } }, - "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": { @@ -863,39 +559,23 @@ } } }, - "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 @@ -907,88 +587,53 @@ "*/*": { "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": { @@ -1003,39 +648,23 @@ } } }, - "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 @@ -1047,83 +676,51 @@ "*/*": { "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": { @@ -1138,36 +735,23 @@ } } }, - "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 @@ -1177,337 +761,196 @@ "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": { @@ -1522,39 +965,23 @@ } } }, - "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 @@ -1566,88 +993,53 @@ "*/*": { "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": { @@ -1662,39 +1054,23 @@ } } }, - "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 @@ -1714,186 +1090,127 @@ } } }, - "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" } } } } @@ -1904,52 +1221,34 @@ "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" } } } } @@ -1960,37 +1259,24 @@ "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", @@ -2078,24 +1364,17 @@ "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" } } } } @@ -2108,588 +1387,355 @@ "*/*": { "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" - } - } + "*/*": { "schema": { "$ref": "#/components/schemas/Result" } } } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/preingest/deposits/{id}/generate-anonymized-deposit-page": { "post": { - "tags": [ - "preingest/deposits" - ], + "tags": ["preingest/deposits"], "operationId": "preingest_deposits_by_id_generate-anonymized-deposit-page", "parameters": [ { "name": "id", "in": "path", "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": [] }] } }, "/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": { @@ -2704,44 +1750,29 @@ } } }, - "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 @@ -2758,38 +1789,25 @@ } } }, - "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": { @@ -2804,26 +1822,15 @@ } } }, - "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 @@ -2832,94 +1839,55 @@ "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": { @@ -2934,44 +1902,29 @@ } } }, - "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 @@ -2988,105 +1941,72 @@ } } }, - "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": { @@ -3101,39 +2021,27 @@ "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": { @@ -3148,26 +2056,15 @@ } } }, - "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 @@ -3177,93 +2074,56 @@ "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": { @@ -3278,44 +2138,29 @@ } } }, - "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 @@ -3332,38 +2177,25 @@ } } }, - "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": { @@ -3378,26 +2210,15 @@ } } }, - "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 @@ -3414,78 +2235,45 @@ } } }, - "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": { @@ -3500,36 +2288,23 @@ } } }, - "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 @@ -3539,179 +2314,110 @@ "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": { @@ -3726,39 +2432,23 @@ } } }, - "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 @@ -3778,87 +2468,51 @@ } } }, - "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" } } } } @@ -3869,289 +2523,180 @@ "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": { @@ -4166,44 +2711,29 @@ } } }, - "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 @@ -4220,38 +2750,25 @@ } } }, - "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": { @@ -4266,26 +2783,15 @@ } } }, - "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 @@ -4295,77 +2801,44 @@ "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": { @@ -4380,26 +2853,15 @@ } } }, - "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 @@ -4409,93 +2871,56 @@ "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": { @@ -4510,44 +2935,29 @@ } } }, - "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 @@ -4564,38 +2974,25 @@ } } }, - "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": { @@ -4610,26 +3007,15 @@ } } }, - "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 @@ -4639,77 +3025,44 @@ "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": { @@ -4724,28 +3077,17 @@ } } }, - "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": { @@ -4753,9 +3095,7 @@ "application/json": { "schema": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCondition" - } + "items": { "$ref": "#/components/schemas/SearchCondition" } } }, "application/x-www-form-urlencoded": { @@ -4778,30 +3118,19 @@ } } }, - "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" } } } }, @@ -4811,47 +3140,29 @@ "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": { @@ -4866,26 +3177,15 @@ } } }, - "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 @@ -4895,77 +3195,44 @@ "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": { @@ -4980,28 +3247,17 @@ } } }, - "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": { @@ -5009,9 +3265,7 @@ "application/json": { "schema": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCondition" - } + "items": { "$ref": "#/components/schemas/SearchCondition" } } }, "application/x-www-form-urlencoded": { @@ -5034,30 +3288,19 @@ } } }, - "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" } } } }, @@ -5067,47 +3310,29 @@ "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": { @@ -5122,26 +3347,15 @@ } } }, - "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 @@ -5151,77 +3365,44 @@ "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": { @@ -5236,28 +3417,17 @@ } } }, - "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": { @@ -5265,9 +3435,7 @@ "application/json": { "schema": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCondition" - } + "items": { "$ref": "#/components/schemas/SearchCondition" } } }, "application/x-www-form-urlencoded": { @@ -5290,30 +3458,19 @@ } } }, - "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" } } } }, @@ -5323,47 +3480,29 @@ "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": { @@ -5378,26 +3517,15 @@ } } }, - "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 @@ -5407,92 +3535,54 @@ "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" } } } } @@ -5503,61 +3593,42 @@ "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": { @@ -5572,44 +3643,29 @@ } } }, - "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 @@ -5626,38 +3682,25 @@ } } }, - "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": { @@ -5672,26 +3715,15 @@ } } }, - "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 @@ -5700,78 +3732,43 @@ "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": { @@ -5786,26 +3783,15 @@ } } }, - "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 @@ -5815,85 +3801,50 @@ "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": { @@ -5908,36 +3859,23 @@ } } }, - "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 @@ -5947,187 +3885,116 @@ "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" - } - } - } - } - }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] + "content": { + "*/*": { "schema": { "$ref": "#/components/schemas/Result" } } + } } - ] + }, + "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": { @@ -6142,39 +4009,23 @@ } } }, - "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 @@ -6194,87 +4045,51 @@ } } }, - "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" } } } } @@ -6285,607 +4100,400 @@ "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": [] - }, + "security": [{ "tokenAuth": [] }, { "auth": [] }] + } + }, + "/archival-storage/aip/{id}/start-compliance-level-update": { + "post": { + "tags": ["archival-storage/aip"], + "operationId": "archival-storage_aip_by_id_start-compliance-level-update_updateComplianceLevel", + "parameters": [ { - "auth": [] + "name": "id", + "in": "path", + "required": true, + "schema": { "type": "string" } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "*/*": { "schema": { "$ref": "#/components/schemas/Result" } } + } } - ] + }, + "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": { @@ -6900,44 +4508,29 @@ } } }, - "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 @@ -6954,38 +4547,25 @@ } } }, - "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": { @@ -6993,33 +4573,20 @@ "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 @@ -7028,122 +4595,70 @@ "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": { @@ -7151,51 +4666,34 @@ "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 @@ -7205,142 +4703,80 @@ "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": { @@ -7355,26 +4791,15 @@ } } }, - "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 @@ -7384,93 +4809,56 @@ "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": { @@ -7485,44 +4873,29 @@ } } }, - "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 @@ -7539,38 +4912,25 @@ } } }, - "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": { @@ -7585,26 +4945,15 @@ } } }, - "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 @@ -7614,85 +4963,50 @@ "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": { @@ -7707,39 +5021,23 @@ } } }, - "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 @@ -7759,87 +5057,52 @@ } } }, - "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": { @@ -7854,36 +5117,23 @@ } } }, - "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": { @@ -7908,81 +5158,49 @@ } } }, - "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": { @@ -8007,53 +5225,35 @@ } } }, - "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" } } } } @@ -8064,114 +5264,73 @@ "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" } } } } @@ -8182,61 +5341,42 @@ "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": { @@ -8251,44 +5391,29 @@ } } }, - "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 @@ -8305,46 +5430,31 @@ } } }, - "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": { @@ -8359,26 +5469,15 @@ } } }, - "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 @@ -8388,101 +5487,62 @@ "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": { @@ -8497,44 +5557,29 @@ } } }, - "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 @@ -8551,77 +5596,48 @@ } } }, - "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": { @@ -8636,26 +5652,15 @@ } } }, - "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 @@ -8665,124 +5670,72 @@ "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": { @@ -8797,44 +5750,29 @@ } } }, - "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 @@ -8851,80 +5789,41 @@ } } }, - "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": { @@ -8932,33 +5831,20 @@ "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 @@ -8967,94 +5853,55 @@ "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": { @@ -9062,51 +5909,34 @@ "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 @@ -9116,45 +5946,30 @@ "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": { @@ -9169,26 +5984,15 @@ } } }, - "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 @@ -9197,62 +6001,41 @@ "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": { @@ -9267,44 +6050,29 @@ } } }, - "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 @@ -9321,38 +6089,25 @@ } } }, - "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": { @@ -9367,26 +6122,15 @@ } } }, - "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 @@ -9396,93 +6140,56 @@ "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": { @@ -9497,44 +6204,29 @@ } } }, - "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 @@ -9551,38 +6243,25 @@ } } }, - "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": { @@ -9597,26 +6276,15 @@ } } }, - "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 @@ -9625,86 +6293,49 @@ "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": { @@ -9719,39 +6350,23 @@ } } }, - "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 @@ -9771,79 +6386,46 @@ } } }, - "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": { @@ -9858,47 +6440,29 @@ } } }, - "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 @@ -9918,85 +6482,50 @@ } } }, - "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": { @@ -10024,46 +6553,31 @@ } } }, - "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": { @@ -10078,44 +6592,29 @@ } } }, - "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", @@ -10138,44 +6637,29 @@ } } }, - "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": { @@ -10183,9 +6667,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -10203,49 +6685,31 @@ } } }, - "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 @@ -10333,46 +6797,31 @@ } } }, - "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": { @@ -10387,39 +6836,23 @@ } } }, - "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 @@ -10431,142 +6864,88 @@ "*/*": { "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": { @@ -10581,39 +6960,23 @@ } } }, - "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 @@ -10633,79 +6996,46 @@ } } }, - "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": { @@ -10720,47 +7050,29 @@ } } }, - "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 @@ -10780,93 +7092,56 @@ } } }, - "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 @@ -10886,46 +7161,31 @@ } } }, - "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": { @@ -10940,52 +7200,35 @@ } } }, - "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": { @@ -11000,44 +7243,29 @@ } } }, - "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": { @@ -11045,9 +7273,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -11065,49 +7291,31 @@ } } }, - "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 @@ -11195,53 +7403,35 @@ } } }, - "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" } } } } @@ -11251,62 +7441,41 @@ "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": { @@ -11321,44 +7490,29 @@ } } }, - "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 @@ -11375,38 +7529,25 @@ } } }, - "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": { @@ -11421,26 +7562,15 @@ } } }, - "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 @@ -11450,85 +7580,50 @@ "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": { @@ -11543,39 +7638,23 @@ } } }, - "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 @@ -11595,79 +7674,46 @@ } } }, - "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": { @@ -11682,36 +7728,23 @@ } } }, - "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": { @@ -11736,73 +7769,43 @@ } } }, - "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": { @@ -11827,46 +7830,31 @@ } } }, - "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": { @@ -11881,39 +7869,23 @@ } } }, - "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 @@ -11925,96 +7897,59 @@ "*/*": { "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": { @@ -12029,39 +7964,23 @@ } } }, - "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 @@ -12081,79 +8000,46 @@ } } }, - "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": { @@ -12168,47 +8054,29 @@ } } }, - "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 @@ -12228,85 +8096,50 @@ } } }, - "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": { @@ -12334,46 +8167,31 @@ } } }, - "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": { @@ -12388,44 +8206,29 @@ } } }, - "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", @@ -12448,44 +8251,29 @@ } } }, - "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": { @@ -12493,9 +8281,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -12513,46 +8299,31 @@ } } }, - "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": { @@ -12567,39 +8338,23 @@ } } }, - "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 @@ -12619,79 +8374,46 @@ } } }, - "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": { @@ -12706,36 +8428,23 @@ } } }, - "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": { @@ -12760,73 +8469,43 @@ } } }, - "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": { @@ -12851,46 +8530,31 @@ } } }, - "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": { @@ -12905,39 +8569,23 @@ } } }, - "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 @@ -12957,79 +8605,46 @@ } } }, - "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": { @@ -13044,47 +8659,29 @@ } } }, - "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 @@ -13104,85 +8701,50 @@ } } }, - "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": { @@ -13210,46 +8772,31 @@ } } }, - "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": { @@ -13264,44 +8811,29 @@ } } }, - "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", @@ -13324,44 +8856,29 @@ } } }, - "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": { @@ -13369,9 +8886,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -13389,49 +8904,31 @@ } } }, - "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 @@ -13519,30 +9016,19 @@ } } }, - "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": { @@ -13564,34 +9050,26 @@ }, "/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": { @@ -13606,39 +9084,23 @@ } } }, - "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 @@ -13650,96 +9112,59 @@ "*/*": { "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": { @@ -13754,39 +9179,23 @@ } } }, - "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 @@ -13798,96 +9207,59 @@ "*/*": { "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": { @@ -13902,39 +9274,23 @@ } } }, - "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 @@ -13954,87 +9310,52 @@ } } }, - "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": { @@ -14049,36 +9370,23 @@ } } }, - "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": { @@ -14103,81 +9411,49 @@ } } }, - "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": { @@ -14202,46 +9478,31 @@ } } }, - "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": { @@ -14256,36 +9517,23 @@ } } }, - "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 @@ -14302,95 +9550,57 @@ } } }, - "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" } } } } @@ -14401,100 +9611,64 @@ "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": { @@ -14509,44 +9683,29 @@ } } }, - "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 @@ -14563,21 +9722,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/admin/orcid-synchronizations": { "get": { - "tags": [ - "admin/orcid-synchronizations" - ], + "tags": ["admin/orcid-synchronizations"], "operationId": "admin_orcid-synchronizations_list", "parameters": [ { @@ -14592,9 +9742,7 @@ "name": "pageable", "in": "query", "required": true, - "schema": { - "$ref": "#/components/schemas/Pageable" - } + "schema": { "$ref": "#/components/schemas/Pageable" } } ], "responses": { @@ -14609,19 +9757,10 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] }, "post": { - "tags": [ - "admin/orcid-synchronizations" - ], + "tags": ["admin/orcid-synchronizations"], "operationId": "admin_orcid-synchronizations_create", "requestBody": { "content": { @@ -14645,115 +9784,58 @@ } } }, - "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": [ { @@ -14768,25 +9850,19 @@ "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": { @@ -14801,36 +9877,23 @@ } } }, - "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": { @@ -14855,38 +9918,25 @@ } } }, - "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": { @@ -14901,26 +9951,15 @@ } } }, - "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 @@ -14930,92 +9969,54 @@ "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" } } } } @@ -15026,37 +10027,24 @@ "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": { @@ -15064,45 +10052,30 @@ "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": { @@ -15110,37 +10083,24 @@ "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": { @@ -15148,37 +10108,24 @@ "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": { @@ -15186,37 +10133,24 @@ "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": { @@ -15224,129 +10158,74 @@ "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": { @@ -15361,44 +10240,29 @@ } } }, - "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 @@ -15415,21 +10279,12 @@ } } }, - "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": { @@ -15448,46 +10303,31 @@ "*/*": { "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": { @@ -15502,26 +10342,15 @@ } } }, - "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 @@ -15531,84 +10360,48 @@ "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" } } } } @@ -15617,63 +10410,40 @@ "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": { @@ -15688,44 +10458,29 @@ } } }, - "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 @@ -15742,74 +10497,46 @@ } } }, - "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": { @@ -15824,39 +10551,23 @@ } } }, - "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 @@ -15868,88 +10579,53 @@ "*/*": { "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": { @@ -15964,26 +10640,15 @@ } } }, - "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 @@ -15992,93 +10657,53 @@ "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" } } } } @@ -16088,62 +10713,41 @@ "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": { @@ -16158,44 +10762,29 @@ } } }, - "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 @@ -16212,21 +10801,12 @@ } } }, - "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": { @@ -16235,9 +10815,7 @@ "type": "array", "items": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } } @@ -16247,44 +10825,24 @@ "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" } } } } @@ -16293,47 +10851,28 @@ "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": { @@ -16348,26 +10887,15 @@ } } }, - "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 @@ -16376,94 +10904,55 @@ "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": { @@ -16478,44 +10967,29 @@ } } }, - "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 @@ -16532,38 +11006,25 @@ } } }, - "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": { @@ -16578,26 +11039,15 @@ } } }, - "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 @@ -16607,85 +11057,50 @@ "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": { @@ -16700,39 +11115,23 @@ } } }, - "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 @@ -16752,79 +11151,46 @@ } } }, - "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": { @@ -16839,47 +11205,29 @@ } } }, - "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 @@ -16899,93 +11247,56 @@ } } }, - "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 @@ -17005,46 +11316,31 @@ } } }, - "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": { @@ -17059,52 +11355,35 @@ } } }, - "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": { @@ -17119,44 +11398,29 @@ } } }, - "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": { @@ -17164,9 +11428,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -17184,49 +11446,31 @@ } } }, - "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 @@ -17314,46 +11558,31 @@ } } }, - "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": { @@ -17368,39 +11597,23 @@ } } }, - "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 @@ -17412,96 +11625,59 @@ "*/*": { "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": { @@ -17516,39 +11692,23 @@ } } }, - "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 @@ -17560,103 +11720,63 @@ "*/*": { "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" } } } } @@ -17667,61 +11787,42 @@ "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": { @@ -17736,44 +11837,29 @@ } } }, - "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 @@ -17790,38 +11876,25 @@ } } }, - "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": { @@ -17836,26 +11909,15 @@ } } }, - "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 @@ -17865,93 +11927,56 @@ "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": { @@ -17966,44 +11991,29 @@ } } }, - "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 @@ -18020,38 +12030,25 @@ } } }, - "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": { @@ -18066,26 +12063,15 @@ } } }, - "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 @@ -18095,85 +12081,50 @@ "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": { @@ -18188,39 +12139,23 @@ } } }, - "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 @@ -18232,103 +12167,63 @@ "*/*": { "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" } } } } @@ -18339,61 +12234,42 @@ "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": { @@ -18408,44 +12284,29 @@ } } }, - "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 @@ -18462,38 +12323,25 @@ } } }, - "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": { @@ -18508,26 +12356,15 @@ } } }, - "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 @@ -18537,93 +12374,56 @@ "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": { @@ -18638,44 +12438,29 @@ } } }, - "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 @@ -18692,38 +12477,25 @@ } } }, - "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": { @@ -18738,26 +12510,15 @@ } } }, - "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 @@ -18767,93 +12528,56 @@ "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": { @@ -18868,44 +12592,29 @@ } } }, - "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 @@ -18922,38 +12631,25 @@ } } }, - "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": { @@ -18968,26 +12664,15 @@ } } }, - "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 @@ -18997,137 +12682,88 @@ "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": { @@ -19142,44 +12778,29 @@ } } }, - "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 @@ -19196,38 +12817,25 @@ } } }, - "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": { @@ -19242,26 +12850,15 @@ } } }, - "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 @@ -19271,93 +12868,56 @@ "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": { @@ -19372,44 +12932,29 @@ } } }, - "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 @@ -19426,38 +12971,25 @@ } } }, - "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": { @@ -19472,26 +13004,15 @@ } } }, - "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 @@ -19500,109 +13021,65 @@ "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" } } } } @@ -19612,62 +13089,41 @@ "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": { @@ -19682,44 +13138,29 @@ } } }, - "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 @@ -19736,76 +13177,48 @@ } } }, - "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": { @@ -19820,19 +13233,10 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] }, "post": { - "tags": [ - "admin/application-roles" - ], + "tags": ["admin/application-roles"], "operationId": "admin_application-roles_create", "requestBody": { "content": { @@ -19856,86 +13260,51 @@ } } }, - "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": { @@ -19950,36 +13319,23 @@ } } }, - "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": { @@ -20004,82 +13360,35 @@ } } }, - "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" - } - } - ], - "responses": { - "200": { - "description": "OK" - } - }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] + "schema": { "type": "string" } } - ] - } - }, - "/access/purge-temporary-folder": { - "post": { - "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": { @@ -20094,47 +13403,28 @@ "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": { @@ -20149,28 +13439,17 @@ } } }, - "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": { @@ -20178,9 +13457,7 @@ "application/json": { "schema": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCondition" - } + "items": { "$ref": "#/components/schemas/SearchCondition" } } }, "application/x-www-form-urlencoded": { @@ -20203,38 +13480,25 @@ } } }, - "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": { @@ -20242,33 +13506,20 @@ "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 @@ -20277,70 +13528,37 @@ "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", @@ -20354,9 +13572,7 @@ "name": "pageable", "in": "query", "required": true, - "schema": { - "$ref": "#/components/schemas/Pageable" - } + "schema": { "$ref": "#/components/schemas/Pageable" } } ], "responses": { @@ -20371,39 +13587,23 @@ } } }, - "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 @@ -20423,88 +13623,53 @@ } } }, - "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": { @@ -20519,39 +13684,23 @@ } } }, - "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 @@ -20571,248 +13720,151 @@ } } }, - "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": { @@ -20820,51 +13872,34 @@ "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 @@ -20874,45 +13909,30 @@ "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": { @@ -20927,44 +13947,29 @@ } } }, - "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": { @@ -20972,72 +13977,42 @@ "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 @@ -21047,37 +14022,24 @@ "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": { @@ -21092,47 +14054,28 @@ "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": { @@ -21147,28 +14090,17 @@ } } }, - "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": { @@ -21176,9 +14108,7 @@ "application/json": { "schema": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCondition" - } + "items": { "$ref": "#/components/schemas/SearchCondition" } } }, "application/x-www-form-urlencoded": { @@ -21201,21 +14131,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/access/dip": { "get": { - "tags": [ - "access/dip" - ], + "tags": ["access/dip"], "operationId": "access_dip_list", "parameters": [ { @@ -21230,9 +14151,7 @@ "name": "pageable", "in": "query", "required": true, - "schema": { - "$ref": "#/components/schemas/Pageable" - } + "schema": { "$ref": "#/components/schemas/Pageable" } } ], "responses": { @@ -21247,19 +14166,10 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] }, "post": { - "tags": [ - "access/dip" - ], + "tags": ["access/dip"], "operationId": "access_dip_create", "requestBody": { "content": { @@ -21283,78 +14193,45 @@ } } }, - "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": { @@ -21369,36 +14246,23 @@ } } }, - "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 @@ -21408,141 +14272,87 @@ "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": { @@ -21557,39 +14367,23 @@ } } }, - "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 @@ -21609,139 +14403,80 @@ } } }, - "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": [ { @@ -21756,25 +14491,19 @@ "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": { @@ -21789,36 +14518,23 @@ } } }, - "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": { @@ -21843,30 +14559,19 @@ } } }, - "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": { @@ -21881,47 +14586,28 @@ "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": { @@ -21936,28 +14622,17 @@ } } }, - "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": { @@ -21965,9 +14640,7 @@ "application/json": { "schema": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCondition" - } + "items": { "$ref": "#/components/schemas/SearchCondition" } } }, "application/x-www-form-urlencoded": { @@ -21990,38 +14663,25 @@ } } }, - "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": { @@ -22036,26 +14696,15 @@ } } }, - "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 @@ -22065,85 +14714,50 @@ "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": { @@ -22158,36 +14772,23 @@ } } }, - "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 @@ -22197,187 +14798,116 @@ "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": { @@ -22392,39 +14922,23 @@ } } }, - "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 @@ -22444,172 +14958,105 @@ } } }, - "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": { @@ -22624,44 +15071,29 @@ } } }, - "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 @@ -22678,38 +15110,25 @@ } } }, - "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": { @@ -22717,80 +15136,48 @@ "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": { @@ -22798,9 +15185,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -22811,37 +15196,24 @@ "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": { @@ -22849,64 +15221,36 @@ "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": { @@ -22914,9 +15258,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -22927,45 +15269,30 @@ "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": { @@ -22973,88 +15300,54 @@ "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 @@ -23064,45 +15357,30 @@ "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": { @@ -23110,88 +15388,54 @@ "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 @@ -23201,134 +15445,83 @@ "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 @@ -23337,46 +15530,29 @@ "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": { @@ -23384,80 +15560,48 @@ "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": { @@ -23465,9 +15609,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -23478,134 +15620,83 @@ "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 @@ -23614,46 +15705,29 @@ "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": { @@ -23661,88 +15735,54 @@ "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 @@ -23752,102 +15792,59 @@ "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": { @@ -23855,9 +15852,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -23867,103 +15862,58 @@ "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": { @@ -23971,9 +15921,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -23983,38 +15931,23 @@ "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": { @@ -24022,64 +15955,36 @@ "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": { @@ -24087,9 +15992,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -24100,45 +16003,30 @@ "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": { @@ -24146,80 +16034,48 @@ "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": { @@ -24227,9 +16083,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -24240,45 +16094,30 @@ "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": { @@ -24286,88 +16125,54 @@ "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 @@ -24377,37 +16182,24 @@ "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": { @@ -24422,57 +16214,31 @@ } } }, - "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": { @@ -24480,9 +16246,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -24500,30 +16264,19 @@ } } }, - "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": { @@ -24531,72 +16284,42 @@ "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 @@ -24606,37 +16329,24 @@ "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": { @@ -24644,64 +16354,36 @@ "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": { @@ -24709,9 +16391,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -24722,37 +16402,24 @@ "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": { @@ -24760,72 +16427,42 @@ "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 @@ -24835,37 +16472,24 @@ "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": { @@ -24873,72 +16497,42 @@ "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 @@ -24948,37 +16542,24 @@ "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": { @@ -24986,72 +16567,42 @@ "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 @@ -25061,37 +16612,24 @@ "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", @@ -25099,11 +16637,7 @@ "required": true, "schema": { "type": "string", - "enum": [ - "ARCHIVE_THUMBNAIL", - "ARCHIVE_README", - "ARCHIVE_DUA" - ] + "enum": ["ARCHIVE_THUMBNAIL", "ARCHIVE_README", "ARCHIVE_DUA"] } } ], @@ -25112,64 +16646,36 @@ "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": { @@ -25177,9 +16683,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -25190,110 +16694,65 @@ "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 @@ -25302,46 +16761,29 @@ "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": { @@ -25349,80 +16791,48 @@ "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": { @@ -25430,9 +16840,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -25443,45 +16851,30 @@ "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": { @@ -25489,88 +16882,54 @@ "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 @@ -25580,37 +16939,24 @@ "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": { @@ -25618,64 +16964,36 @@ "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": { @@ -25683,9 +17001,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -25696,102 +17012,59 @@ "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": { @@ -25799,9 +17072,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -25811,38 +17082,23 @@ "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": { @@ -25850,64 +17106,36 @@ "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": { @@ -25915,9 +17143,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -25928,37 +17154,24 @@ "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": { @@ -25966,64 +17179,36 @@ "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": { @@ -26031,9 +17216,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -26044,37 +17227,24 @@ "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": { @@ -26082,64 +17252,36 @@ "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": { @@ -26147,9 +17289,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -26160,37 +17300,24 @@ "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": { @@ -26198,64 +17325,36 @@ "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": { @@ -26263,9 +17362,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -26276,102 +17373,59 @@ "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": { @@ -26379,9 +17433,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -26391,38 +17443,23 @@ "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": { @@ -26430,64 +17467,36 @@ "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": { @@ -26495,9 +17504,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -26508,45 +17515,30 @@ "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": { @@ -26554,88 +17546,54 @@ "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 @@ -26645,37 +17603,24 @@ "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", @@ -26699,65 +17644,35 @@ "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": { @@ -26765,9 +17680,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -26777,46 +17690,29 @@ "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": { @@ -26824,88 +17720,54 @@ "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" - } + "application/json": { + "schema": { "$ref": "#/components/schemas/SubjectArea" } } }, "required": true @@ -26915,45 +17777,30 @@ "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": { @@ -26961,88 +17808,54 @@ "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 @@ -27052,45 +17865,30 @@ "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": { @@ -27098,88 +17896,54 @@ "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 @@ -27189,45 +17953,30 @@ "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": { @@ -27242,73 +17991,43 @@ } } }, - "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": { @@ -27316,9 +18035,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -27336,30 +18053,19 @@ } } }, - "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": { @@ -27367,64 +18073,36 @@ "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": { @@ -27432,9 +18110,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -27445,37 +18121,24 @@ "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": { @@ -27490,57 +18153,31 @@ } } }, - "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": { @@ -27548,9 +18185,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -27568,30 +18203,19 @@ } } }, - "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": { @@ -27599,64 +18223,36 @@ "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": { @@ -27664,9 +18260,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -27677,37 +18271,24 @@ "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": { @@ -27715,64 +18296,36 @@ "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": { @@ -27780,9 +18333,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -27793,45 +18344,30 @@ "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": { @@ -27839,88 +18375,54 @@ "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 @@ -27930,37 +18432,24 @@ "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", @@ -27984,65 +18473,35 @@ "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": { @@ -28050,9 +18509,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -28062,103 +18519,58 @@ "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": { @@ -28166,9 +18578,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -28178,46 +18588,29 @@ "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": { @@ -28225,88 +18618,54 @@ "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 @@ -28316,134 +18675,83 @@ "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 @@ -28452,38 +18760,23 @@ "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", @@ -28508,64 +18801,36 @@ "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": { @@ -28573,9 +18838,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -28586,37 +18849,24 @@ "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": { @@ -28624,64 +18874,36 @@ "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": { @@ -28689,9 +18911,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -28702,45 +18922,30 @@ "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": { @@ -28748,88 +18953,54 @@ "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 @@ -28839,37 +19010,24 @@ "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", @@ -28894,64 +19052,36 @@ "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": { @@ -28959,9 +19089,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -28972,37 +19100,24 @@ "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": { @@ -29010,64 +19125,36 @@ "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": { @@ -29075,9 +19162,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -29088,37 +19173,24 @@ "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": { @@ -29126,64 +19198,36 @@ "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": { @@ -29191,9 +19235,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -29204,37 +19246,24 @@ "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": { @@ -29242,64 +19271,36 @@ "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": { @@ -29307,9 +19308,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -29320,102 +19319,59 @@ "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": { @@ -29423,9 +19379,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -29435,38 +19389,23 @@ "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": { @@ -29481,57 +19420,31 @@ } } }, - "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": { @@ -29539,9 +19452,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -29559,38 +19470,25 @@ } } }, - "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": { @@ -29605,73 +19503,43 @@ } } }, - "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": { @@ -29696,38 +19564,25 @@ } } }, - "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": { @@ -29735,88 +19590,54 @@ "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 @@ -29826,102 +19647,59 @@ "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" - } - } - ], - "responses": { - "200": { - "description": "OK" - } - }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] + "name": "id", + "in": "path", + "required": true, + "schema": { "type": "string" } } - ] + ], + "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": { @@ -29929,9 +19707,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -29941,46 +19717,29 @@ "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": { @@ -29988,80 +19747,48 @@ "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": { @@ -30069,9 +19796,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -30082,45 +19807,30 @@ "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": { @@ -30128,88 +19838,54 @@ "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 @@ -30219,37 +19895,24 @@ "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": { @@ -30264,57 +19927,31 @@ } } }, - "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": { @@ -30322,9 +19959,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -30342,38 +19977,25 @@ } } }, - "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": { @@ -30381,80 +20003,48 @@ "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": { @@ -30462,9 +20052,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -30475,45 +20063,30 @@ "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": { @@ -30521,88 +20094,54 @@ "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 @@ -30612,37 +20151,24 @@ "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": { @@ -30650,64 +20176,36 @@ "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": { @@ -30715,9 +20213,7 @@ "application/json": { "schema": { "type": "object", - "additionalProperties": { - "type": "object" - } + "additionalProperties": { "type": "object" } } } }, @@ -30728,38 +20224,23 @@ "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" } } } } } @@ -30767,19 +20248,13 @@ }, "/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" } } } } } @@ -30787,29 +20262,21 @@ }, "/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" } } } } } @@ -30817,19 +20284,13 @@ }, "/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" } } } } } @@ -30837,34 +20298,26 @@ }, "/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": { @@ -30879,46 +20332,31 @@ } } }, - "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": { @@ -30926,61 +20364,42 @@ "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": { @@ -30995,46 +20414,31 @@ } } }, - "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": { @@ -31049,77 +20453,48 @@ } } }, - "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": { @@ -31144,21 +20519,12 @@ } } }, - "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": { @@ -31176,6 +20542,7 @@ "ARCHIVE_PRELOAD_SMALL", "CHECK_COMPLIANCE_LEVEL", "CLEAN_SUBMISSION", + "COMPLIANCE_LEVEL_UPDATE", "DISPOSAL", "FIXITY", "METADATA_MIGRATION", @@ -31194,21 +20561,12 @@ } } }, - "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": { @@ -31219,72 +20577,40 @@ "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" } } } } } @@ -31292,9 +20618,7 @@ }, "/preservation-planning/aip": { "get": { - "tags": [ - "preservation-planning/aip" - ], + "tags": ["preservation-planning/aip"], "operationId": "preservation-planning_aip_list", "parameters": [ { @@ -31318,9 +20642,7 @@ "name": "pageable", "in": "query", "required": true, - "schema": { - "$ref": "#/components/schemas/Pageable" - } + "schema": { "$ref": "#/components/schemas/Pageable" } } ], "responses": { @@ -31335,31 +20657,18 @@ } } }, - "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" } } } } } @@ -31367,34 +20676,26 @@ }, "/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": { @@ -31409,85 +20710,54 @@ } } }, - "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": { @@ -31495,69 +20765,48 @@ "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": { @@ -31572,30 +20821,19 @@ } } }, - "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": { @@ -31635,30 +20873,19 @@ } } }, - "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": { @@ -31666,162 +20893,94 @@ "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": { @@ -31836,77 +20995,48 @@ } } }, - "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": { @@ -31914,76 +21044,47 @@ "description": "OK", "content": { "*/*": { - "schema": { - "$ref": "#/components/schemas/DownloadToken" - } + "schema": { "$ref": "#/components/schemas/DownloadToken" } } } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/preingest/deposits/{id}/download-anonymized-deposit": { "get": { - "tags": [ - "preingest/deposits" - ], + "tags": ["preingest/deposits"], "operationId": "preingest_deposits_by_id_download-anonymized-deposit", "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": [] }] } }, "/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": { @@ -31998,30 +21099,19 @@ } } }, - "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": { @@ -32036,21 +21126,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/preingest/deposits/list-status": { "get": { - "tags": [ - "preingest/deposits" - ], + "tags": ["preingest/deposits"], "operationId": "preingest_deposits_list-status", "responses": { "200": { @@ -32088,117 +21169,66 @@ } } }, - "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": { @@ -32249,21 +21279,12 @@ } } }, - "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": { @@ -32313,21 +21334,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/preingest/deposits/list-accesses": { "get": { - "tags": [ - "preingest/deposits" - ], + "tags": ["preingest/deposits"], "operationId": "preingest_deposits_list-accesses", "responses": { "200": { @@ -32339,49 +21351,32 @@ "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": { @@ -32396,46 +21391,31 @@ } } }, - "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": { @@ -32450,76 +21430,48 @@ } } }, - "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": { @@ -32527,38 +21479,23 @@ "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" } } } } } @@ -32566,19 +21503,13 @@ }, "/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" } } } } } @@ -32586,69 +21517,45 @@ }, "/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" } } } } } @@ -32656,34 +21563,26 @@ }, "/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": { @@ -32698,85 +21597,54 @@ } } }, - "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": { @@ -32784,37 +21652,24 @@ "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": { @@ -32854,38 +21709,25 @@ } } }, - "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": { @@ -32900,69 +21742,42 @@ } } }, - "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": { @@ -32970,105 +21785,61 @@ "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": { @@ -33083,30 +21854,19 @@ } } }, - "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": { @@ -33121,21 +21881,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/ingest/sip/list-status": { "get": { - "tags": [ - "ingest/sip" - ], + "tags": ["ingest/sip"], "operationId": "ingest_sip_list-status", "responses": { "200": { @@ -33146,7 +21897,7 @@ "type": "array", "items": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -33174,6 +21925,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -33188,61 +21942,36 @@ } } }, - "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": { @@ -33293,21 +22022,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/ingest/sip/list-data-categories": { "get": { - "tags": [ - "ingest/sip" - ], + "tags": ["ingest/sip"], "operationId": "ingest_sip_list-data-categories", "responses": { "200": { @@ -33357,31 +22077,18 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/index": { "get": { - "tags": [ - "index" - ], + "tags": ["index"], "operationId": "index_home", "responses": { "200": { "description": "OK", "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/Module" - } - } + "*/*": { "schema": { "$ref": "#/components/schemas/Module" } } } } } @@ -33389,26 +22096,20 @@ }, "/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": { @@ -33423,30 +22124,19 @@ } } }, - "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": { @@ -33454,37 +22144,24 @@ "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": { @@ -33499,31 +22176,18 @@ } } }, - "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" } } } } } @@ -33531,18 +22195,14 @@ }, "/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": { @@ -33557,31 +22217,18 @@ } } }, - "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" } } } } } @@ -33589,18 +22236,14 @@ }, "/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": { @@ -33615,46 +22258,31 @@ } } }, - "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": { @@ -33669,85 +22297,54 @@ } } }, - "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": { @@ -33755,37 +22352,24 @@ "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": { @@ -33825,30 +22409,19 @@ } } }, - "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": { @@ -33860,7 +22433,7 @@ "type": "array", "items": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -33888,6 +22461,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -33902,38 +22478,25 @@ } } }, - "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": { @@ -33948,30 +22511,19 @@ } } }, - "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": { @@ -33986,30 +22538,19 @@ } } }, - "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": { @@ -34017,37 +22558,24 @@ "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": { @@ -34062,30 +22590,19 @@ } } }, - "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": { @@ -34100,21 +22617,12 @@ } } }, - "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": { @@ -34125,7 +22633,7 @@ "type": "array", "items": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -34153,6 +22661,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -34167,61 +22678,36 @@ } } }, - "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": { @@ -34272,21 +22758,12 @@ } } }, - "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": { @@ -34336,38 +22813,25 @@ } } }, - "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": { @@ -34382,21 +22846,12 @@ } } }, - "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": { @@ -34407,42 +22862,25 @@ "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" } } } } } @@ -34450,46 +22888,29 @@ }, "/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" } } } } @@ -34498,26 +22919,20 @@ }, "/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": { @@ -34532,30 +22947,19 @@ } } }, - "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": { @@ -34570,46 +22974,31 @@ } } }, - "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": { @@ -34624,99 +23013,59 @@ } } }, - "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" - } - } - } - } - }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] + "content": { + "*/*": { "schema": { "$ref": "#/components/schemas/RatingType" } } + } } - ] + }, + "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": { @@ -34731,39 +23080,25 @@ } } }, - "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": { @@ -34778,46 +23113,31 @@ } } }, - "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": { @@ -34832,85 +23152,54 @@ } } }, - "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": { @@ -34918,37 +23207,24 @@ "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": { @@ -34963,30 +23239,19 @@ } } }, - "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": { @@ -35001,30 +23266,19 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/admin/orcid/{orcid}/external-websites": { "get": { - "tags": [ - "admin/orcid" - ], + "tags": ["admin/orcid"], "operationId": "admin_orcid_by_id_external-websites_getExternalWebsitesByOrcid", "parameters": [ { "name": "orcid", "in": "path", "required": true, - "schema": { - "type": "string" - } + "schema": { "type": "string" } } ], "responses": { @@ -35034,9 +23288,7 @@ "*/*": { "schema": { "type": "array", - "items": { - "$ref": "#/components/schemas/OrcidWebsiteDTO" - } + "items": { "$ref": "#/components/schemas/OrcidWebsiteDTO" } } } } @@ -35046,111 +23298,74 @@ }, "/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": { @@ -35165,30 +23380,19 @@ } } }, - "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": { @@ -35203,38 +23407,25 @@ } } }, - "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": { @@ -35249,30 +23440,19 @@ } } }, - "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": { @@ -35280,45 +23460,30 @@ "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": { @@ -35333,30 +23498,19 @@ } } }, - "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": { @@ -35364,37 +23518,24 @@ "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": { @@ -35409,21 +23550,12 @@ } } }, - "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": { @@ -35435,42 +23567,26 @@ "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": { @@ -35485,30 +23601,19 @@ } } }, - "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": { @@ -35523,58 +23628,36 @@ } } }, - "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": { @@ -35589,56 +23672,37 @@ } } }, - "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": { @@ -35657,18 +23721,14 @@ }, "/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": { @@ -35687,35 +23747,26 @@ }, "/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": { @@ -35730,61 +23781,36 @@ } } }, - "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": { @@ -35792,37 +23818,24 @@ "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": { @@ -35837,30 +23850,19 @@ } } }, - "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": { @@ -35870,38 +23872,25 @@ "*/*": { "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": { @@ -35916,46 +23905,31 @@ } } }, - "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": { @@ -35970,30 +23944,19 @@ } } }, - "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": { @@ -36008,31 +23971,18 @@ } } }, - "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" } } } } } @@ -36040,18 +23990,14 @@ }, "/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" } } } } @@ -36060,18 +24006,14 @@ }, "/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": { @@ -36081,12 +24023,8 @@ "application/xml": { "schema": { "oneOf": [ - { - "$ref": "#/components/schemas/Urlset" - }, - { - "$ref": "#/components/schemas/Sitemapindex" - } + { "$ref": "#/components/schemas/Urlset" }, + { "$ref": "#/components/schemas/Sitemapindex" } ] } } @@ -36097,26 +24035,20 @@ }, "/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": { @@ -36124,9 +24056,7 @@ "description": "OK", "content": { "application/xml": { - "schema": { - "$ref": "#/components/schemas/Urlset" - } + "schema": { "$ref": "#/components/schemas/Urlset" } } } } @@ -36135,26 +24065,20 @@ }, "/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": { @@ -36169,30 +24093,19 @@ } } }, - "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": { @@ -36216,30 +24129,19 @@ } } }, - "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": { @@ -36247,37 +24149,24 @@ "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": { @@ -36287,38 +24176,25 @@ "*/*": { "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": { @@ -36328,76 +24204,47 @@ "*/*": { "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": { @@ -36423,38 +24270,25 @@ } } }, - "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": { @@ -36469,46 +24303,31 @@ } } }, - "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": { @@ -36523,38 +24342,25 @@ } } }, - "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": { @@ -36562,75 +24368,47 @@ "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": { @@ -36645,47 +24423,31 @@ } } }, - "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": { @@ -36700,38 +24462,25 @@ } } }, - "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": { @@ -36746,69 +24495,42 @@ } } }, - "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": { @@ -36816,28 +24538,17 @@ "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": { @@ -36863,21 +24574,12 @@ } } }, - "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": { @@ -36888,49 +24590,32 @@ "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": { @@ -36938,45 +24623,30 @@ "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": { @@ -36984,45 +24654,30 @@ "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": { @@ -37037,30 +24692,19 @@ } } }, - "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": { @@ -37075,38 +24719,25 @@ } } }, - "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": { @@ -37114,37 +24745,24 @@ "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": { @@ -37168,30 +24786,19 @@ } } }, - "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": { @@ -37199,37 +24806,24 @@ "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": { @@ -37244,30 +24838,19 @@ } } }, - "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": { @@ -37282,30 +24865,19 @@ } } }, - "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": { @@ -37320,30 +24892,19 @@ } } }, - "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": { @@ -37351,37 +24912,24 @@ "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": { @@ -37389,40 +24937,24 @@ "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": { @@ -37437,72 +24969,49 @@ } } }, - "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": { @@ -37517,30 +25026,19 @@ } } }, - "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": { @@ -37550,38 +25048,25 @@ "*/*": { "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": { @@ -37591,63 +25076,43 @@ "*/*": { "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": { @@ -37662,77 +25127,48 @@ } } }, - "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": { @@ -37740,37 +25176,24 @@ "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": { @@ -37778,28 +25201,17 @@ "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": { @@ -37825,46 +25237,31 @@ } } }, - "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": { @@ -37879,85 +25276,54 @@ } } }, - "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": { @@ -37965,37 +25331,24 @@ "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": { @@ -38035,30 +25388,19 @@ } } }, - "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": { @@ -38070,7 +25412,7 @@ "type": "array", "items": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -38098,6 +25440,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -38112,38 +25457,25 @@ } } }, - "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": { @@ -38158,69 +25490,42 @@ } } }, - "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": { @@ -38228,66 +25533,39 @@ "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", @@ -38297,12 +25575,7 @@ "type": "string", "description": "Type of dissemination: IIIF or WEB.", "default": "PUBLIC", - "enum": [ - "IIIF", - "HEDERA", - "BASIC", - "OAIS" - ] + "enum": ["IIIF", "HEDERA", "BASIC", "OAIS"] } } ], @@ -38318,30 +25591,19 @@ } } }, - "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": { @@ -38356,21 +25618,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/access/dip/list-status": { "get": { - "tags": [ - "access/dip" - ], + "tags": ["access/dip"], "operationId": "access_dip_list-status", "responses": { "200": { @@ -38381,7 +25634,7 @@ "type": "array", "items": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -38409,6 +25662,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -38423,61 +25679,36 @@ } } }, - "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": { @@ -38528,21 +25759,12 @@ } } }, - "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": { @@ -38592,38 +25814,25 @@ } } }, - "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": { @@ -38638,30 +25847,19 @@ } } }, - "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" } } } } @@ -38670,26 +25868,20 @@ }, "/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": { @@ -38704,30 +25896,19 @@ } } }, - "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": { @@ -38751,30 +25932,19 @@ } } }, - "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": { @@ -38782,37 +25952,24 @@ "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": { @@ -38822,38 +25979,25 @@ "*/*": { "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": { @@ -38863,76 +26007,47 @@ "*/*": { "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": { @@ -38958,46 +26073,31 @@ } } }, - "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": { @@ -39012,85 +26112,54 @@ } } }, - "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": { @@ -39098,37 +26167,24 @@ "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": { @@ -39168,30 +26224,19 @@ } } }, - "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": { @@ -39203,7 +26248,7 @@ "type": "array", "items": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -39231,6 +26276,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -39245,38 +26293,25 @@ } } }, - "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": { @@ -39291,69 +26326,42 @@ } } }, - "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": { @@ -39361,66 +26369,39 @@ "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": { @@ -39435,21 +26416,12 @@ } } }, - "security": [ - { - "tokenAuth": [] - }, - { - "auth": [] - } - ] + "security": [{ "tokenAuth": [] }, { "auth": [] }] } }, "/access/aip/list-status": { "get": { - "tags": [ - "access/aip" - ], + "tags": ["access/aip"], "operationId": "access_aip_list-status", "responses": { "200": { @@ -39460,7 +26432,7 @@ "type": "array", "items": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -39488,6 +26460,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -39502,61 +26477,36 @@ } } }, - "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": { @@ -39607,21 +26557,12 @@ } } }, - "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": { @@ -39671,90 +26612,50 @@ } } }, - "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": { @@ -39762,37 +26663,24 @@ "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": { @@ -39800,75 +26688,47 @@ "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": { @@ -39876,37 +26736,24 @@ "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": { @@ -39914,106 +26761,63 @@ "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": { @@ -40021,37 +26825,24 @@ "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": { @@ -40059,100 +26850,55 @@ "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": [] }] } } }, @@ -40183,44 +26929,22 @@ "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, @@ -40234,13 +26958,7 @@ "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", @@ -40251,6 +26969,7 @@ "ARCHIVE_PRELOAD_SMALL", "CHECK_COMPLIANCE_LEVEL", "CLEAN_SUBMISSION", + "COMPLIANCE_LEVEL_UPDATE", "DISPOSAL", "FIXITY", "METADATA_MIGRATION", @@ -40270,20 +26989,12 @@ "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", @@ -40291,58 +27002,30 @@ "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, @@ -40354,6 +27037,11 @@ "format": "int64", "readOnly": true }, + "reportNumber": { + "type": "integer", + "format": "int32", + "readOnly": true + }, "ignoredItems": { "type": "integer", "format": "int64", @@ -40369,14 +27057,7 @@ "format": "int64", "readOnly": true }, - "reportNumber": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "_links": { - "$ref": "#/components/schemas/Links" - } + "_links": { "$ref": "#/components/schemas/Links" } }, "description": "Preservation job execution information" }, @@ -40387,145 +27068,81 @@ "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 - }, - "_links": { - "$ref": "#/components/schemas/Links" - } + "messsage": { "type": "string", "writeOnly": true }, + "_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." @@ -40535,9 +27152,7 @@ "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." }, @@ -40552,12 +27167,8 @@ ], "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, @@ -40566,18 +27177,12 @@ }, "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", @@ -40644,9 +27249,7 @@ "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.", @@ -40655,9 +27258,7 @@ "description": "The keyword List of the deposit." } }, - "language": { - "$ref": "#/components/schemas/Language" - }, + "language": { "$ref": "#/components/schemas/Language" }, "languageId": { "maxLength": 50, "minLength": 0, @@ -40672,21 +27273,11 @@ "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 + 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" - ] + "enum": ["1.0", "1.1", "2.0", "2.1", "3.0", "3.1", "4.0"] }, "organizationalUnit": { "$ref": "#/components/schemas/OrganizationalUnit" @@ -40807,22 +27398,15 @@ "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" }, @@ -40832,11 +27416,7 @@ "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", @@ -40852,17 +27432,11 @@ "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, @@ -40898,9 +27472,7 @@ "type": "string", "description": "The ROR identifier of the institution." }, - "logo": { - "$ref": "#/components/schemas/InstitutionLogo" - }, + "logo": { "$ref": "#/components/schemas/InstitutionLogo" }, "identifiers": { "type": "object", "additionalProperties": { @@ -40912,25 +27484,17 @@ "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, @@ -40952,21 +27516,15 @@ "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, @@ -40977,25 +27535,16 @@ "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, @@ -41029,12 +27578,7 @@ "odConformance": { "type": "string", "description": "Conformance Status.", - "enum": [ - "approved", - "", - "not reviewed", - "rejected" - ] + "enum": ["approved", "", "not reviewed", "rejected"] }, "openLicenseId": { "type": "string", @@ -41043,21 +27587,12 @@ "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", @@ -41068,29 +27603,21 @@ "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, @@ -41112,25 +27639,16 @@ "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, @@ -41142,9 +27660,7 @@ "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" }, @@ -41160,9 +27676,7 @@ "institutions": { "type": "array", "writeOnly": true, - "items": { - "$ref": "#/components/schemas/Institution" - } + "items": { "$ref": "#/components/schemas/Institution" } }, "isEmpty": { "type": "boolean", @@ -41192,28 +27706,20 @@ "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, @@ -41235,24 +27741,16 @@ "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, @@ -41290,27 +27788,17 @@ "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": [ @@ -41327,25 +27815,15 @@ "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, @@ -41369,21 +27847,15 @@ "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, @@ -41405,24 +27877,16 @@ "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, @@ -41447,11 +27911,7 @@ "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" @@ -41462,44 +27922,25 @@ "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, @@ -41508,9 +27949,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "code": { "maxLength": 50, @@ -41521,9 +27960,7 @@ "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, @@ -41537,9 +27974,7 @@ "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." }, @@ -41553,39 +27988,17 @@ ], "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" - ] - }, - "creationTime": { - "type": "string", - "format": "date-time" - } + "checksumType": { "type": "string", "enum": ["COMPLETE", "PARTIAL"] }, + "creationTime": { "type": "string", "format": "date-time" } } }, "DepositDataFile": { @@ -41598,12 +28011,8 @@ ], "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, @@ -41612,9 +28021,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "complianceLevel": { "type": "string", @@ -41699,34 +28106,18 @@ "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": [ @@ -41757,18 +28148,12 @@ "minLength": 0, "type": "string" }, - "virusCheck": { - "$ref": "#/components/schemas/VirusCheck" - }, + "virusCheck": { "$ref": "#/components/schemas/VirusCheck" }, "checksums": { "type": "array", - "items": { - "$ref": "#/components/schemas/DataFileChecksum" - } - }, - "infoPackage": { - "$ref": "#/components/schemas/Deposit" + "items": { "$ref": "#/components/schemas/DataFileChecksum" } }, + "infoPackage": { "$ref": "#/components/schemas/Deposit" }, "fileStatus": { "type": "string", "writeOnly": true, @@ -41795,20 +28180,10 @@ "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": { @@ -41840,9 +28215,7 @@ "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, @@ -41853,19 +28226,11 @@ "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, @@ -41881,12 +28246,7 @@ "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", @@ -41914,9 +28274,7 @@ "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." }, @@ -41927,10 +28285,7 @@ "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." @@ -41954,26 +28309,16 @@ "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, @@ -41982,9 +28327,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "firstName": { "maxLength": 255, @@ -42007,28 +28350,20 @@ "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, @@ -42050,26 +28385,16 @@ "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, @@ -42088,11 +28413,7 @@ "archiveContainer": { "type": "string", "description": "The container type of the AIP.", - "enum": [ - "UNDEFINED", - "ZIP", - "BAG_IT" - ] + "enum": ["UNDEFINED", "ZIP", "BAG_IT"] }, "archivalUnit": { "type": "boolean", @@ -42132,22 +28453,14 @@ "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" - } - }, - "fileFormat": { - "$ref": "#/components/schemas/FileFormat" - }, - "info": { - "$ref": "#/components/schemas/RepresentationInfo" + "items": { "$ref": "#/components/schemas/DataFileChecksum" } }, + "fileFormat": { "$ref": "#/components/schemas/FileFormat" }, + "info": { "$ref": "#/components/schemas/RepresentationInfo" }, "sipIds": { "type": "array", "description": "The source SIP list (IDs) of the AIP.", @@ -42156,9 +28469,7 @@ "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.", @@ -42221,7 +28532,7 @@ }, "packageStatus": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "writeOnly": true, "enum": [ "CHECK_PENDING", @@ -42250,6 +28561,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -42264,9 +28578,7 @@ "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)" }, @@ -42286,21 +28598,13 @@ "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", @@ -42343,9 +28647,7 @@ "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." @@ -42353,15 +28655,7 @@ "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 + 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" - ] + "enum": ["1.0", "1.1", "2.0", "2.1", "3.0", "3.1", "4.0"] }, "name": { "maxLength": 255, @@ -42377,7 +28671,7 @@ }, "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -42405,6 +28699,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -42436,11 +28733,7 @@ "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." @@ -42448,42 +28741,25 @@ "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, @@ -42518,33 +28794,23 @@ "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" }, @@ -42553,20 +28819,14 @@ "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": { @@ -42580,12 +28840,8 @@ ], "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, @@ -42643,48 +28899,32 @@ "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, @@ -42717,9 +28957,7 @@ "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" }, @@ -42760,7 +28998,7 @@ }, "packageStatus": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "writeOnly": true, "enum": [ "CHECK_PENDING", @@ -42789,6 +29027,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -42803,9 +29044,7 @@ "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)" }, @@ -42819,12 +29058,8 @@ ], "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, @@ -42833,9 +29068,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "complianceLevel": { "type": "string", @@ -42920,34 +29153,18 @@ "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": [ @@ -42978,14 +29195,10 @@ "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" @@ -43016,86 +29229,50 @@ "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, @@ -43151,96 +29328,63 @@ "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" }, @@ -43259,51 +29403,23 @@ "NESTED_BOOLEAN" ] }, - "searchOperator": { - "type": "string", - "enum": [ - "AND", - "OR" - ] - }, + "searchOperator": { "type": "string", "enum": ["AND", "OR"] }, "booleanClauseType": { "type": "string", - "enum": [ - "MUST", - "FILTER", - "SHOULD", - "MUST_NOT" - ] - }, - "field": { - "type": "string" + "enum": ["MUST", "FILTER", "SHOULD", "MUST_NOT"] }, + "field": { "type": "string" }, "multiMatchFields": { "type": "array", - "items": { - "type": "string" - } - }, - "value": { - "type": "string" - }, - "terms": { - "type": "array", - "items": { - "type": "string" - } - }, - "upperValue": { - "type": "string" - }, - "lowerValue": { - "type": "string" + "items": { "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" @@ -43311,39 +29427,25 @@ "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, @@ -43359,30 +29461,18 @@ "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" - }, - "_links": { - "$ref": "#/components/schemas/Links" - } + "dataFile": { "$ref": "#/components/schemas/ArchivePublicDataFile" }, + "_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, @@ -43404,67 +29494,44 @@ "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", @@ -43480,15 +29547,9 @@ }, "archiveContainer": { "type": "string", - "enum": [ - "UNDEFINED", - "ZIP", - "BAG_IT" - ] + "enum": ["UNDEFINED", "ZIP", "BAG_IT"] }, - "_links": { - "$ref": "#/components/schemas/Links" - } + "_links": { "$ref": "#/components/schemas/Links" } } }, "AipDataFile": { @@ -43501,12 +29562,8 @@ ], "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, @@ -43515,9 +29572,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "complianceLevel": { "type": "string", @@ -43602,34 +29657,18 @@ "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": [ @@ -43660,18 +29699,12 @@ "minLength": 0, "type": "string" }, - "virusCheck": { - "$ref": "#/components/schemas/VirusCheck" - }, + "virusCheck": { "$ref": "#/components/schemas/VirusCheck" }, "checksums": { "type": "array", - "items": { - "$ref": "#/components/schemas/DataFileChecksum" - } - }, - "infoPackage": { - "$ref": "#/components/schemas/ArchivalInfoPackage" + "items": { "$ref": "#/components/schemas/DataFileChecksum" } }, + "infoPackage": { "$ref": "#/components/schemas/ArchivalInfoPackage" }, "fileStatus": { "type": "string", "writeOnly": true, @@ -43698,43 +29731,25 @@ "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" }, @@ -43775,51 +29790,20 @@ "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)." @@ -43828,12 +29812,8 @@ "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": { @@ -43862,12 +29842,8 @@ ], "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, @@ -43876,9 +29852,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "lastLoginTime": { "type": "string", @@ -43891,13 +29865,8 @@ "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, @@ -43928,9 +29897,7 @@ "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." @@ -43939,60 +29906,40 @@ "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" }, @@ -44005,94 +29952,57 @@ } }, "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, @@ -44148,106 +30058,70 @@ "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, @@ -44258,96 +30132,63 @@ "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." @@ -44358,52 +30199,33 @@ "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" }, @@ -44418,26 +30240,16 @@ "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": { @@ -44449,49 +30261,29 @@ "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.", @@ -44500,25 +30292,15 @@ "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, @@ -44527,9 +30309,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "firstName": { "maxLength": 255, @@ -44552,37 +30332,24 @@ "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, @@ -44616,9 +30383,7 @@ "type": "string", "description": "The ROR identifier of the funding agency." }, - "logo": { - "$ref": "#/components/schemas/FundingAgencyLogo" - }, + "logo": { "$ref": "#/components/schemas/FundingAgencyLogo" }, "identifiers": { "type": "object", "additionalProperties": { @@ -44627,21 +30392,15 @@ }, "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, @@ -44663,24 +30422,16 @@ "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, @@ -44696,12 +30447,7 @@ "type": { "type": "string", "description": "Type of dissemination: IIIF or WEB.", - "enum": [ - "IIIF", - "HEDERA", - "BASIC", - "OAIS" - ] + "enum": ["IIIF", "HEDERA", "BASIC", "OAIS"] }, "parameters": { "maxLength": 2147483646, @@ -44718,10 +30464,7 @@ "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, @@ -44735,9 +30478,7 @@ "format": "int32", "readOnly": true }, - "_links": { - "$ref": "#/components/schemas/Links" - } + "_links": { "$ref": "#/components/schemas/Links" } }, "description": "A dissemination policy defines how to disseminate archives." }, @@ -44752,12 +30493,8 @@ "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" }, @@ -44770,90 +30507,50 @@ "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, @@ -44886,38 +30583,24 @@ "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" }, @@ -44931,27 +30614,17 @@ ], "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, @@ -44967,20 +30640,12 @@ "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" @@ -45003,21 +30668,15 @@ "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, @@ -45039,45 +30698,31 @@ "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": { @@ -45094,114 +30739,73 @@ "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, @@ -45215,25 +30819,17 @@ "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", @@ -45254,126 +30850,86 @@ "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." }, @@ -45396,42 +30952,25 @@ "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, @@ -45442,44 +30981,30 @@ "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" }, @@ -45493,21 +31018,15 @@ ], "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, @@ -45517,9 +31036,7 @@ "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.", @@ -45534,49 +31051,32 @@ "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, @@ -45592,74 +31092,50 @@ "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": { @@ -45671,12 +31147,8 @@ ], "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, @@ -45689,22 +31161,12 @@ }, "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 + 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" - ] + "enum": ["1.0", "1.1", "2.0", "2.1", "3.0", "3.1", "4.0"] }, "name": { "maxLength": 255, @@ -45719,11 +31181,7 @@ "queryType": { "type": "string", "description": "The type of the order query.", - "enum": [ - "ADVANCED", - "DIRECT", - "SIMPLE" - ] + "enum": ["ADVANCED", "DIRECT", "SIMPLE"] }, "status": { "type": "string", @@ -45763,10 +31221,7 @@ "SUBMITTED" ] }, - "errorStatus": { - "type": "string", - "writeOnly": true - }, + "errorStatus": { "type": "string", "writeOnly": true }, "dipNumber": { "type": "integer", "description": "The DIP number of the order query.", @@ -45777,33 +31232,23 @@ "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.", @@ -45820,7 +31265,7 @@ }, "packageStatus": { "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "writeOnly": true, "enum": [ "CHECK_PENDING", @@ -45849,6 +31294,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -45858,33 +31306,23 @@ "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" }, @@ -45898,12 +31336,8 @@ ], "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, @@ -45912,9 +31346,7 @@ }, "searchCriterias": { "type": "array", - "items": { - "$ref": "#/components/schemas/SearchCriteria" - } + "items": { "$ref": "#/components/schemas/SearchCriteria" } }, "complianceLevel": { "type": "string", @@ -45999,34 +31431,18 @@ "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": [ @@ -46057,14 +31473,10 @@ "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" @@ -46095,43 +31507,25 @@ "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" }, @@ -46142,219 +31536,134 @@ "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": { @@ -46408,27 +31717,19 @@ "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -46456,6 +31757,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -46470,84 +31774,53 @@ "AipCopyList": { "type": "object", "properties": { - "resId": { - "type": "string" - }, + "resId": { "type": "string" }, "copies": { "type": "array", - "items": { - "$ref": "#/components/schemas/AipCopy" - } - }, - "creationDate": { - "type": "string", - "format": "date-time" + "items": { "$ref": "#/components/schemas/AipCopy" } }, - "_links": { - "$ref": "#/components/schemas/Links" - } + "creationDate": { "type": "string", "format": "date-time" }, + "_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, @@ -46574,175 +31847,94 @@ "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" - }, - "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" - } + "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" } }, "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"] } } }, @@ -46758,64 +31950,33 @@ ], "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" - ] - }, - "compression": { - "type": "array", - "items": { - "type": "string" - } + "enum": ["YYYY_MM_DD", "YYYY_MM_DD_THH_MM_SS_Z"] }, + "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" @@ -46823,30 +31984,22 @@ } }, "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" @@ -46854,16 +32007,12 @@ } }, "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" @@ -46871,47 +32020,29 @@ } }, "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", @@ -46926,76 +32057,46 @@ } }, "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" - } - }, - "identify": { - "$ref": "#/components/schemas/IdentifyType" + "items": { "$ref": "#/components/schemas/OAIPMHerrorType" } }, + "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", @@ -47005,244 +32106,139 @@ "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", + "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- COMPLIANCE_LEVEL_UPDATE_PENDING => A package compliance update is pending\n- COMPLIANCE_LEVEL_UPDATED => The compliance levels of the package have been updated\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_COMPLIANCE_LEVEL => A package compliance update is in progress\n- UPDATING_RETENTION => A package retention update is in progress during disposal process\n- UPGRADING_METADATA => A metadata version upgrade is in progress\n", "enum": [ "CHECK_PENDING", "CHECKING", @@ -47270,6 +32266,9 @@ "UPDATING_RETENTION", "METADATA_UPGRADE_PENDING", "UPGRADING_METADATA", + "COMPLIANCE_LEVEL_UPDATE_PENDING", + "UPDATING_COMPLIANCE_LEVEL", + "COMPLIANCE_LEVEL_UPDATED", "REINDEXING", "RELOADED", "RESUBMITTING", @@ -47279,93 +32278,57 @@ "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)" }, @@ -47423,25 +32386,17 @@ "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" - }, - "_links": { - "$ref": "#/components/schemas/Links" - } + "orcid": { "$ref": "#/components/schemas/OrcidConfigDTO" }, + "_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": { @@ -47450,63 +32405,41 @@ }, "_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": { @@ -47514,66 +32447,46 @@ "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": { @@ -47582,22 +32495,16 @@ }, "_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": { @@ -47606,22 +32513,16 @@ }, "_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": { @@ -47630,52 +32531,34 @@ }, "_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" - } + "url": { "type": "string" }, + "languageCode": { "type": "string" }, + "text": { "type": "string" } } }, "OrcidWebsiteDTO": { @@ -47683,25 +32566,16 @@ "properties": { "links": { "type": "array", - "items": { - "$ref": "#/components/schemas/I18nLink" - } + "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, @@ -47713,9 +32587,7 @@ "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" }, @@ -47731,9 +32603,7 @@ "institutions": { "type": "array", "writeOnly": true, - "items": { - "$ref": "#/components/schemas/Institution" - } + "items": { "$ref": "#/components/schemas/Institution" } }, "isEmpty": { "type": "boolean", @@ -47763,33 +32633,21 @@ "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": { @@ -47798,28 +32656,18 @@ }, "_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, @@ -47855,9 +32703,7 @@ "type": "string", "description": "The ROR identifier of the institution." }, - "logo": { - "$ref": "#/components/schemas/InstitutionLogo" - }, + "logo": { "$ref": "#/components/schemas/InstitutionLogo" }, "identifiers": { "type": "object", "additionalProperties": { @@ -47866,99 +32712,62 @@ }, "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": { @@ -47967,37 +32776,20 @@ } }, "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": [ @@ -48010,34 +32802,18 @@ "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": { @@ -48048,36 +32824,22 @@ "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." @@ -48097,125 +32859,77 @@ "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" } } } }, @@ -48231,12 +32945,10 @@ "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 +}