From 0580cab09b69c1e2d3d6d905e126a2e66968dfe7 Mon Sep 17 00:00:00 2001 From: Celestino Bellone <3385346+cbellone@users.noreply.github.com> Date: Sat, 25 Mar 2023 21:12:12 +0100 Subject: [PATCH] Implement support for keeping multiple sponsor scans of the same attendee coming from different operators (#1205) - cherry-picked from 6d7e3ccdd8457cd5bc0ff4945fa42b70a7701c89 --- .../api/admin/EventApiController.java | 2 + .../api/v1/AttendeeApiController.java | 13 +- .../java/alfio/manager/AttendeeManager.java | 21 +- .../java/alfio/model/DetailedScanData.java | 5 +- src/main/java/alfio/model/SponsorScan.java | 5 +- .../repository/SponsorScanRepository.java | 16 +- ...V204_2.0.0.49.5__SPONSOR_SCAN_OPERATOR.sql | 21 + .../reservation/BaseReservationFlowTest.java | 42 +- src/test/resources/api/descriptor.json | 5040 +++++++++-------- 9 files changed, 2626 insertions(+), 2539 deletions(-) create mode 100644 src/main/resources/alfio/db/PGSQL/V204_2.0.0.49.5__SPONSOR_SCAN_OPERATOR.sql diff --git a/src/main/java/alfio/controller/api/admin/EventApiController.java b/src/main/java/alfio/controller/api/admin/EventApiController.java index 03d405ebda..427256acfd 100644 --- a/src/main/java/alfio/controller/api/admin/EventApiController.java +++ b/src/main/java/alfio/controller/api/admin/EventApiController.java @@ -460,6 +460,7 @@ public void downloadSponsorScanExport(@PathVariable("eventName") String eventNam header.addAll(fields.stream().map(TicketFieldConfiguration::getName).toList()); header.add("Sponsor notes"); header.add("Lead Status"); + header.add("Operator"); Stream sponsorScans = userManager.findAllEnabledUsers(principal.getName()).stream() .map(u -> Pair.of(u, userManager.getUserRole(u))) @@ -486,6 +487,7 @@ public void downloadSponsorScanExport(@PathVariable("eventName") String eventNam line.add(sponsorScan.getNotes()); line.add(sponsorScan.getLeadStatus().name()); + line.add(sponsorScan.getOperator()); return line.toArray(new String[0]); }); diff --git a/src/main/java/alfio/controller/api/v1/AttendeeApiController.java b/src/main/java/alfio/controller/api/v1/AttendeeApiController.java index fe6204594e..1e81f2f19d 100644 --- a/src/main/java/alfio/controller/api/v1/AttendeeApiController.java +++ b/src/main/java/alfio/controller/api/v1/AttendeeApiController.java @@ -50,6 +50,7 @@ @RequestMapping("/api/attendees") public class AttendeeApiController { + public static final String ALFIO_OPERATOR_HEADER = "Alfio-Operator"; private static final Logger log = LoggerFactory.getLogger(AttendeeApiController.class); private final AttendeeManager attendeeManager; @@ -73,15 +74,19 @@ public ResponseEntity handleGenericException(RuntimeException e) { @PostMapping("/sponsor-scan") - public ResponseEntity scanBadge(@RequestBody SponsorScanRequest request, Principal principal) { - return ResponseEntity.ok(attendeeManager.registerSponsorScan(request.eventName, request.ticketIdentifier, request.notes, request.leadStatus, principal.getName())); + public ResponseEntity scanBadge(@RequestBody SponsorScanRequest request, + Principal principal, + @RequestHeader(name = ALFIO_OPERATOR_HEADER, required = false) String operator) { + return ResponseEntity.ok(attendeeManager.registerSponsorScan(request.eventName, request.ticketIdentifier, request.notes, request.leadStatus, principal.getName(), operator)); } @PostMapping("/sponsor-scan/bulk") - public ResponseEntity> scanBadges(@RequestBody List requests, Principal principal) { + public ResponseEntity> scanBadges(@RequestBody List requests, + Principal principal, + @RequestHeader(name = ALFIO_OPERATOR_HEADER, required = false) String operator) { String username = principal.getName(); return ResponseEntity.ok(requests.stream() - .map(request -> attendeeManager.registerSponsorScan(request.eventName, request.ticketIdentifier, request.notes, request.leadStatus, username)) + .map(request -> attendeeManager.registerSponsorScan(request.eventName, request.ticketIdentifier, request.notes, request.leadStatus, username, operator)) .collect(Collectors.toList())); } diff --git a/src/main/java/alfio/manager/AttendeeManager.java b/src/main/java/alfio/manager/AttendeeManager.java index a91a67a4dd..61fb06554c 100644 --- a/src/main/java/alfio/manager/AttendeeManager.java +++ b/src/main/java/alfio/manager/AttendeeManager.java @@ -34,12 +34,13 @@ import java.time.ZoneId; import java.time.ZonedDateTime; import java.util.List; +import java.util.Objects; import java.util.Optional; -import java.util.stream.Collectors; @Component public class AttendeeManager { + public static final String DEFAULT_OPERATOR_ID = "__DEFAULT__"; private final SponsorScanRepository sponsorScanRepository; private final EventRepository eventRepository; private final TicketRepository ticketRepository; @@ -67,7 +68,12 @@ public AttendeeManager(SponsorScanRepository sponsorScanRepository, this.clockProvider = clockProvider; } - public TicketAndCheckInResult registerSponsorScan(String eventShortName, String ticketUid, String notes, SponsorScan.LeadStatus leadStatus, String username) { + public TicketAndCheckInResult registerSponsorScan(String eventShortName, + String ticketUid, + String notes, + SponsorScan.LeadStatus leadStatus, + String username, + String operatorId) { int userId = userRepository.getByUsername(username).getId(); Optional maybeEvent = eventRepository.findOptionalEventAndOrganizationIdByShortName(eventShortName); if(maybeEvent.isEmpty()) { @@ -82,12 +88,13 @@ public TicketAndCheckInResult registerSponsorScan(String eventShortName, String if(ticket.getStatus() != Ticket.TicketStatus.CHECKED_IN) { return new TicketAndCheckInResult(new TicketWithCategory(ticket, null), new DefaultCheckInResult(CheckInStatus.INVALID_TICKET_STATE, "not checked-in")); } - Optional existingRegistration = sponsorScanRepository.getRegistrationTimestamp(userId, event.getId(), ticket.getId()); + var operator = Objects.requireNonNullElse(operatorId, DEFAULT_OPERATOR_ID); + Optional existingRegistration = sponsorScanRepository.getRegistrationTimestamp(userId, event.getId(), ticket.getId(), operator); if(existingRegistration.isEmpty()) { ZoneId eventZoneId = eventRepository.getZoneIdByEventId(event.getId()); - sponsorScanRepository.insert(userId, ZonedDateTime.now(clockProvider.withZone(eventZoneId)), event.getId(), ticket.getId(), notes, leadStatus); + sponsorScanRepository.insert(userId, ZonedDateTime.now(clockProvider.withZone(eventZoneId)), event.getId(), ticket.getId(), notes, leadStatus, operator); } else { - sponsorScanRepository.updateNotesAndLeadStatus(userId, event.getId(), ticket.getId(), notes, leadStatus); + sponsorScanRepository.updateNotesAndLeadStatus(userId, event.getId(), ticket.getId(), notes, leadStatus, operator); } return new TicketAndCheckInResult(new TicketWithCategory(ticket, null), new DefaultCheckInResult(CheckInStatus.SUCCESS, "success")); } @@ -123,7 +130,9 @@ private List loadAttendeesData(EventAndOrganizationId event .map(scan -> { Ticket ticket = scan.getTicket(); return new SponsorAttendeeData(ticket.getUuid(), scan.getSponsorScan().getTimestamp().format(EventUtil.JSON_DATETIME_FORMATTER), ticket.getFullName(), ticket.getEmail()); - }).collect(Collectors.toList()); + }) + .distinct() + .toList(); } } diff --git a/src/main/java/alfio/model/DetailedScanData.java b/src/main/java/alfio/model/DetailedScanData.java index 339134ed17..0653d741fa 100644 --- a/src/main/java/alfio/model/DetailedScanData.java +++ b/src/main/java/alfio/model/DetailedScanData.java @@ -60,12 +60,13 @@ public DetailedScanData(@Column("t_id") int ticketId, @Column("s_event_id") int scanEventId, @Column("s_ticket_id") int scanTicketId, @Column("s_notes") String notes, - @Column("s_lead_status") SponsorScan.LeadStatus leadStatus) { + @Column("s_lead_status") SponsorScan.LeadStatus leadStatus, + @Column("s_operator") String operator) { this.ticket = new Ticket(ticketId, ticketUuid, ticketCreation, ticketCategoryId, ticketStatus, ticketEventId, ticketsReservationId, ticketFullName, ticketFirstName, ticketLastName, ticketEmail, ticketLockedAssignment, ticketUserLanguage, ticketSrcPriceCts, ticketFinalPriceCts, ticketVatCts, ticketDiscountCts, extReference, currencyCode, ticketTags, ticketSubscriptionId, ticketVatStatus); - this.sponsorScan = new SponsorScan(scanUserId, scanTimestamp, scanEventId, scanTicketId, notes, leadStatus); + this.sponsorScan = new SponsorScan(scanUserId, scanTimestamp, scanEventId, scanTicketId, notes, leadStatus, operator); } } diff --git a/src/main/java/alfio/model/SponsorScan.java b/src/main/java/alfio/model/SponsorScan.java index 38426a3e49..1e069fd335 100644 --- a/src/main/java/alfio/model/SponsorScan.java +++ b/src/main/java/alfio/model/SponsorScan.java @@ -34,6 +34,7 @@ public enum LeadStatus { private final int ticketId; private final String notes; private final LeadStatus leadStatus; + private final String operator; public SponsorScan(@Column("user_id") int userId, @@ -41,12 +42,14 @@ public SponsorScan(@Column("user_id") int userId, @Column("event_id") int eventId, @Column("ticket_id") int ticketId, @Column("notes") String notes, - @Column("lead_status") LeadStatus leadStatus) { + @Column("lead_status") LeadStatus leadStatus, + @Column("operator") String operator) { this.userId = userId; this.timestamp = timestamp; this.eventId = eventId; this.ticketId = ticketId; this.notes = notes; this.leadStatus = leadStatus; + this.operator = operator; } } diff --git a/src/main/java/alfio/repository/SponsorScanRepository.java b/src/main/java/alfio/repository/SponsorScanRepository.java index 026ef1ac48..ceba579ccd 100644 --- a/src/main/java/alfio/repository/SponsorScanRepository.java +++ b/src/main/java/alfio/repository/SponsorScanRepository.java @@ -33,29 +33,31 @@ public interface SponsorScanRepository { ZonedDateTime DEFAULT_TIMESTAMP = ZonedDateTime.ofInstant(Instant.EPOCH, ZoneOffset.UTC); - @Query("select creation from sponsor_scan where user_id = :userId and event_id = :eventId and ticket_id = :ticketId") - Optional getRegistrationTimestamp(@Bind("userId") int userId, @Bind("eventId") int eventId, @Bind("ticketId") int ticketId); + @Query("select creation from sponsor_scan where user_id = :userId and event_id = :eventId and ticket_id = :ticketId and operator = :operator") + Optional getRegistrationTimestamp(@Bind("userId") int userId, @Bind("eventId") int eventId, @Bind("ticketId") int ticketId, @Bind("operator") String operator); - @Query("insert into sponsor_scan (user_id, creation, event_id, ticket_id, notes, lead_status) values(:userId, :creation, :eventId, :ticketId, :notes, :leadStatus)") + @Query("insert into sponsor_scan (user_id, creation, event_id, ticket_id, notes, lead_status, operator) values(:userId, :creation, :eventId, :ticketId, :notes, :leadStatus, :operator)") int insert(@Bind("userId") int userId, @Bind("creation") ZonedDateTime creation, @Bind("eventId") int eventId, @Bind("ticketId") int ticketId, @Bind("notes") String notes, - @Bind("leadStatus") SponsorScan.LeadStatus leadStatus); + @Bind("leadStatus") SponsorScan.LeadStatus leadStatus, + @Bind("operator") String operator); - @Query("update sponsor_scan set notes = :notes, lead_status = :leadStatus where user_id = :userId and event_id = :eventId and ticket_id = :ticketId") + @Query("update sponsor_scan set notes = :notes, lead_status = :leadStatus where user_id = :userId and event_id = :eventId and ticket_id = :ticketId and operator = :operator") int updateNotesAndLeadStatus(@Bind("userId") int userId, @Bind("eventId") int eventId, @Bind("ticketId") int ticketId, @Bind("notes") String notes, - @Bind("leadStatus") SponsorScan.LeadStatus leadStatus); + @Bind("leadStatus") SponsorScan.LeadStatus leadStatus, + @Bind("operator") String operator); @Query("select t.id t_id, t.uuid t_uuid, t.creation t_creation, t.category_id t_category_id, t.status t_status, t.event_id t_event_id," + " t.src_price_cts t_src_price_cts, t.final_price_cts t_final_price_cts, t.vat_cts t_vat_cts, t.discount_cts t_discount_cts, t.tickets_reservation_id t_tickets_reservation_id," + " t.full_name t_full_name, t.first_name t_first_name, t.last_name t_last_name, t.email_address t_email_address, t.locked_assignment t_locked_assignment," + " t.user_language t_user_language, t.ext_reference t_ext_reference, t.currency_code t_currency_code, t.tags t_tags, t.subscription_id_fk t_subscription_id, t.vat_status t_vat_status," + - " s.user_id s_user_id, s.creation s_creation, s.event_id s_event_id, s.ticket_id s_ticket_id, s.notes s_notes, s.lead_status s_lead_status, " + + " s.user_id s_user_id, s.creation s_creation, s.event_id s_event_id, s.ticket_id s_ticket_id, s.notes s_notes, s.lead_status s_lead_status, s.operator s_operator, " + " (case when s.lead_status = 'HOT' then 2 when s.lead_status = 'WARM' then 1 else 0 end) as priority"+ " from sponsor_scan s, ticket t where s.event_id = :eventId and s.user_id = :userId and s.creation > :start and s.ticket_id = t.id order by priority desc, s.creation") List loadSponsorData(@Bind("eventId") int eventId, diff --git a/src/main/resources/alfio/db/PGSQL/V204_2.0.0.49.5__SPONSOR_SCAN_OPERATOR.sql b/src/main/resources/alfio/db/PGSQL/V204_2.0.0.49.5__SPONSOR_SCAN_OPERATOR.sql new file mode 100644 index 0000000000..61557d91a2 --- /dev/null +++ b/src/main/resources/alfio/db/PGSQL/V204_2.0.0.49.5__SPONSOR_SCAN_OPERATOR.sql @@ -0,0 +1,21 @@ +-- +-- This file is part of alf.io. +-- +-- alf.io is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- alf.io is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with alf.io. If not, see . +-- + +alter table sponsor_scan add column operator text not null default '__DEFAULT__'; +alter table sponsor_scan drop constraint "spsc_unique_ticket"; +alter table sponsor_scan add constraint "spsc_unique_ticket" unique(event_id, ticket_id, user_id, operator); + diff --git a/src/test/java/alfio/controller/api/v2/user/reservation/BaseReservationFlowTest.java b/src/test/java/alfio/controller/api/v2/user/reservation/BaseReservationFlowTest.java index 85c145e5c7..3adb2a4845 100644 --- a/src/test/java/alfio/controller/api/v2/user/reservation/BaseReservationFlowTest.java +++ b/src/test/java/alfio/controller/api/v2/user/reservation/BaseReservationFlowTest.java @@ -39,6 +39,7 @@ import alfio.manager.*; import alfio.manager.support.CheckInStatus; import alfio.manager.support.IncompatibleStateException; +import alfio.manager.support.SponsorAttendeeData; import alfio.manager.support.TicketAndCheckInResult; import alfio.manager.support.extension.ExtensionEvent; import alfio.model.*; @@ -1135,9 +1136,9 @@ protected void testBasicFlow(Supplier contextSupplier) t Mockito.when(sponsorPrincipal.getName()).thenReturn(sponsorUser.getUsername()); // check failures - assertEquals(CheckInStatus.EVENT_NOT_FOUND, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest("not-existing-event", "not-existing-ticket", null, null), sponsorPrincipal).getBody().getResult().getStatus()); - assertEquals(CheckInStatus.TICKET_NOT_FOUND, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, "not-existing-ticket", null, null), sponsorPrincipal).getBody().getResult().getStatus()); - assertEquals(CheckInStatus.INVALID_TICKET_STATE, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticketIdentifier, null, null), sponsorPrincipal).getBody().getResult().getStatus()); + assertEquals(CheckInStatus.EVENT_NOT_FOUND, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest("not-existing-event", "not-existing-ticket", null, null), sponsorPrincipal, null).getBody().getResult().getStatus()); + assertEquals(CheckInStatus.TICKET_NOT_FOUND, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, "not-existing-ticket", null, null), sponsorPrincipal, null).getBody().getResult().getStatus()); + assertEquals(CheckInStatus.INVALID_TICKET_STATE, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticketIdentifier, null, null), sponsorPrincipal, null).getBody().getResult().getStatus()); // @@ -1194,7 +1195,9 @@ protected void testBasicFlow(Supplier contextSupplier) t // check register sponsor scan success flow assertTrue(attendeeApiController.getScannedBadges(context.event.getShortName(), EventUtil.JSON_DATETIME_FORMATTER.format(LocalDateTime.of(1970, 1, 1, 0, 0)), sponsorPrincipal).getBody().isEmpty()); - assertEquals(CheckInStatus.SUCCESS, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticketwc.getUuid(), null, null), sponsorPrincipal).getBody().getResult().getStatus()); + assertEquals(CheckInStatus.SUCCESS, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticketwc.getUuid(), null, null), sponsorPrincipal, null).getBody().getResult().getStatus()); + assertEquals(CheckInStatus.SUCCESS, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticketwc.getUuid(), null, null), sponsorPrincipal, null).getBody().getResult().getStatus()); + // scanned badges returns only unique values for a limited subset of columns assertEquals(1, attendeeApiController.getScannedBadges(context.event.getShortName(), EventUtil.JSON_DATETIME_FORMATTER.format(LocalDateTime.of(1970, 1, 1, 0, 0)), sponsorPrincipal).getBody().size()); // check export @@ -1209,14 +1212,18 @@ protected void testBasicFlow(Supplier contextSupplier) t assertEquals("testmctest@test.com", csvSponsorScan.get(1)[4]); assertEquals("", csvSponsorScan.get(1)[8]); assertEquals(SponsorScan.LeadStatus.WARM.name(), csvSponsorScan.get(1)[9]); + assertEquals(AttendeeManager.DEFAULT_OPERATOR_ID, csvSponsorScan.get(1)[10]); // // check update notes - assertEquals(CheckInStatus.SUCCESS, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticket.getUuid(), "this is a very good lead!", "HOT"), sponsorPrincipal).getBody().getResult().getStatus()); - assertEquals(1, attendeeApiController.getScannedBadges(context.event.getShortName(), EventUtil.JSON_DATETIME_FORMATTER.format(LocalDateTime.of(1970, 1, 1, 0, 0)), sponsorPrincipal).getBody().size()); + assertEquals(CheckInStatus.SUCCESS, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticket.getUuid(), "this is a very good lead!", "HOT"), sponsorPrincipal, null).getBody().getResult().getStatus()); + var scannedBadges = attendeeApiController.getScannedBadges(context.event.getShortName(), EventUtil.JSON_DATETIME_FORMATTER.format(LocalDateTime.of(1970, 1, 1, 0, 0)), sponsorPrincipal).getBody(); + assertEquals(1, requireNonNull(scannedBadges).size()); + assertEquals(CheckInStatus.SUCCESS, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticket.getUuid(), "this is a very good lead!", "HOT"), sponsorPrincipal, null).getBody().getResult().getStatus()); + scannedBadges = attendeeApiController.getScannedBadges(context.event.getShortName(), EventUtil.JSON_DATETIME_FORMATTER.format(LocalDateTime.of(1970, 1, 1, 0, 0)), sponsorPrincipal).getBody(); + assertEquals(1, requireNonNull(scannedBadges).size()); response = new MockHttpServletResponse(); eventApiController.downloadSponsorScanExport(context.event.getShortName(), "csv", response, principal); - response.getContentAsString(); csvReader = new CSVReader(new StringReader(response.getContentAsString())); csvSponsorScan = csvReader.readAll(); assertEquals(2, csvSponsorScan.size()); @@ -1225,6 +1232,27 @@ protected void testBasicFlow(Supplier contextSupplier) t assertEquals("testmctest@test.com", csvSponsorScan.get(1)[4]); assertEquals("this is a very good lead!", csvSponsorScan.get(1)[8]); assertEquals(SponsorScan.LeadStatus.HOT.name(), csvSponsorScan.get(1)[9]); + assertEquals(AttendeeManager.DEFAULT_OPERATOR_ID, csvSponsorScan.get(1)[10]); + + // scan from a different operator + response = new MockHttpServletResponse(); + assertEquals(CheckInStatus.SUCCESS, attendeeApiController.scanBadge(new AttendeeApiController.SponsorScanRequest(eventName, ticketwc.getUuid(), null, null), sponsorPrincipal, "OP2").getBody().getResult().getStatus()); + eventApiController.downloadSponsorScanExport(context.event.getShortName(), "csv", response, principal); + csvReader = new CSVReader(new StringReader(response.getContentAsString())); + csvSponsorScan = csvReader.readAll(); + assertEquals(3, csvSponsorScan.size()); + assertEquals("sponsor", csvSponsorScan.get(1)[0]); + assertEquals("Test Testson", csvSponsorScan.get(1)[3]); + assertEquals("testmctest@test.com", csvSponsorScan.get(1)[4]); + assertEquals("this is a very good lead!", csvSponsorScan.get(1)[8]); + assertEquals(SponsorScan.LeadStatus.HOT.name(), csvSponsorScan.get(1)[9]); + assertEquals(AttendeeManager.DEFAULT_OPERATOR_ID, csvSponsorScan.get(1)[10]); + + assertEquals("sponsor", csvSponsorScan.get(2)[0]); + assertEquals("Test Testson", csvSponsorScan.get(2)[3]); + assertEquals("testmctest@test.com", csvSponsorScan.get(2)[4]); + assertEquals("", csvSponsorScan.get(2)[8]); + assertEquals("OP2", csvSponsorScan.get(2)[10]); // #742 - test multiple check-ins diff --git a/src/test/resources/api/descriptor.json b/src/test/resources/api/descriptor.json index 0b07ac83de..3292d85e58 100644 --- a/src/test/resources/api/descriptor.json +++ b/src/test/resources/api/descriptor.json @@ -39,8 +39,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -49,8 +49,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -59,8 +59,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -120,8 +120,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -130,8 +130,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -140,8 +140,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -191,8 +191,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -201,8 +201,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -211,8 +211,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -258,8 +258,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -268,8 +268,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -278,8 +278,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -324,8 +324,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -334,8 +334,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -344,8 +344,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -402,8 +402,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -412,8 +412,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -422,8 +422,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -476,8 +476,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -486,8 +486,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -496,8 +496,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -558,8 +558,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -568,8 +568,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -578,8 +578,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -640,8 +640,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -650,8 +650,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -660,8 +660,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -712,8 +712,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -722,8 +722,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -732,8 +732,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -786,8 +786,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -796,8 +796,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -806,8 +806,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -844,8 +844,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -854,8 +854,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -864,8 +864,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -900,8 +900,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -910,8 +910,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -920,8 +920,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -981,8 +981,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -991,8 +991,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1001,8 +1001,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1072,8 +1072,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1082,8 +1082,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1092,8 +1092,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1153,8 +1153,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1163,8 +1163,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1173,8 +1173,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1242,8 +1242,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1252,8 +1252,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1262,8 +1262,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1329,8 +1329,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1339,8 +1339,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1349,8 +1349,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1403,8 +1403,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1413,8 +1413,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1423,8 +1423,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1482,8 +1482,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1492,8 +1492,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1502,8 +1502,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1548,8 +1548,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1558,8 +1558,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1568,8 +1568,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1622,8 +1622,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1632,8 +1632,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1642,8 +1642,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1696,8 +1696,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1706,8 +1706,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1716,8 +1716,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1770,8 +1770,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1780,8 +1780,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1790,8 +1790,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1852,8 +1852,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1862,8 +1862,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1872,8 +1872,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -1934,8 +1934,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -1944,8 +1944,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -1954,8 +1954,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2002,8 +2002,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2012,8 +2012,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2022,8 +2022,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2076,8 +2076,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2086,8 +2086,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2096,8 +2096,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2145,8 +2145,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2155,8 +2155,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2165,8 +2165,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2222,8 +2222,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2232,8 +2232,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2242,8 +2242,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2310,8 +2310,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2320,8 +2320,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2330,8 +2330,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2383,8 +2383,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2393,8 +2393,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2403,8 +2403,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2458,8 +2458,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2468,8 +2468,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2478,8 +2478,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2516,8 +2516,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2526,8 +2526,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2536,8 +2536,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2582,8 +2582,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2592,8 +2592,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2602,8 +2602,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2655,8 +2655,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2665,8 +2665,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2675,8 +2675,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2736,8 +2736,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2746,8 +2746,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2756,8 +2756,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2794,8 +2794,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2804,8 +2804,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2814,8 +2814,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2860,8 +2860,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2870,8 +2870,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2880,8 +2880,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2916,8 +2916,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2926,8 +2926,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2936,8 +2936,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -2974,8 +2974,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -2984,8 +2984,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -2994,8 +2994,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3040,8 +3040,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3050,8 +3050,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3060,8 +3060,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3104,8 +3104,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3114,8 +3114,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3124,8 +3124,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3195,8 +3195,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3205,8 +3205,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3215,8 +3215,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3286,8 +3286,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3296,8 +3296,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3306,8 +3306,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3366,8 +3366,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3376,8 +3376,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3386,8 +3386,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3446,8 +3446,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3456,8 +3456,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3466,8 +3466,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3512,8 +3512,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3522,8 +3522,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3532,8 +3532,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3578,8 +3578,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3588,8 +3588,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3598,8 +3598,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3654,8 +3654,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3664,8 +3664,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3674,8 +3674,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3720,8 +3720,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3730,8 +3730,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3740,8 +3740,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3801,8 +3801,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3811,8 +3811,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3821,8 +3821,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3865,8 +3865,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3875,8 +3875,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3885,8 +3885,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -3931,8 +3931,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -3941,8 +3941,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -3951,8 +3951,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4012,8 +4012,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4022,8 +4022,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4032,8 +4032,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4076,8 +4076,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4086,8 +4086,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4096,8 +4096,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4152,8 +4152,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4162,8 +4162,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4172,8 +4172,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4225,8 +4225,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4235,8 +4235,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4245,8 +4245,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4308,8 +4308,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4318,8 +4318,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4328,8 +4328,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4392,8 +4392,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4402,8 +4402,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4412,8 +4412,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4468,8 +4468,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4478,8 +4478,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4488,8 +4488,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4535,8 +4535,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4545,8 +4545,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4555,8 +4555,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4610,8 +4610,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4620,8 +4620,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4630,8 +4630,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4675,8 +4675,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4685,8 +4685,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4695,8 +4695,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4736,8 +4736,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4746,8 +4746,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4756,8 +4756,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4813,8 +4813,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4823,8 +4823,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4833,8 +4833,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4880,8 +4880,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4890,8 +4890,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4900,8 +4900,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -4961,8 +4961,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -4971,8 +4971,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -4981,8 +4981,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5040,8 +5040,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5050,8 +5050,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5060,8 +5060,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5108,8 +5108,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5118,8 +5118,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5128,8 +5128,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5184,8 +5184,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5194,8 +5194,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5204,8 +5204,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5250,8 +5250,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5260,8 +5260,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5270,8 +5270,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5326,8 +5326,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5336,8 +5336,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5346,8 +5346,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5394,8 +5394,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5404,8 +5404,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5414,8 +5414,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5604,6 +5604,14 @@ "post" : { "tags" : [ "attendee-api-controller" ], "operationId" : "scanBadge", + "parameters" : [ { + "name" : "Alfio-Operator", + "in" : "header", + "required" : false, + "schema" : { + "type" : "string" + } + } ], "requestBody" : { "content" : { "application/json" : { @@ -5625,8 +5633,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5635,8 +5643,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5645,8 +5653,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5672,6 +5680,14 @@ "post" : { "tags" : [ "attendee-api-controller" ], "operationId" : "scanBadges", + "parameters" : [ { + "name" : "Alfio-Operator", + "in" : "header", + "required" : false, + "schema" : { + "type" : "string" + } + } ], "requestBody" : { "content" : { "application/json" : { @@ -5696,8 +5712,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5706,8 +5722,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5716,8 +5732,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5765,8 +5781,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5775,8 +5791,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5785,8 +5801,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5842,8 +5858,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5852,8 +5868,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5862,8 +5878,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5927,8 +5943,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -5937,8 +5953,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -5947,8 +5963,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -5993,8 +6009,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6003,8 +6019,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6013,8 +6029,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6067,8 +6083,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6077,8 +6093,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6087,8 +6103,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6143,8 +6159,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6153,8 +6169,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6163,8 +6179,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6211,8 +6227,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6221,8 +6237,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6231,8 +6247,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6279,8 +6295,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6289,8 +6305,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6299,8 +6315,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6347,8 +6363,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6357,8 +6373,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6367,8 +6383,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6408,8 +6424,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6418,8 +6434,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6428,8 +6444,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6757,16 +6773,6 @@ } } }, - "400" : { - "description" : "Bad Request", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -6787,6 +6793,16 @@ } } }, + "400" : { + "description" : "Bad Request", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "200" : { "description" : "OK", "content" : { @@ -6846,8 +6862,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6856,8 +6872,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6866,8 +6882,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -6937,8 +6953,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -6947,8 +6963,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -6957,8 +6973,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7033,8 +7049,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7043,8 +7059,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7053,8 +7069,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7137,8 +7153,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7147,8 +7163,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7157,8 +7173,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7221,8 +7237,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7231,8 +7247,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7241,8 +7257,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7304,8 +7320,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7314,8 +7330,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7324,8 +7340,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7372,8 +7388,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7382,8 +7398,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7392,8 +7408,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7442,6 +7458,26 @@ } } }, + "405" : { + "description" : "Method Not Allowed", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, + "401" : { + "description" : "Unauthorized", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "400" : { "description" : "Bad Request", "content" : { @@ -7452,6 +7488,34 @@ } } }, + "200" : { + "description" : "OK" + } + } + }, + "delete" : { + "tags" : [ "promo-code-discount-api-controller" ], + "operationId" : "removePromoCode", + "parameters" : [ { + "name" : "promoCodeId", + "in" : "path", + "required" : true, + "schema" : { + "type" : "integer", + "format" : "int32" + } + } ], + "responses" : { + "500" : { + "description" : "Internal Server Error", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -7472,14 +7536,26 @@ } } }, + "400" : { + "description" : "Bad Request", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "200" : { "description" : "OK" } } - }, - "delete" : { + } + }, + "/admin/api/promo-code/{promoCodeId}/disable" : { + "post" : { "tags" : [ "promo-code-discount-api-controller" ], - "operationId" : "removePromoCode", + "operationId" : "disablePromoCode", "parameters" : [ { "name" : "promoCodeId", "in" : "path", @@ -7500,6 +7576,97 @@ } } }, + "405" : { + "description" : "Method Not Allowed", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, + "401" : { + "description" : "Unauthorized", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, + "400" : { + "description" : "Bad Request", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, + "200" : { + "description" : "OK" + } + } + } + }, + "/admin/api/overridable-template/{name}/{locale}/preview" : { + "post" : { + "tags" : [ "resource-controller" ], + "operationId" : "previewTemplate", + "parameters" : [ { + "name" : "name", + "in" : "path", + "required" : true, + "schema" : { + "type" : "string", + "enum" : [ "GOOGLE_ANALYTICS", "CONFIRMATION_EMAIL_FOR_ORGANIZER", "SEND_RESERVED_CODE", "CONFIRMATION_EMAIL", "CONFIRMATION_EMAIL_SUBSCRIPTION", "OFFLINE_RESERVATION_EXPIRED_EMAIL", "CHARGE_ATTEMPT_FAILED_EMAIL", "CHARGE_ATTEMPT_FAILED_EMAIL_FOR_ORGANIZER", "CREDIT_NOTE_ISSUED_EMAIL", "OFFLINE_RESERVATION_EXPIRING_EMAIL_FOR_ORGANIZER", "OFFLINE_PAYMENT_MATCHES_FOUND", "REMINDER_EMAIL", "REMINDER_TICKET_ADDITIONAL_INFO", "REMINDER_TICKETS_ASSIGNMENT_EMAIL", "TICKET_EMAIL", "TICKET_EMAIL_FOR_ONLINE_EVENT", "TICKET_HAS_CHANGED_OWNER", "TICKET_HAS_BEEN_CANCELLED", "TICKET_HAS_BEEN_CANCELLED_ADMIN", "TICKET_PDF", "RECEIPT_PDF", "INVOICE_PDF", "CREDIT_NOTE_PDF", "SUBSCRIPTION_PDF", "WAITING_QUEUE_JOINED", "WAITING_QUEUE_RESERVATION_EMAIL" ] + } + }, { + "name" : "locale", + "in" : "path", + "required" : true, + "schema" : { + "type" : "string" + } + }, { + "name" : "organizationId", + "in" : "query", + "required" : false, + "schema" : { + "type" : "integer", + "format" : "int32" + } + }, { + "name" : "eventId", + "in" : "query", + "required" : false, + "schema" : { + "type" : "integer", + "format" : "int32" + } + }, { + "name" : "subscriptionDescriptorId", + "in" : "query", + "required" : false, + "schema" : { + "type" : "string", + "format" : "uuid" + } + } ], + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/UploadBase64FileModification" + } + } + }, + "required" : true + }, + "responses" : { "400" : { "description" : "Bad Request", "content" : { @@ -7510,6 +7677,16 @@ } } }, + "500" : { + "description" : "Internal Server Error", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -7536,131 +7713,21 @@ } } }, - "/admin/api/promo-code/{promoCodeId}/disable" : { - "post" : { - "tags" : [ "promo-code-discount-api-controller" ], - "operationId" : "disablePromoCode", - "parameters" : [ { - "name" : "promoCodeId", - "in" : "path", - "required" : true, - "schema" : { - "type" : "integer", - "format" : "int32" - } - } ], - "responses" : { - "500" : { - "description" : "Internal Server Error", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, - "400" : { - "description" : "Bad Request", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, - "405" : { - "description" : "Method Not Allowed", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, - "401" : { - "description" : "Unauthorized", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, - "200" : { - "description" : "OK" - } - } - } - }, - "/admin/api/overridable-template/{name}/{locale}/preview" : { + "/admin/api/organizations/validate-slug" : { "post" : { - "tags" : [ "resource-controller" ], - "operationId" : "previewTemplate", - "parameters" : [ { - "name" : "name", - "in" : "path", - "required" : true, - "schema" : { - "type" : "string", - "enum" : [ "GOOGLE_ANALYTICS", "CONFIRMATION_EMAIL_FOR_ORGANIZER", "SEND_RESERVED_CODE", "CONFIRMATION_EMAIL", "CONFIRMATION_EMAIL_SUBSCRIPTION", "OFFLINE_RESERVATION_EXPIRED_EMAIL", "CHARGE_ATTEMPT_FAILED_EMAIL", "CHARGE_ATTEMPT_FAILED_EMAIL_FOR_ORGANIZER", "CREDIT_NOTE_ISSUED_EMAIL", "OFFLINE_RESERVATION_EXPIRING_EMAIL_FOR_ORGANIZER", "OFFLINE_PAYMENT_MATCHES_FOUND", "REMINDER_EMAIL", "REMINDER_TICKET_ADDITIONAL_INFO", "REMINDER_TICKETS_ASSIGNMENT_EMAIL", "TICKET_EMAIL", "TICKET_EMAIL_FOR_ONLINE_EVENT", "TICKET_HAS_CHANGED_OWNER", "TICKET_HAS_BEEN_CANCELLED", "TICKET_HAS_BEEN_CANCELLED_ADMIN", "TICKET_PDF", "RECEIPT_PDF", "INVOICE_PDF", "CREDIT_NOTE_PDF", "SUBSCRIPTION_PDF", "WAITING_QUEUE_JOINED", "WAITING_QUEUE_RESERVATION_EMAIL" ] - } - }, { - "name" : "locale", - "in" : "path", - "required" : true, - "schema" : { - "type" : "string" - } - }, { - "name" : "organizationId", - "in" : "query", - "required" : false, - "schema" : { - "type" : "integer", - "format" : "int32" - } - }, { - "name" : "eventId", - "in" : "query", - "required" : false, - "schema" : { - "type" : "integer", - "format" : "int32" - } - }, { - "name" : "subscriptionDescriptorId", - "in" : "query", - "required" : false, - "schema" : { - "type" : "string", - "format" : "uuid" - } - } ], + "tags" : [ "users-api-controller" ], + "operationId" : "validateSlug", "requestBody" : { "content" : { "application/json" : { "schema" : { - "$ref" : "#/components/schemas/UploadBase64FileModification" + "$ref" : "#/components/schemas/OrganizationModification" } } }, "required" : true }, "responses" : { - "400" : { - "description" : "Bad Request", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "500" : { "description" : "Internal Server Error", "content" : { @@ -7691,37 +7758,6 @@ } } }, - "200" : { - "description" : "OK" - } - } - } - }, - "/admin/api/organizations/validate-slug" : { - "post" : { - "tags" : [ "users-api-controller" ], - "operationId" : "validateSlug", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/OrganizationModification" - } - } - }, - "required" : true - }, - "responses" : { - "500" : { - "description" : "Internal Server Error", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "400" : { "description" : "Bad Request", "content" : { @@ -7732,26 +7768,6 @@ } } }, - "405" : { - "description" : "Method Not Allowed", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, - "401" : { - "description" : "Unauthorized", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "200" : { "description" : "OK", "content" : { @@ -7790,8 +7806,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7800,8 +7816,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7810,8 +7826,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7858,8 +7874,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7868,8 +7884,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7878,8 +7894,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -7926,8 +7942,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -7936,8 +7952,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -7946,8 +7962,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8001,8 +8017,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8011,8 +8027,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8021,8 +8037,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8084,8 +8100,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8094,8 +8110,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8104,8 +8120,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8158,8 +8174,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8168,8 +8184,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8178,8 +8194,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8228,8 +8244,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8238,8 +8254,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8248,8 +8264,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8546,8 +8562,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8556,8 +8572,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8566,8 +8582,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8604,8 +8620,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8614,8 +8630,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8624,8 +8640,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8673,8 +8689,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8683,8 +8699,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8693,8 +8709,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8746,8 +8762,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8756,8 +8772,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8766,8 +8782,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8827,8 +8843,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8837,8 +8853,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8847,8 +8863,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8898,8 +8914,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8908,8 +8924,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8918,8 +8934,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -8971,8 +8987,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -8981,8 +8997,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -8991,8 +9007,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9035,8 +9051,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9045,8 +9061,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9055,8 +9071,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9115,8 +9131,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9125,8 +9141,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9135,8 +9151,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9188,8 +9204,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9198,8 +9214,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9208,8 +9224,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9258,8 +9274,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9268,8 +9284,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9278,8 +9294,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9335,8 +9351,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9345,8 +9361,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9355,8 +9371,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9408,8 +9424,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9418,8 +9434,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9428,8 +9444,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9484,8 +9500,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9494,8 +9510,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9504,8 +9520,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9744,8 +9760,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9754,8 +9770,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9764,8 +9780,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9828,8 +9844,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9838,8 +9854,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9848,8 +9864,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -9918,8 +9934,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -9928,8 +9944,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -9938,8 +9954,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10002,8 +10018,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10012,8 +10028,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10022,8 +10038,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10067,8 +10083,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10077,8 +10093,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10087,8 +10103,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10142,8 +10158,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10152,8 +10168,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10162,8 +10178,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10217,8 +10233,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10227,8 +10243,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10237,8 +10253,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10286,8 +10302,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10296,8 +10312,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10306,8 +10322,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10357,8 +10373,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10367,8 +10383,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10377,8 +10393,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10435,8 +10451,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10445,8 +10461,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10455,8 +10471,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10512,8 +10528,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10522,8 +10538,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10532,8 +10548,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10580,8 +10596,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10590,8 +10606,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10600,8 +10616,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10648,8 +10664,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10658,8 +10674,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10668,8 +10684,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10732,8 +10748,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10742,8 +10758,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10752,8 +10768,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10799,8 +10815,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -10809,8 +10825,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -10819,8 +10835,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -10877,16 +10893,6 @@ } } }, - "400" : { - "description" : "Bad Request", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -10907,44 +10913,6 @@ } } }, - "200" : { - "description" : "OK", - "content" : { - "*/*" : { - "schema" : { - "$ref" : "#/components/schemas/AdditionalService" - } - } - } - } - } - } - }, - "/admin/api/configuration/update" : { - "post" : { - "tags" : [ "configuration-api-controller" ], - "operationId" : "updateConfiguration", - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "$ref" : "#/components/schemas/ConfigurationModification" - } - } - }, - "required" : true - }, - "responses" : { - "500" : { - "description" : "Internal Server Error", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "400" : { "description" : "Bad Request", "content" : { @@ -10955,32 +10923,12 @@ } } }, - "405" : { - "description" : "Method Not Allowed", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, - "401" : { - "description" : "Unauthorized", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "200" : { "description" : "OK", "content" : { "*/*" : { "schema" : { - "type" : "boolean" + "$ref" : "#/components/schemas/AdditionalService" } } } @@ -10988,21 +10936,15 @@ } } }, - "/admin/api/configuration/update-bulk" : { + "/admin/api/configuration/update" : { "post" : { "tags" : [ "configuration-api-controller" ], - "operationId" : "updateConfiguration_1", + "operationId" : "updateConfiguration", "requestBody" : { "content" : { "application/json" : { "schema" : { - "type" : "object", - "additionalProperties" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ConfigurationModification" - } - } + "$ref" : "#/components/schemas/ConfigurationModification" } } }, @@ -11019,16 +10961,6 @@ } } }, - "400" : { - "description" : "Bad Request", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -11049,59 +10981,6 @@ } } }, - "200" : { - "description" : "OK", - "content" : { - "*/*" : { - "schema" : { - "type" : "boolean" - } - } - } - } - } - } - }, - "/admin/api/configuration/organizations/{organizationId}/update" : { - "post" : { - "tags" : [ "configuration-api-controller" ], - "operationId" : "updateOrganizationConfiguration", - "parameters" : [ { - "name" : "organizationId", - "in" : "path", - "required" : true, - "schema" : { - "type" : "integer", - "format" : "int32" - } - } ], - "requestBody" : { - "content" : { - "application/json" : { - "schema" : { - "type" : "object", - "additionalProperties" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ConfigurationModification" - } - } - } - } - }, - "required" : true - }, - "responses" : { - "500" : { - "description" : "Internal Server Error", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "400" : { "description" : "Bad Request", "content" : { @@ -11112,26 +10991,6 @@ } } }, - "405" : { - "description" : "Method Not Allowed", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, - "401" : { - "description" : "Unauthorized", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "200" : { "description" : "OK", "content" : { @@ -11145,27 +11004,10 @@ } } }, - "/admin/api/configuration/organizations/{organizationId}/events/{eventId}/update" : { + "/admin/api/configuration/update-bulk" : { "post" : { "tags" : [ "configuration-api-controller" ], - "operationId" : "updateEventConfiguration", - "parameters" : [ { - "name" : "organizationId", - "in" : "path", - "required" : true, - "schema" : { - "type" : "integer", - "format" : "int32" - } - }, { - "name" : "eventId", - "in" : "path", - "required" : true, - "schema" : { - "type" : "integer", - "format" : "int32" - } - } ], + "operationId" : "updateConfiguration_1", "requestBody" : { "content" : { "application/json" : { @@ -11193,6 +11035,26 @@ } } }, + "405" : { + "description" : "Method Not Allowed", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, + "401" : { + "description" : "Unauthorized", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "400" : { "description" : "Bad Request", "content" : { @@ -11203,6 +11065,59 @@ } } }, + "200" : { + "description" : "OK", + "content" : { + "*/*" : { + "schema" : { + "type" : "boolean" + } + } + } + } + } + } + }, + "/admin/api/configuration/organizations/{organizationId}/update" : { + "post" : { + "tags" : [ "configuration-api-controller" ], + "operationId" : "updateOrganizationConfiguration", + "parameters" : [ { + "name" : "organizationId", + "in" : "path", + "required" : true, + "schema" : { + "type" : "integer", + "format" : "int32" + } + } ], + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "type" : "object", + "additionalProperties" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ConfigurationModification" + } + } + } + } + }, + "required" : true + }, + "responses" : { + "500" : { + "description" : "Internal Server Error", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -11223,6 +11138,16 @@ } } }, + "400" : { + "description" : "Bad Request", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "200" : { "description" : "OK", "content" : { @@ -11236,12 +11161,12 @@ } } }, - "/admin/api/configuration/events/{eventId}/categories/{categoryId}/update" : { + "/admin/api/configuration/organizations/{organizationId}/events/{eventId}/update" : { "post" : { "tags" : [ "configuration-api-controller" ], - "operationId" : "updateCategoryConfiguration", + "operationId" : "updateEventConfiguration", "parameters" : [ { - "name" : "categoryId", + "name" : "organizationId", "in" : "path", "required" : true, "schema" : { @@ -11284,6 +11209,26 @@ } } }, + "405" : { + "description" : "Method Not Allowed", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, + "401" : { + "description" : "Unauthorized", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "400" : { "description" : "Bad Request", "content" : { @@ -11294,6 +11239,67 @@ } } }, + "200" : { + "description" : "OK", + "content" : { + "*/*" : { + "schema" : { + "type" : "boolean" + } + } + } + } + } + } + }, + "/admin/api/configuration/events/{eventId}/categories/{categoryId}/update" : { + "post" : { + "tags" : [ "configuration-api-controller" ], + "operationId" : "updateCategoryConfiguration", + "parameters" : [ { + "name" : "categoryId", + "in" : "path", + "required" : true, + "schema" : { + "type" : "integer", + "format" : "int32" + } + }, { + "name" : "eventId", + "in" : "path", + "required" : true, + "schema" : { + "type" : "integer", + "format" : "int32" + } + } ], + "requestBody" : { + "content" : { + "application/json" : { + "schema" : { + "type" : "object", + "additionalProperties" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ConfigurationModification" + } + } + } + } + }, + "required" : true + }, + "responses" : { + "500" : { + "description" : "Internal Server Error", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -11314,6 +11320,16 @@ } } }, + "400" : { + "description" : "Bad Request", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "200" : { "description" : "OK", "content" : { @@ -11365,8 +11381,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11375,8 +11391,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11385,8 +11401,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -11455,8 +11471,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11465,8 +11481,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11475,8 +11491,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -11539,8 +11555,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11549,8 +11565,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11559,8 +11575,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -11623,8 +11639,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11633,8 +11649,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11643,8 +11659,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -11705,8 +11721,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11715,8 +11731,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11725,8 +11741,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -11779,8 +11795,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11789,8 +11805,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11799,8 +11815,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -11853,8 +11869,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11863,8 +11879,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11873,8 +11889,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -11927,8 +11943,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -11937,8 +11953,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -11947,8 +11963,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12007,8 +12023,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12017,8 +12033,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12027,8 +12043,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12095,8 +12111,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12105,8 +12121,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12115,8 +12131,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12168,8 +12184,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12178,8 +12194,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12188,8 +12204,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12241,8 +12257,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12251,8 +12267,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12261,8 +12277,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12331,8 +12347,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12341,8 +12357,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12351,8 +12367,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12425,8 +12441,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12435,8 +12451,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12445,8 +12461,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12496,8 +12512,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12506,8 +12522,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12516,8 +12532,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12564,8 +12580,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12574,8 +12590,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12584,8 +12600,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12646,8 +12662,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12656,8 +12672,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12666,8 +12682,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12704,8 +12720,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12714,8 +12730,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12724,8 +12740,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12765,8 +12781,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12775,8 +12791,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12785,8 +12801,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12831,8 +12847,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12841,8 +12857,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12851,8 +12867,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -12952,8 +12968,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -12962,8 +12978,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -12972,8 +12988,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13018,8 +13034,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13028,8 +13044,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13038,8 +13054,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13091,8 +13107,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13101,8 +13117,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13111,8 +13127,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13164,8 +13180,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13174,8 +13190,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13184,8 +13200,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13222,8 +13238,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13232,8 +13248,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13242,8 +13258,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13291,8 +13307,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13301,8 +13317,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13311,8 +13327,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13360,8 +13376,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13370,8 +13386,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13380,8 +13396,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13429,8 +13445,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13439,8 +13455,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13449,8 +13465,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13506,8 +13522,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13516,8 +13532,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13526,8 +13542,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13575,8 +13591,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13585,8 +13601,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13595,8 +13611,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13644,8 +13660,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13654,8 +13670,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13664,8 +13680,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13717,8 +13733,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13727,8 +13743,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13737,8 +13753,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13790,8 +13806,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13800,8 +13816,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13810,8 +13826,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13863,8 +13879,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13873,8 +13889,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13883,8 +13899,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -13943,8 +13959,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -13953,8 +13969,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -13963,8 +13979,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14016,8 +14032,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14026,8 +14042,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14036,8 +14052,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14082,8 +14098,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14092,8 +14108,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14102,8 +14118,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14148,8 +14164,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14158,8 +14174,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14168,8 +14184,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14221,8 +14237,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14231,8 +14247,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14241,8 +14257,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14287,8 +14303,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14297,8 +14313,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14307,8 +14323,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14353,8 +14369,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14363,8 +14379,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14373,8 +14389,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14434,8 +14450,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14444,8 +14460,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14454,8 +14470,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14507,8 +14523,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14517,8 +14533,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14527,8 +14543,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14587,8 +14603,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14597,8 +14613,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14607,8 +14623,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14638,8 +14654,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14648,8 +14664,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14658,8 +14674,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14712,8 +14728,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14722,8 +14738,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14732,8 +14748,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14773,8 +14789,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14783,8 +14799,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14793,8 +14809,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14843,8 +14859,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14853,8 +14869,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14863,8 +14879,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14909,8 +14925,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14919,8 +14935,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14929,8 +14945,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -14975,8 +14991,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -14985,8 +15001,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -14995,8 +15011,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15194,8 +15210,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15204,8 +15220,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15214,8 +15230,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15267,8 +15283,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15277,8 +15293,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15287,8 +15303,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15352,8 +15368,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15362,8 +15378,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15372,8 +15388,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15441,8 +15457,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15451,8 +15467,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15461,8 +15477,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15515,8 +15531,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15525,8 +15541,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15535,8 +15551,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15596,8 +15612,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15606,8 +15622,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15616,8 +15632,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15673,8 +15689,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15683,8 +15699,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15693,8 +15709,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15758,8 +15774,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15768,8 +15784,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15778,8 +15794,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15827,8 +15843,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15837,8 +15853,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15847,8 +15863,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15893,8 +15909,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15903,8 +15919,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15913,8 +15929,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -15951,8 +15967,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -15961,8 +15977,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -15971,8 +15987,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16012,8 +16028,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16022,8 +16038,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16032,8 +16048,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16073,8 +16089,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16083,8 +16099,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16093,8 +16109,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16134,8 +16150,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16144,8 +16160,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16154,8 +16170,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16204,8 +16220,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16214,8 +16230,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16224,8 +16240,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16269,8 +16285,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16279,8 +16295,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16289,8 +16305,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16327,8 +16343,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16337,8 +16353,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16347,8 +16363,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16385,8 +16401,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16395,8 +16411,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16405,8 +16421,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16446,8 +16462,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16456,8 +16472,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16466,8 +16482,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -16504,8 +16520,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -16514,8 +16530,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -16524,8 +16540,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17354,8 +17370,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17364,8 +17380,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17374,8 +17390,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17447,8 +17463,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17457,8 +17473,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17467,8 +17483,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17535,8 +17551,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17545,8 +17561,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17555,8 +17571,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17616,8 +17632,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17626,8 +17642,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17636,8 +17652,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17697,8 +17713,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17707,8 +17723,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17717,8 +17733,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17778,8 +17794,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17788,8 +17804,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17798,8 +17814,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17867,8 +17883,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17877,8 +17893,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17887,8 +17903,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -17947,8 +17963,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -17957,8 +17973,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -17967,8 +17983,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18028,8 +18044,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18038,8 +18054,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18048,8 +18064,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18128,8 +18144,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18138,8 +18154,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18148,8 +18164,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18202,8 +18218,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18212,8 +18228,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18222,8 +18238,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18280,8 +18296,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18290,8 +18306,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18300,8 +18316,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18350,8 +18366,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18360,8 +18376,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18370,8 +18386,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18418,8 +18434,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18428,8 +18444,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18438,8 +18454,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18608,8 +18624,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18618,8 +18634,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18628,8 +18644,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18678,8 +18694,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18688,8 +18704,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18698,8 +18714,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18753,8 +18769,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18763,8 +18779,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18773,8 +18789,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18823,8 +18839,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18833,8 +18849,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18843,8 +18859,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18893,8 +18909,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18903,8 +18919,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18913,8 +18929,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -18963,8 +18979,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -18973,8 +18989,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -18983,8 +18999,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19024,8 +19040,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19034,8 +19050,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19044,8 +19060,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19102,8 +19118,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19112,8 +19128,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19122,8 +19138,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19175,8 +19191,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19185,8 +19201,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19195,8 +19211,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19233,8 +19249,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19243,8 +19259,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19253,8 +19269,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19653,16 +19669,6 @@ } } }, - "400" : { - "description" : "Bad Request", - "content" : { - "*/*" : { - "schema" : { - "type" : "string" - } - } - } - }, "405" : { "description" : "Method Not Allowed", "content" : { @@ -19683,6 +19689,16 @@ } } }, + "400" : { + "description" : "Bad Request", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } + }, "200" : { "description" : "OK", "content" : { @@ -19726,8 +19742,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19736,8 +19752,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19746,8 +19762,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19806,8 +19822,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19816,8 +19832,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19826,8 +19842,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19870,8 +19886,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19880,8 +19896,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19890,8 +19906,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -19960,8 +19976,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -19970,8 +19986,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -19980,8 +19996,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20033,8 +20049,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20043,8 +20059,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20053,8 +20069,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20084,8 +20100,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20094,8 +20110,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20104,8 +20120,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20160,8 +20176,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20170,8 +20186,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20180,8 +20196,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20236,8 +20252,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20246,8 +20262,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20256,8 +20272,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20316,8 +20332,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20326,8 +20342,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20336,8 +20352,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20390,8 +20406,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20400,8 +20416,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20410,8 +20426,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20449,8 +20465,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20459,8 +20475,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20469,8 +20485,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20518,8 +20534,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20528,8 +20544,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20538,8 +20554,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20585,8 +20601,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20595,8 +20611,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20605,8 +20621,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20654,8 +20670,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20664,8 +20680,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20674,8 +20690,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20721,8 +20737,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20731,8 +20747,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20741,8 +20757,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20798,8 +20814,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20808,8 +20824,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20818,8 +20834,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20880,8 +20896,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20890,8 +20906,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20900,8 +20916,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -20954,8 +20970,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -20964,8 +20980,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -20974,8 +20990,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21023,8 +21039,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21033,8 +21049,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21043,8 +21059,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21082,8 +21098,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21092,8 +21108,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21102,8 +21118,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21149,8 +21165,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21159,8 +21175,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21169,8 +21185,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21208,8 +21224,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21218,8 +21234,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21228,8 +21244,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21285,8 +21301,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21295,8 +21311,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21305,8 +21321,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21355,8 +21371,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21365,8 +21381,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21375,8 +21391,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21425,8 +21441,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21435,8 +21451,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21445,8 +21461,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21498,8 +21514,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21508,8 +21524,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21518,8 +21534,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21568,8 +21584,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21578,8 +21594,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21588,8 +21604,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21626,8 +21642,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21636,8 +21652,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21646,8 +21662,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21687,8 +21703,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21697,8 +21713,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21707,8 +21723,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21746,8 +21762,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21756,8 +21772,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21766,8 +21782,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21815,8 +21831,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21825,8 +21841,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21835,8 +21851,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21892,8 +21908,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21902,8 +21918,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21912,8 +21928,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -21951,8 +21967,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -21961,8 +21977,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -21971,8 +21987,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22025,8 +22041,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22035,8 +22051,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22045,8 +22061,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22092,8 +22108,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22102,8 +22118,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22112,8 +22128,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22157,8 +22173,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22167,8 +22183,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22177,8 +22193,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22218,8 +22234,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22228,8 +22244,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22238,8 +22254,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22289,8 +22305,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22299,8 +22315,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22309,8 +22325,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22366,8 +22382,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22376,8 +22392,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22386,8 +22402,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22433,8 +22449,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22443,8 +22459,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22453,8 +22469,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22497,8 +22513,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22507,8 +22523,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22517,8 +22533,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22561,8 +22577,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22571,8 +22587,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22581,8 +22597,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22634,8 +22650,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22644,8 +22660,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22654,8 +22670,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22701,8 +22717,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22711,8 +22727,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22721,8 +22737,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22782,8 +22798,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22792,8 +22808,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22802,8 +22818,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22871,8 +22887,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22881,8 +22897,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22891,8 +22907,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -22942,8 +22958,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -22952,8 +22968,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -22962,8 +22978,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23001,8 +23017,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23011,8 +23027,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23021,8 +23037,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23062,8 +23078,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23072,8 +23088,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23082,8 +23098,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23136,8 +23152,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23146,8 +23162,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23156,8 +23172,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23206,8 +23222,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23216,8 +23232,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23226,8 +23242,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23281,8 +23297,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23291,8 +23307,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23301,8 +23317,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23367,8 +23383,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23377,8 +23393,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23387,8 +23403,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23433,8 +23449,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23443,8 +23459,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23453,8 +23469,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23500,8 +23516,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23510,8 +23526,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23520,8 +23536,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23551,8 +23567,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23561,8 +23577,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23571,8 +23587,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23628,8 +23644,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23638,8 +23654,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23648,8 +23664,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23701,8 +23717,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23711,8 +23727,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23721,8 +23737,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23774,8 +23790,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23784,8 +23800,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23794,8 +23810,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23840,8 +23856,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23850,8 +23866,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23860,8 +23876,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23906,8 +23922,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23916,8 +23932,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23926,8 +23942,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -23973,8 +23989,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -23983,8 +23999,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -23993,8 +24009,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24032,8 +24048,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24042,8 +24058,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24052,8 +24068,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24114,8 +24130,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24124,8 +24140,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24134,8 +24150,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24414,8 +24430,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24424,8 +24440,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24434,8 +24450,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24482,8 +24498,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24492,8 +24508,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24502,8 +24518,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24557,8 +24573,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24567,8 +24583,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24577,8 +24593,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24631,8 +24647,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24641,8 +24657,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24651,8 +24667,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24720,8 +24736,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24730,8 +24746,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24740,8 +24756,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24794,8 +24810,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24804,8 +24820,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24814,8 +24830,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24876,8 +24892,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24886,8 +24902,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24896,8 +24912,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -24943,8 +24959,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -24953,8 +24969,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -24963,8 +24979,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -25010,8 +25026,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -25020,8 +25036,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -25030,8 +25046,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -25088,8 +25104,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -25098,8 +25114,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -25108,8 +25124,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -25154,8 +25170,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -25164,8 +25180,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -25174,8 +25190,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -25229,8 +25245,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -25239,8 +25255,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -25249,8 +25265,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -25312,8 +25328,8 @@ } } }, - "400" : { - "description" : "Bad Request", + "405" : { + "description" : "Method Not Allowed", "content" : { "*/*" : { "schema" : { @@ -25322,8 +25338,8 @@ } } }, - "405" : { - "description" : "Method Not Allowed", + "401" : { + "description" : "Unauthorized", "content" : { "*/*" : { "schema" : { @@ -25332,8 +25348,8 @@ } } }, - "401" : { - "description" : "Unauthorized", + "400" : { + "description" : "Bad Request", "content" : { "*/*" : { "schema" : { @@ -25416,18 +25432,18 @@ "$ref" : "#/components/schemas/WarningMessage" } }, + "validationErrors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ErrorDescriptor" + } + }, "success" : { "type" : "boolean" }, "errorCount" : { "type" : "integer", "format" : "int32" - }, - "validationErrors" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ErrorDescriptor" - } } } }, @@ -25564,9 +25580,17 @@ "enabled" : { "type" : "boolean" }, + "validToEpochSecond" : { + "type" : "integer", + "format" : "int64" + }, "description" : { "type" : "string" }, + "validTo" : { + "type" : "string", + "format" : "date-time" + }, "username" : { "type" : "string" }, @@ -25578,14 +25602,6 @@ }, "emailAddress" : { "type" : "string" - }, - "validToEpochSecond" : { - "type" : "integer", - "format" : "int64" - }, - "validTo" : { - "type" : "string", - "format" : "date-time" } } }, @@ -25595,15 +25611,15 @@ "location" : { "type" : "string" }, - "description" : { - "type" : "string" - }, "arguments" : { "type" : "array", "items" : { "type" : "object" } }, + "description" : { + "type" : "string" + }, "code" : { "type" : "string" } @@ -25994,15 +26010,18 @@ "refundedAmount" : { "type" : "string" }, + "priceInCents" : { + "type" : "integer", + "format" : "int32" + }, "notYetPaid" : { "type" : "boolean" }, "vatExempt" : { "type" : "boolean" }, - "priceInCents" : { - "type" : "integer", - "format" : "int32" + "singleTicketOrder" : { + "type" : "boolean" }, "displayVat" : { "type" : "boolean" @@ -26022,9 +26041,6 @@ "ticketAmount" : { "type" : "integer", "format" : "int32" - }, - "singleTicketOrder" : { - "type" : "boolean" } } }, @@ -26377,15 +26393,15 @@ "type" : "string", "enum" : [ "NONE", "INCLUDED", "NOT_INCLUDED", "INCLUDED_EXEMPT", "NOT_INCLUDED_EXEMPT", "CUSTOM_INCLUDED_EXEMPT", "CUSTOM_NOT_INCLUDED_EXEMPT", "INCLUDED_NOT_CHARGED", "NOT_INCLUDED_NOT_CHARGED" ] }, - "assigned" : { - "type" : "boolean" - }, "checkedIn" : { "type" : "boolean" }, "formattedFinalPrice" : { "type" : "string" }, + "assigned" : { + "type" : "boolean" + }, "formattedNetPrice" : { "type" : "string" } @@ -26585,15 +26601,6 @@ "cancelled" : { "type" : "boolean" }, - "hasInvoiceNumber" : { - "type" : "boolean" - }, - "pendingOfflinePayment" : { - "type" : "boolean" - }, - "paidAmount" : { - "type" : "string" - }, "lineSplittedBillingAddress" : { "type" : "array", "items" : { @@ -26606,6 +26613,15 @@ "hasBeenPaid" : { "type" : "boolean" }, + "paidAmount" : { + "type" : "string" + }, + "hasInvoiceNumber" : { + "type" : "boolean" + }, + "pendingOfflinePayment" : { + "type" : "boolean" + }, "stuck" : { "type" : "boolean" }, @@ -26615,13 +26631,13 @@ "hasVatNumber" : { "type" : "boolean" }, - "finalPrice" : { + "taxablePrice" : { "type" : "number" }, - "netPrice" : { + "finalPrice" : { "type" : "number" }, - "taxablePrice" : { + "netPrice" : { "type" : "number" } } @@ -26714,10 +26730,48 @@ "currencyCode" : { "type" : "string" }, + "registrationTimestamp" : { + "type" : "string", + "format" : "date-time" + }, + "vatIncluded" : { + "type" : "boolean" + }, + "lineSplittedBillingAddress" : { + "type" : "array", + "items" : { + "type" : "string" + } + }, "status" : { "type" : "string", "enum" : [ "PENDING", "IN_PAYMENT", "EXTERNAL_PROCESSING_PAYMENT", "WAITING_EXTERNAL_CONFIRMATION", "OFFLINE_PAYMENT", "DEFERRED_OFFLINE_PAYMENT", "FINALIZING", "OFFLINE_FINALIZING", "COMPLETE", "STUCK", "CANCELLED", "CREDIT_NOTE_ISSUED" ] }, + "hasInvoiceOrReceiptDocument" : { + "type" : "boolean" + }, + "hasBeenPaid" : { + "type" : "boolean" + }, + "discount" : { + "$ref" : "#/components/schemas/PromoCodeDiscount" + }, + "optionalVatPercentage" : { + "type" : "number" + }, + "taxablePrice" : { + "type" : "number" + }, + "confirmationTimestamp" : { + "type" : "string", + "format" : "date-time" + }, + "paidAmount" : { + "type" : "string" + }, + "directAssignmentRequested" : { + "type" : "boolean" + }, "promoCodeDiscountId" : { "type" : "integer", "format" : "int32" @@ -26742,6 +26796,9 @@ "lastName" : { "type" : "string" }, + "email" : { + "type" : "string" + }, "srcPriceCts" : { "type" : "integer", "format" : "int32" @@ -26782,9 +26839,6 @@ "netPrice" : { "type" : "number" }, - "email" : { - "type" : "string" - }, "userLanguage" : { "type" : "string" }, @@ -26801,44 +26855,6 @@ "customerReference" : { "type" : "string" }, - "confirmationTimestamp" : { - "type" : "string", - "format" : "date-time" - }, - "registrationTimestamp" : { - "type" : "string", - "format" : "date-time" - }, - "discount" : { - "$ref" : "#/components/schemas/PromoCodeDiscount" - }, - "paidAmount" : { - "type" : "string" - }, - "lineSplittedBillingAddress" : { - "type" : "array", - "items" : { - "type" : "string" - } - }, - "directAssignmentRequested" : { - "type" : "boolean" - }, - "vatIncluded" : { - "type" : "boolean" - }, - "hasInvoiceOrReceiptDocument" : { - "type" : "boolean" - }, - "hasBeenPaid" : { - "type" : "boolean" - }, - "optionalVatPercentage" : { - "type" : "number" - }, - "taxablePrice" : { - "type" : "number" - }, "stuck" : { "type" : "boolean" }, @@ -27372,18 +27388,18 @@ "$ref" : "#/components/schemas/WarningMessage" } }, + "validationErrors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ErrorDescriptor" + } + }, "success" : { "type" : "boolean" }, "errorCount" : { "type" : "integer", "format" : "int32" - }, - "validationErrors" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ErrorDescriptor" - } } } }, @@ -27410,18 +27426,18 @@ "$ref" : "#/components/schemas/WarningMessage" } }, + "validationErrors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ErrorDescriptor" + } + }, "success" : { "type" : "boolean" }, "errorCount" : { "type" : "integer", "format" : "int32" - }, - "validationErrors" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ErrorDescriptor" - } } } }, @@ -27647,18 +27663,18 @@ "$ref" : "#/components/schemas/WarningMessage" } }, + "validationErrors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ErrorDescriptor" + } + }, "success" : { "type" : "boolean" }, "errorCount" : { "type" : "integer", "format" : "int32" - }, - "validationErrors" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ErrorDescriptor" - } } } }, @@ -28046,10 +28062,6 @@ "type" : "integer", "format" : "int32" }, - "timeUnit" : { - "type" : "string", - "enum" : [ "DAYS", "MONTHS", "YEARS" ] - }, "validityFrom" : { "type" : "string", "format" : "date-time" @@ -28061,6 +28073,10 @@ "numEntries" : { "type" : "integer", "format" : "int32" + }, + "timeUnit" : { + "type" : "string", + "enum" : [ "DAYS", "MONTHS", "YEARS" ] } } }, @@ -28607,23 +28623,36 @@ "type" : "string", "enum" : [ "FREE", "PENDING", "TO_BE_PAID", "ACQUIRED", "CANCELLED", "CHECKED_IN", "EXPIRED", "INVALIDATED", "RELEASED", "PRE_RESERVED" ] }, + "checkedIn" : { + "type" : "boolean" + }, + "formattedFinalPrice" : { + "type" : "string" + }, + "categoryName" : { + "type" : "string" + }, "tags" : { "type" : "array", "items" : { "type" : "string" } }, + "creation" : { + "type" : "string", + "format" : "date-time" + }, "assigned" : { "type" : "boolean" }, - "eventId" : { - "type" : "integer", - "format" : "int32" - }, "vatStatus" : { "type" : "string", "enum" : [ "NONE", "INCLUDED", "NOT_INCLUDED", "INCLUDED_EXEMPT", "NOT_INCLUDED_EXEMPT", "CUSTOM_INCLUDED_EXEMPT", "CUSTOM_NOT_INCLUDED_EXEMPT", "INCLUDED_NOT_CHARGED", "NOT_INCLUDED_NOT_CHARGED" ] }, + "eventId" : { + "type" : "integer", + "format" : "int32" + }, "firstName" : { "type" : "string" }, @@ -28634,6 +28663,9 @@ "type" : "string", "format" : "uuid" }, + "email" : { + "type" : "string" + }, "srcPriceCts" : { "type" : "integer", "format" : "int32" @@ -28650,9 +28682,6 @@ "type" : "integer", "format" : "int32" }, - "email" : { - "type" : "string" - }, "userLanguage" : { "type" : "string" }, @@ -28669,24 +28698,11 @@ "lockedAssignment" : { "type" : "boolean" }, - "checkedIn" : { - "type" : "boolean" - }, - "creation" : { - "type" : "string", - "format" : "date-time" - }, - "formattedFinalPrice" : { - "type" : "string" - }, "formattedNetPrice" : { "type" : "string" }, "extReference" : { "type" : "string" - }, - "categoryName" : { - "type" : "string" } } }, @@ -28782,14 +28798,14 @@ "$ref" : "#/components/schemas/WarningMessage" } }, - "success" : { - "type" : "boolean" - }, "validationErrors" : { "type" : "array", "items" : { "$ref" : "#/components/schemas/ErrorDescriptor" } + }, + "success" : { + "type" : "boolean" } } }, @@ -29251,13 +29267,13 @@ "supportsTicketsGeneration" : { "type" : "boolean" }, - "publicIdentifier" : { - "type" : "string" - }, "priceCts" : { "type" : "integer", "format" : "int32" }, + "publicIdentifier" : { + "type" : "string" + }, "validityFromModel" : { "$ref" : "#/components/schemas/DateTimeModification" }, @@ -29563,16 +29579,16 @@ "locationDescriptor" : { "$ref" : "#/components/schemas/LocationDescriptor" }, - "vatStatus" : { - "type" : "string", - "enum" : [ "NONE", "INCLUDED", "NOT_INCLUDED", "INCLUDED_EXEMPT", "NOT_INCLUDED_EXEMPT", "CUSTOM_INCLUDED_EXEMPT", "CUSTOM_NOT_INCLUDED_EXEMPT", "INCLUDED_NOT_CHARGED", "NOT_INCLUDED_NOT_CHARGED" ] + "online" : { + "type" : "boolean" }, "priceInCents" : { "type" : "integer", "format" : "int32" }, - "online" : { - "type" : "boolean" + "vatStatus" : { + "type" : "string", + "enum" : [ "NONE", "INCLUDED", "NOT_INCLUDED", "INCLUDED_EXEMPT", "NOT_INCLUDED_EXEMPT", "CUSTOM_INCLUDED_EXEMPT", "CUSTOM_NOT_INCLUDED_EXEMPT", "INCLUDED_NOT_CHARGED", "NOT_INCLUDED_NOT_CHARGED" ] } } }, @@ -29933,23 +29949,33 @@ "type" : "string", "enum" : [ "FREE", "PENDING", "TO_BE_PAID", "ACQUIRED", "CANCELLED", "CHECKED_IN", "EXPIRED", "INVALIDATED", "RELEASED", "PRE_RESERVED" ] }, + "checkedIn" : { + "type" : "boolean" + }, + "formattedFinalPrice" : { + "type" : "string" + }, "tags" : { "type" : "array", "items" : { "type" : "string" } }, + "creation" : { + "type" : "string", + "format" : "date-time" + }, "assigned" : { "type" : "boolean" }, - "eventId" : { - "type" : "integer", - "format" : "int32" - }, "vatStatus" : { "type" : "string", "enum" : [ "NONE", "INCLUDED", "NOT_INCLUDED", "INCLUDED_EXEMPT", "NOT_INCLUDED_EXEMPT", "CUSTOM_INCLUDED_EXEMPT", "CUSTOM_NOT_INCLUDED_EXEMPT", "INCLUDED_NOT_CHARGED", "NOT_INCLUDED_NOT_CHARGED" ] }, + "eventId" : { + "type" : "integer", + "format" : "int32" + }, "firstName" : { "type" : "string" }, @@ -29960,6 +29986,9 @@ "type" : "string", "format" : "uuid" }, + "email" : { + "type" : "string" + }, "srcPriceCts" : { "type" : "integer", "format" : "int32" @@ -29976,9 +30005,6 @@ "type" : "integer", "format" : "int32" }, - "email" : { - "type" : "string" - }, "userLanguage" : { "type" : "string" }, @@ -29995,16 +30021,6 @@ "lockedAssignment" : { "type" : "boolean" }, - "checkedIn" : { - "type" : "boolean" - }, - "creation" : { - "type" : "string", - "format" : "date-time" - }, - "formattedFinalPrice" : { - "type" : "string" - }, "formattedNetPrice" : { "type" : "string" }, @@ -30680,6 +30696,10 @@ "type" : "string" } }, + "validityType" : { + "type" : "string", + "enum" : [ "STANDARD", "CUSTOM", "NOT_SET" ] + }, "title" : { "type" : "object", "additionalProperties" : { @@ -30720,13 +30740,6 @@ "fileBlobId" : { "type" : "string" }, - "validityType" : { - "type" : "string", - "enum" : [ "STANDARD", "CUSTOM", "NOT_SET" ] - }, - "formattedPrice" : { - "type" : "string" - }, "assignmentConfiguration" : { "$ref" : "#/components/schemas/AssignmentConfiguration" }, @@ -30736,6 +30749,9 @@ "canApplySubscriptions" : { "type" : "boolean" }, + "formattedPrice" : { + "type" : "string" + }, "contentLanguages" : { "type" : "array", "items" : { @@ -30753,6 +30769,12 @@ "redirectUrl" : { "type" : "string" }, + "redirect" : { + "type" : "boolean" + }, + "gatewayIdOrNull" : { + "type" : "string" + }, "initialized" : { "type" : "boolean" }, @@ -30761,12 +30783,6 @@ }, "failed" : { "type" : "boolean" - }, - "redirect" : { - "type" : "boolean" - }, - "gatewayIdOrNull" : { - "type" : "string" } } }, @@ -31272,6 +31288,9 @@ "currency" : { "type" : "string" }, + "websiteUrl" : { + "type" : "string" + }, "shortName" : { "type" : "string" }, @@ -31299,9 +31318,6 @@ "fileBlobId" : { "type" : "string" }, - "websiteUrl" : { - "type" : "string" - }, "organizationName" : { "type" : "string" }, @@ -31367,18 +31383,18 @@ "$ref" : "#/components/schemas/WarningMessage" } }, + "validationErrors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ErrorDescriptor" + } + }, "success" : { "type" : "boolean" }, "errorCount" : { "type" : "integer", "format" : "int32" - }, - "validationErrors" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ErrorDescriptor" - } } } }, @@ -31584,18 +31600,18 @@ "$ref" : "#/components/schemas/WarningMessage" } }, + "validationErrors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ErrorDescriptor" + } + }, "success" : { "type" : "boolean" }, "errorCount" : { "type" : "integer", "format" : "int32" - }, - "validationErrors" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ErrorDescriptor" - } } } }, @@ -31650,18 +31666,18 @@ "$ref" : "#/components/schemas/WarningMessage" } }, + "validationErrors" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ErrorDescriptor" + } + }, "success" : { "type" : "boolean" }, "errorCount" : { "type" : "integer", "format" : "int32" - }, - "validationErrors" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ErrorDescriptor" - } } } }, @@ -31877,6 +31893,12 @@ "displayName" : { "type" : "string" }, + "privacyPolicyLinkOrNull" : { + "type" : "string" + }, + "freeOfCharge" : { + "type" : "boolean" + }, "publicIdentifier" : { "type" : "string" }, @@ -31897,12 +31919,6 @@ "type" : "string", "format" : "date-time" }, - "freeOfCharge" : { - "type" : "boolean" - }, - "privacyPolicyLinkOrNull" : { - "type" : "string" - }, "titleAsText" : { "type" : "object", "additionalProperties" : { @@ -32019,26 +32035,36 @@ "type" : "string", "enum" : [ "FREE", "PENDING", "TO_BE_PAID", "ACQUIRED", "CANCELLED", "CHECKED_IN", "EXPIRED", "INVALIDATED", "RELEASED", "PRE_RESERVED" ] }, + "checkedIn" : { + "type" : "boolean" + }, + "formattedFinalPrice" : { + "type" : "string" + }, "tags" : { "type" : "array", "items" : { "type" : "string" } }, + "creation" : { + "type" : "string", + "format" : "date-time" + }, "assigned" : { "type" : "boolean" }, "transaction" : { "$ref" : "#/components/schemas/Transaction" }, - "eventId" : { - "type" : "integer", - "format" : "int32" - }, "vatStatus" : { "type" : "string", "enum" : [ "NONE", "INCLUDED", "NOT_INCLUDED", "INCLUDED_EXEMPT", "NOT_INCLUDED_EXEMPT", "CUSTOM_INCLUDED_EXEMPT", "CUSTOM_NOT_INCLUDED_EXEMPT", "INCLUDED_NOT_CHARGED", "NOT_INCLUDED_NOT_CHARGED" ] }, + "eventId" : { + "type" : "integer", + "format" : "int32" + }, "firstName" : { "type" : "string" }, @@ -32049,6 +32075,9 @@ "type" : "string", "format" : "uuid" }, + "email" : { + "type" : "string" + }, "srcPriceCts" : { "type" : "integer", "format" : "int32" @@ -32068,9 +32097,6 @@ "type" : "integer", "format" : "int32" }, - "email" : { - "type" : "string" - }, "userLanguage" : { "type" : "string" }, @@ -32087,16 +32113,6 @@ "lockedAssignment" : { "type" : "boolean" }, - "checkedIn" : { - "type" : "boolean" - }, - "creation" : { - "type" : "string", - "format" : "date-time" - }, - "formattedFinalPrice" : { - "type" : "string" - }, "stuck" : { "type" : "boolean" }, @@ -32116,10 +32132,10 @@ "pending" : { "type" : "boolean" }, - "netPrice" : { + "taxablePrice" : { "type" : "number" }, - "taxablePrice" : { + "netPrice" : { "type" : "number" } } @@ -32176,14 +32192,14 @@ "type" : "string" } }, + "formattedAmount" : { + "type" : "string" + }, "complete" : { "type" : "boolean" }, "potentialMatch" : { "type" : "boolean" - }, - "formattedAmount" : { - "type" : "string" } } }, @@ -32263,27 +32279,43 @@ "currencyCode" : { "type" : "string" }, + "additionalFields" : { + "type" : "object", + "additionalProperties" : { + "type" : "string" + } + }, "status" : { "type" : "string", "enum" : [ "FREE", "PENDING", "TO_BE_PAID", "ACQUIRED", "CANCELLED", "CHECKED_IN", "EXPIRED", "INVALIDATED", "RELEASED", "PRE_RESERVED" ] }, + "checkedIn" : { + "type" : "boolean" + }, + "formattedFinalPrice" : { + "type" : "string" + }, "tags" : { "type" : "array", "items" : { "type" : "string" } }, + "creation" : { + "type" : "string", + "format" : "date-time" + }, "assigned" : { "type" : "boolean" }, - "eventId" : { - "type" : "integer", - "format" : "int32" - }, "vatStatus" : { "type" : "string", "enum" : [ "NONE", "INCLUDED", "NOT_INCLUDED", "INCLUDED_EXEMPT", "NOT_INCLUDED_EXEMPT", "CUSTOM_INCLUDED_EXEMPT", "CUSTOM_NOT_INCLUDED_EXEMPT", "INCLUDED_NOT_CHARGED", "NOT_INCLUDED_NOT_CHARGED" ] }, + "eventId" : { + "type" : "integer", + "format" : "int32" + }, "firstName" : { "type" : "string" }, @@ -32294,6 +32326,9 @@ "type" : "string", "format" : "uuid" }, + "email" : { + "type" : "string" + }, "srcPriceCts" : { "type" : "integer", "format" : "int32" @@ -32310,9 +32345,6 @@ "type" : "integer", "format" : "int32" }, - "email" : { - "type" : "string" - }, "userLanguage" : { "type" : "string" }, @@ -32329,27 +32361,11 @@ "lockedAssignment" : { "type" : "boolean" }, - "checkedIn" : { - "type" : "boolean" - }, - "creation" : { - "type" : "string", - "format" : "date-time" - }, - "formattedFinalPrice" : { - "type" : "string" - }, "formattedNetPrice" : { "type" : "string" }, "extReference" : { "type" : "string" - }, - "additionalFields" : { - "type" : "object", - "additionalProperties" : { - "type" : "string" - } } } }, @@ -32380,6 +32396,14 @@ "type" : "integer", "format" : "int32" }, + "requestTimestamp" : { + "type" : "string", + "format" : "date-time" + }, + "sentTimestamp" : { + "type" : "string", + "format" : "date-time" + }, "status" : { "type" : "string", "enum" : [ "WAITING", "RETRY", "IN_PROCESS", "SENT", "ERROR" ] @@ -32424,14 +32448,6 @@ "subscriptionDescriptorId" : { "type" : "string", "format" : "uuid" - }, - "requestTimestamp" : { - "type" : "string", - "format" : "date-time" - }, - "sentTimestamp" : { - "type" : "string", - "format" : "date-time" } } }, @@ -32536,9 +32552,17 @@ "enabled" : { "type" : "boolean" }, + "validToEpochSecond" : { + "type" : "integer", + "format" : "int64" + }, "description" : { "type" : "string" }, + "validTo" : { + "type" : "string", + "format" : "date-time" + }, "username" : { "type" : "string" }, @@ -32550,14 +32574,6 @@ }, "emailAddress" : { "type" : "string" - }, - "validToEpochSecond" : { - "type" : "integer", - "format" : "int64" - }, - "validTo" : { - "type" : "string", - "format" : "date-time" } } }, @@ -33064,9 +33080,29 @@ "dynamic" : { "type" : "boolean" }, + "expired" : { + "type" : "boolean" + }, + "emailReference" : { + "type" : "string" + }, "description" : { "type" : "string" }, + "currentlyValid" : { + "type" : "boolean" + }, + "categories" : { + "uniqueItems" : true, + "type" : "array", + "items" : { + "type" : "integer", + "format" : "int32" + } + }, + "fixedAmount" : { + "type" : "boolean" + }, "eventId" : { "type" : "integer", "format" : "int32" @@ -33106,26 +33142,6 @@ "type" : "integer", "format" : "int32" }, - "categories" : { - "uniqueItems" : true, - "type" : "array", - "items" : { - "type" : "integer", - "format" : "int32" - } - }, - "currentlyValid" : { - "type" : "boolean" - }, - "emailReference" : { - "type" : "string" - }, - "expired" : { - "type" : "boolean" - }, - "fixedAmount" : { - "type" : "boolean" - }, "formattedStart" : { "type" : "string" }, @@ -33416,13 +33432,28 @@ "displayName" : { "type" : "string" }, + "checkedInTickets" : { + "type" : "integer", + "format" : "int32" + }, + "expired" : { + "type" : "boolean" + }, "status" : { "type" : "string", "enum" : [ "DRAFT", "PUBLIC", "DISABLED" ] }, + "availableSeats" : { + "type" : "integer", + "format" : "int32" + }, "shortName" : { "type" : "string" }, + "notAllocatedTickets" : { + "type" : "integer", + "format" : "int32" + }, "organizationId" : { "type" : "integer", "format" : "int32" @@ -33437,24 +33468,24 @@ "fileBlobId" : { "type" : "string" }, - "notAllocatedTickets" : { - "type" : "integer", - "format" : "int32" + "formattedEnd" : { + "type" : "string" }, - "availableSeats" : { + "notSoldTickets" : { "type" : "integer", "format" : "int32" }, - "checkedInTickets" : { - "type" : "integer", - "format" : "int32" + "warningNeeded" : { + "type" : "boolean" }, - "expired" : { + "formattedBegin" : { + "type" : "string" + }, + "visibleForCurrentUser" : { "type" : "boolean" }, - "notSoldTickets" : { - "type" : "integer", - "format" : "int32" + "displayStatistics" : { + "type" : "boolean" }, "soldTickets" : { "type" : "integer", @@ -33471,21 +33502,6 @@ "releasedTickets" : { "type" : "integer", "format" : "int32" - }, - "formattedEnd" : { - "type" : "string" - }, - "warningNeeded" : { - "type" : "boolean" - }, - "visibleForCurrentUser" : { - "type" : "boolean" - }, - "formattedBegin" : { - "type" : "string" - }, - "displayStatistics" : { - "type" : "boolean" } } }, @@ -33504,11 +33520,9 @@ "timeZone" : { "type" : "string" }, - "url" : { - "type" : "string" - }, - "begin" : { - "type" : "string" + "apiVersion" : { + "type" : "integer", + "format" : "int32" }, "end" : { "type" : "string" @@ -33522,9 +33536,11 @@ "imageUrl" : { "type" : "string" }, - "apiVersion" : { - "type" : "integer", - "format" : "int32" + "url" : { + "type" : "string" + }, + "begin" : { + "type" : "string" }, "descriptions" : { "type" : "array", @@ -33784,6 +33800,9 @@ "inputType" : { "type" : "string" }, + "editable" : { + "type" : "boolean" + }, "order" : { "type" : "integer", "format" : "int32" @@ -33796,17 +33815,6 @@ "type" : "integer", "format" : "int32" }, - "required" : { - "type" : "boolean" - }, - "eventId" : { - "type" : "integer", - "format" : "int32" - }, - "additionalServiceId" : { - "type" : "integer", - "format" : "int32" - }, "countryField" : { "type" : "boolean" }, @@ -33816,9 +33824,17 @@ "type" : "string" } }, - "editable" : { + "required" : { "type" : "boolean" }, + "eventId" : { + "type" : "integer", + "format" : "int32" + }, + "additionalServiceId" : { + "type" : "integer", + "format" : "int32" + }, "disabledValues" : { "type" : "array", "items" : { @@ -33984,31 +34000,19 @@ "type" : "string", "enum" : [ "subscription", "event" ] }, - "title" : { - "type" : "object", - "additionalProperties" : { - "type" : "string" - } - }, - "publicIdentifier" : { - "type" : "string" - }, - "contentLanguages" : { - "type" : "array", - "items" : { - "$ref" : "#/components/schemas/ContentLanguage" - } - }, - "free" : { + "sameDay" : { "type" : "boolean" }, - "freeOfCharge" : { + "online" : { "type" : "boolean" }, - "online" : { + "privacyPolicyLinkOrNull" : { + "type" : "string" + }, + "fileBlobIdIsPresent" : { "type" : "boolean" }, - "sameDay" : { + "freeOfCharge" : { "type" : "boolean" }, "regularPrice" : { @@ -34017,9 +34021,6 @@ "imageIsPresent" : { "type" : "boolean" }, - "fileBlobIdIsPresent" : { - "type" : "boolean" - }, "multiplePaymentMethods" : { "type" : "boolean" }, @@ -34030,9 +34031,6 @@ "useFirstAndLastName" : { "type" : "boolean" }, - "privacyPolicyLinkOrNull" : { - "type" : "string" - }, "beginTimeZoneOffset" : { "type" : "integer", "format" : "int32" @@ -34044,6 +34042,24 @@ "isOnline" : { "type" : "boolean" }, + "title" : { + "type" : "object", + "additionalProperties" : { + "type" : "string" + } + }, + "publicIdentifier" : { + "type" : "string" + }, + "contentLanguages" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/ContentLanguage" + } + }, + "free" : { + "type" : "boolean" + }, "firstContentLanguage" : { "$ref" : "#/components/schemas/ContentLanguage" }