: null
- )
-}
+ );
+};
Errors.defaultProps = {
errorList: []
-}
+};
Errors.propTypes = {
errorList: PropTypes.object
-}
+};
-export default Errors
+export default Errors;
diff --git a/zmsadmin/js/page/availabilityDay/form/footerButtons.js b/zmsadmin/js/page/availabilityDay/form/footerButtons.js
index ca41c6c50..dc8fbccbd 100644
--- a/zmsadmin/js/page/availabilityDay/form/footerButtons.js
+++ b/zmsadmin/js/page/availabilityDay/form/footerButtons.js
@@ -1,27 +1,91 @@
import React from 'react'
import PropTypes from 'prop-types'
+import moment from 'moment'
const FooterButtons = (props) => {
- const { hasConflicts, stateChanged, data, onNew, onPublish, onAbort, hasSlotCountError } = props
+ const {
+ hasConflicts,
+ hasErrors,
+ stateChanged,
+ data,
+ onNew,
+ onPublish,
+ onAbort,
+ hasSlotCountError,
+ availabilitylist,
+ selectedDate
+ } = props;
+
+ const hasNewAvailabilities = availabilitylist?.some(
+ availability => availability?.tempId?.includes('__temp__')
+ );
+
+ const hasSplitInProgress = (() => {
+ let hasOriginWithId = false;
+ let hasExclusion = false;
+ let hasFuture = false;
+
+ availabilitylist?.forEach(availability => {
+ if (availability?.kind) {
+ if (availability.kind === 'origin' && availability.id) {
+ hasOriginWithId = true;
+ } else if (availability.kind === 'exclusion') {
+ hasExclusion = true;
+ } else if (availability.kind === 'future') {
+ hasFuture = true;
+ }
+ }
+ });
+
+ return hasOriginWithId && (hasExclusion || hasFuture);
+ })();
+
+ const isPastDate = moment.unix(selectedDate).isBefore(moment(), 'day');
+
return (
-
)
}
@@ -19,8 +20,8 @@ PageLayout.propTypes = {
timeTable: PropTypes.node,
accordion: PropTypes.node,
conflicts: PropTypes.node,
+ saveBar: PropTypes.node,
tabs: PropTypes.node,
- saveBar: PropTypes.node
}
export default PageLayout
diff --git a/zmsadmin/js/page/availabilityDay/layouts/tableBody.js b/zmsadmin/js/page/availabilityDay/layouts/tableBody.js
index ea8dab179..373c644df 100644
--- a/zmsadmin/js/page/availabilityDay/layouts/tableBody.js
+++ b/zmsadmin/js/page/availabilityDay/layouts/tableBody.js
@@ -1,31 +1,125 @@
import React from 'react'
import PropTypes from 'prop-types'
import moment from 'moment/min/moment-with-locales';
-import {weekDayList, availabilitySeries, availabilityTypes, repeat} from '../helpers'
+import { weekDayList, availabilitySeries, availabilityTypes, repeat } from '../helpers'
moment.locale('de')
const TableBodyLayout = (props) => {
- const { onDelete, onSelect, onAbort, availabilityList, data } = props;
+ const { onDelete, onSelect, onAbort, availabilityList, data, showAllDates } = props;
+ const [sortColumn, setSortColumn] = React.useState(null);
+ const [sortDirection, setSortDirection] = React.useState('asc');
+
+ const handleSort = (column) => {
+ if (sortColumn === column) {
+ setSortDirection(sortDirection === 'asc' ? 'desc' : 'asc');
+ } else {
+ setSortColumn(column);
+ setSortDirection('asc');
+ }
+ };
+
+ const getSortIcon = (column) => {
+ if (sortColumn !== column) {
+ return
;
+ };
+
+ const sortData = (data) => {
+ if (!sortColumn) return data;
+
+ return [...data].sort((a, b) => {
+ const multiplier = sortDirection === 'asc' ? 1 : -1;
+
+ switch (sortColumn) {
+ case 'weekday':
+ const aWeekDay = Object.keys(a.weekday).find(key => parseInt(a.weekday[key], 10) > 0) || '';
+ const bWeekDay = Object.keys(b.weekday).find(key => parseInt(b.weekday[key], 10) > 0) || '';
+ return multiplier * aWeekDay.localeCompare(bWeekDay);
+
+ case 'series':
+ const aRepeat = availabilitySeries.find(element => element.value == repeat(a.repeat))?.name || '';
+ const bRepeat = availabilitySeries.find(element => element.value == repeat(b.repeat))?.name || '';
+ return multiplier * aRepeat.localeCompare(bRepeat);
+
+ case 'startDate':
+ return multiplier * (a.startDate - b.startDate);
+
+ case 'endDate':
+ return multiplier * (a.endDate - b.endDate);
+
+ case 'time':
+ return multiplier * a.startTime.localeCompare(b.startTime);
+
+ case 'type':
+ const aType = availabilityTypes.find(element => element.value == a.type)?.name || '';
+ const bType = availabilityTypes.find(element => element.value == b.type)?.name || '';
+ return multiplier * aType.localeCompare(bType);
+
+ case 'slot':
+ return multiplier * (a.slotTimeInMinutes - b.slotTimeInMinutes);
+
+ case 'workstations':
+ const aTotal = a.workstationCount.intern + a.workstationCount.callcenter + a.workstationCount.public;
+ const bTotal = b.workstationCount.intern + b.workstationCount.callcenter + b.workstationCount.public;
+ return multiplier * (aTotal - bTotal);
+
+ case 'booking':
+ const aBooking = a.bookable.startInDays + a.bookable.endInDays;
+ const bBooking = b.bookable.startInDays + b.bookable.endInDays;
+ return multiplier * (aBooking - bBooking);
+
+ case 'description':
+ return multiplier * (a.description || '').localeCompare(b.description || '');
+
+ default:
+ return 0;
+ }
+ });
+ };
+
return (
@@ -33,10 +127,9 @@ const TableBodyLayout = (props) => {
}
/* eslint-disable complexity */
-const renderTable = (onDelete, onSelect, onAbort, availabilityList, data) => {
+const renderTable = (onDelete, onSelect, onAbort, availabilityList, data, showAllDates) => {
if (availabilityList.length > 0) {
return availabilityList.map((availability, key) => {
-
const startDate = moment(availability.startDate, 'X').format('DD.MM.YYYY');
const endDate = moment(availability.endDate, 'X').format('DD.MM.YYYY');
const startTime = moment(availability.startTime, 'h:mm:ss').format('HH:mm');
@@ -47,7 +140,7 @@ const renderTable = (onDelete, onSelect, onAbort, availabilityList, data) => {
const titleAbort = `Die aktuelle Beabeitung wird zurückgesetzt.`
const titleDisabled = `Diese Aktion ist während einer aktuellen Bearbeitung nicht möglich.`
- if (! availability.id && ! availability.tempId) {
+ if (!availability.id && !availability.tempId) {
availability.tempId = `spontaneous_ID_${key}`
}
@@ -68,7 +161,7 @@ const renderTable = (onDelete, onSelect, onAbort, availabilityList, data) => {
const availabilityWeekDayList = Object.keys(availability.weekday).
filter(key => parseInt(availability.weekday[key], 10) > 0)
-
+
const availabilityWeekDay = weekDayList.
filter(element => availabilityWeekDayList.includes(element.value)).map(item => item.label).join(', ')
@@ -79,70 +172,54 @@ const renderTable = (onDelete, onSelect, onAbort, availabilityList, data) => {
find(element => element.value == availability.type)
const disabled = (
- (availability.id && availability.__modified) ||
+ (availability.id && availability.__modified) ||
(availability.tempId && availability.__modified)
- );
+ );
const isSelected = (data && (
- (data.id && availability.id == data.id) ||
+ (data.id && availability.id == data.id) ||
(data.tempId && availability.tempId == data.tempId))
);
return (
-
)
})
@@ -154,7 +231,8 @@ TableBodyLayout.propTypes = {
data: PropTypes.object,
onSelect: PropTypes.func.isRequired,
onDelete: PropTypes.func.isRequired,
- onAbort: PropTypes.func.isRequired
+ onAbort: PropTypes.func.isRequired,
+ showAllDates: PropTypes.bool
}
export default TableBodyLayout
diff --git a/zmsadmin/js/page/availabilityDay/saveBar.js b/zmsadmin/js/page/availabilityDay/saveBar.js
index e5868d09c..a1a875749 100644
--- a/zmsadmin/js/page/availabilityDay/saveBar.js
+++ b/zmsadmin/js/page/availabilityDay/saveBar.js
@@ -1,25 +1,61 @@
-import React from 'react'
+import React, { useEffect, useState } from 'react'
import moment from 'moment'
-import PropTypes from 'prop-types'
+import PropTypes from 'prop-types'
const formatDate = date => {
const momentDate = moment(date)
return `${momentDate.format('DD.MM.YYYY')} um ${momentDate.format('HH:mm')} Uhr`
}
-
+
+export const SAVE_BAR_TTL = 5000;
+
const SaveBar = (props) => {
+ const [isVisible, setIsVisible] = useState(true)
+
+ useEffect(() => {
+ setIsVisible(true)
+ const timer = setTimeout(() => {
+ setIsVisible(false)
+ }, SAVE_BAR_TTL)
+ return () => clearTimeout(timer)
+ }, [props.lastSave])
+
+ if (!isVisible) return null
+
+ const getMessage = () => {
+ if (props.type === 'delete') {
+ return props.success
+ ?
- Öffnungszeiten gespeichert, {formatDate(props.lastSave)}
+
+ {getMessage()}
)
}
SaveBar.propTypes = {
lastSave: PropTypes.oneOfType([
- PropTypes.number, PropTypes.string
+ PropTypes.number,
+ PropTypes.string
]).isRequired,
- setSuccessRef: PropTypes.func
+ success: PropTypes.bool.isRequired,
+ setSuccessRef: PropTypes.func,
+ type: PropTypes.oneOf(['save', 'delete'])
+}
+
+SaveBar.defaultProps = {
+ type: 'save'
}
-export default SaveBar
+export default SaveBar
\ No newline at end of file
diff --git a/zmsadmin/js/page/availabilityDay/timetable/graphview.js b/zmsadmin/js/page/availabilityDay/timetable/graphview.js
index c8ccfde27..dcd32b890 100644
--- a/zmsadmin/js/page/availabilityDay/timetable/graphview.js
+++ b/zmsadmin/js/page/availabilityDay/timetable/graphview.js
@@ -30,7 +30,6 @@ const GraphView = (props) => {
headerRight={constants.headerRight(props.links, props.onNewAvailability)}
headerMiddle={constants.headerMiddle()}
body={graphBody}
- footer={constants.renderFooter()}
/>
>
diff --git a/zmsadmin/js/page/availabilityDay/timetable/index.js b/zmsadmin/js/page/availabilityDay/timetable/index.js
index 81ae07cff..e913ee8cb 100644
--- a/zmsadmin/js/page/availabilityDay/timetable/index.js
+++ b/zmsadmin/js/page/availabilityDay/timetable/index.js
@@ -34,6 +34,4 @@ export const renderAppointments = (items, maxWorkstationCount, onSelect) => {ret
export const renderOpenings = (items, onSelect) => {return items
.filter(item => item.type === "openinghours")
- .map((data, key) =>
)}
-
-export const renderFooter = () => {return
Zum Bearbeiten einer Öffnungszeit, bitte auf den entsprechenden blauen oder grünen Zeitstrahl klicken.}
\ No newline at end of file
+ .map((data, key) =>
)}
\ No newline at end of file
diff --git a/zmsadmin/js/page/availabilityDay/timetable/scopeview.js b/zmsadmin/js/page/availabilityDay/timetable/scopeview.js
new file mode 100644
index 000000000..267d83176
--- /dev/null
+++ b/zmsadmin/js/page/availabilityDay/timetable/scopeview.js
@@ -0,0 +1,48 @@
+import React from 'react'
+import PropTypes from 'prop-types'
+import moment from 'moment/min/moment-with-locales'
+moment.locale('de')
+
+import Board from '../layouts/board'
+import TableBodyLayout from '../layouts/tableBody'
+import calendarNavigation from '../widgets/calendarNavigation'
+import * as constants from './index.js'
+
+const ScopeView = (props) => {
+ const { onDelete, onSelect, onAbort, timestamp, availabilityList, data } = props
+ const titleTime = `Alle Öffnungszeiten für den Standort ${props.scope?.contact?.name || ''}`
+
+ const TableBody =
+
+ return (
+
+ )
+}
+
+ScopeView.propTypes = {
+ timestamp: PropTypes.number,
+ links: PropTypes.object,
+ scope: PropTypes.object,
+ data: PropTypes.object,
+ availabilityList: PropTypes.array,
+ onNewAvailability: PropTypes.func,
+ onDelete: PropTypes.func.isRequired,
+ onSelect: PropTypes.func.isRequired,
+ onAbort: PropTypes.func.isRequired
+}
+
+export default ScopeView
\ No newline at end of file
diff --git a/zmsadmin/routing.php b/zmsadmin/routing.php
index 40f703a36..ef4d1e399 100644
--- a/zmsadmin/routing.php
+++ b/zmsadmin/routing.php
@@ -15,73 +15,76 @@
* Availability
* -------------------------------------------------------------------------
*/
- \App::$slim->post('/availability/', \BO\Zmsadmin\AvailabilityUpdateList::class)
- ->setName("AvailabilityUpdateList");
-
- \App::$slim->post('/availability/slots/', \BO\Zmsadmin\Helper\AvailabilityCalcSlots::class)
- ->setName("AvailabilityCalcSlots");
-
- \App::$slim->get('/availability/delete/{id:\d{1,11}}/', \BO\Zmsadmin\AvailabilityDelete::class)
- ->setName("AvailabilityDelete");
-
- \App::$slim->post('/availability/save/{id:\d{1,11}}/', \BO\Zmsadmin\AvailabilityUpdateSingle::class)
- ->setName("AvailabilityUpdateSingle");
-
- \App::$slim->post('/availability/conflicts/', \BO\Zmsadmin\AvailabilityConflicts::class)
- ->setName("AvailabilityConflicts");
-
- /*
- * ---------------------------------------------------------------------------
- * Calldisplay
- * -------------------------------------------------------------------------
- */
- \App::$slim->get('/calldisplay/', \BO\Zmsadmin\Calldisplay::class)
- ->setName("calldisplay");
-
- /*
- * ---------------------------------------------------------------------------
- * Calendar
- * -------------------------------------------------------------------------
- */
- \App::$slim->get('/calendar/{year:\d\d\d\d}/{weeknr:\d{1,2}}/', \BO\Zmsadmin\CalendarWeek::class)
- ->setName("calendar_week");
-
-
- /*
- * ---------------------------------------------------------------------------
- * Config
- * -------------------------------------------------------------------------
- */
- \App::$slim->map(['GET','POST'], '/config/', \BO\Zmsadmin\ConfigInfo::class)
- ->setName("configinfo");
-
- \App::$slim->get('/mailtemplates/{scopeId:\d+}/', \BO\Zmsadmin\MailTemplates::class)
+\App::$slim->post('/availability/', \BO\Zmsadmin\AvailabilityUpdateList::class)
+ ->setName("AvailabilityUpdateList");
+
+\App::$slim->post('/availability/slots/', \BO\Zmsadmin\Helper\AvailabilityCalcSlots::class)
+ ->setName("AvailabilityCalcSlots");
+
+\App::$slim->get('/availability/delete/{id:\d{1,11}}/', \BO\Zmsadmin\AvailabilityDelete::class)
+ ->setName("AvailabilityDelete");
+
+\App::$slim->post('/availability/save/{id:\d{1,11}}/', \BO\Zmsadmin\AvailabilityUpdateSingle::class)
+ ->setName("AvailabilityUpdateSingle");
+
+\App::$slim->post('/availability/conflicts/', \BO\Zmsadmin\AvailabilityConflicts::class)
+ ->setName("AvailabilityConflicts");
+
+\App::$slim->get('/scope/{id:\d+}/availability/', \BO\Zmsadmin\AvailabilityListByScope::class)
+ ->setName("AvailabilityListByScope");
+
+/*
+ * ---------------------------------------------------------------------------
+ * Calldisplay
+ * -------------------------------------------------------------------------
+ */
+\App::$slim->get('/calldisplay/', \BO\Zmsadmin\Calldisplay::class)
+ ->setName("calldisplay");
+
+/*
+ * ---------------------------------------------------------------------------
+ * Calendar
+ * -------------------------------------------------------------------------
+ */
+\App::$slim->get('/calendar/{year:\d\d\d\d}/{weeknr:\d{1,2}}/', \BO\Zmsadmin\CalendarWeek::class)
+ ->setName("calendar_week");
+
+
+/*
+ * ---------------------------------------------------------------------------
+ * Config
+ * -------------------------------------------------------------------------
+ */
+\App::$slim->map(['GET', 'POST'], '/config/', \BO\Zmsadmin\ConfigInfo::class)
+ ->setName("configinfo");
+
+\App::$slim->get('/mailtemplates/{scopeId:\d+}/', \BO\Zmsadmin\MailTemplates::class)
->setName("mailtemplatesScope");
\App::$slim->get('/mailtemplates/', \BO\Zmsadmin\MailTemplates::class)
- ->setName("mailtemplates");
+ ->setName("mailtemplates");
+
+\App::$slim->post('/mailtemplates/{id:\d+}/', \BO\Zmsadmin\Helper\MailTemplateHandler::class)
+ ->setName("MailTemplateHandler");
- \App::$slim->post('/mailtemplates/{id:\d+}/', \BO\Zmsadmin\Helper\MailTemplateHandler::class)
- ->setName("MailTemplateHandler");
-
- \App::$slim->post('/mailtemplates/deleteCustomization/{id:\d+}/', \BO\Zmsadmin\Helper\MailTemplateDeleteCustomization::class)
- ->setName("MailTemplateDeleteCustomization");
+\App::$slim->post('/mailtemplates/deleteCustomization/{id:\d+}/', \BO\Zmsadmin\Helper\MailTemplateDeleteCustomization::class)
+ ->setName("MailTemplateDeleteCustomization");
- \App::$slim->post('/mailtemplates/createCustomization/{id:\d+}/', \BO\Zmsadmin\Helper\MailTemplateCreateCustomization::class)
- ->setName("MailTemplateCreateCustomization");
+\App::$slim->post('/mailtemplates/createCustomization/{id:\d+}/', \BO\Zmsadmin\Helper\MailTemplateCreateCustomization::class)
+ ->setName("MailTemplateCreateCustomization");
- \App::$slim->get('/mailtemplates/dummyPreview/{mailStatus}/', \BO\Zmsadmin\Helper\MailTemplateDummyPreview::class)
- ->setName("MailTemplateDummyPreview");
+\App::$slim->get('/mailtemplates/dummyPreview/{mailStatus}/', \BO\Zmsadmin\Helper\MailTemplateDummyPreview::class)
+ ->setName("MailTemplateDummyPreview");
- \App::$slim->post('/mailtemplates/previewEmail/{mailStatus}/{scopeId:\d+}/', \BO\Zmsadmin\Helper\MailTemplatePreviewMail::class)
- ->setName("MailTemplatePreviewMail");
-
+\App::$slim->post('/mailtemplates/previewEmail/{mailStatus}/{scopeId:\d+}/', \BO\Zmsadmin\Helper\MailTemplatePreviewMail::class)
+ ->setName("MailTemplatePreviewMail");
- /*
- * ---------------------------------------------------------------------------
- * Counter
- * -------------------------------------------------------------------------
- */
+
+/*
+ * ---------------------------------------------------------------------------
+ * Counter
+ * -------------------------------------------------------------------------
+ */
\App::$slim->get('/counter/', \BO\Zmsadmin\Counter::class)
->setName("counter");
@@ -96,8 +99,8 @@
* Dayoff
* -------------------------------------------------------------------------
*/
- \App::$slim->get('/dayoff/', \BO\Zmsadmin\Dayoff::class)
- ->setName("dayoff");
+\App::$slim->get('/dayoff/', \BO\Zmsadmin\Dayoff::class)
+ ->setName("dayoff");
\App::$slim->map(['GET', 'POST'], '/dayoff/{year:\d+}/', \BO\Zmsadmin\DayoffByYear::class)
->setName("dayoffByYear");
@@ -108,19 +111,19 @@
* Department
* -------------------------------------------------------------------------
*/
-\App::$slim->map(['GET','POST'], '/department/{id:\d+}/', \BO\Zmsadmin\Department::class)
+\App::$slim->map(['GET', 'POST'], '/department/{id:\d+}/', \BO\Zmsadmin\Department::class)
->setName("department");
-\App::$slim->map(['GET','POST'], '/department/{departmentId:\d+}/cluster/{clusterId:\d+}/', \BO\Zmsadmin\Cluster::class)
+\App::$slim->map(['GET', 'POST'], '/department/{departmentId:\d+}/cluster/{clusterId:\d+}/', \BO\Zmsadmin\Cluster::class)
->setName("cluster");
\App::$slim->get('/department/{departmentId:\d+}/cluster/{clusterId:\d+}/delete/', \BO\Zmsadmin\ClusterDelete::class)
->setName("clusterDelete");
-\App::$slim->map(['GET','POST'], '/department/{departmentId:\d+}/cluster/', \BO\Zmsadmin\DepartmentAddCluster::class)
+\App::$slim->map(['GET', 'POST'], '/department/{departmentId:\d+}/cluster/', \BO\Zmsadmin\DepartmentAddCluster::class)
->setName("departmentAddCluster");
-\App::$slim->map(['GET','POST'], '/department/{id:\d+}/scope/', \BO\Zmsadmin\DepartmentAddScope::class)
+\App::$slim->map(['GET', 'POST'], '/department/{id:\d+}/scope/', \BO\Zmsadmin\DepartmentAddScope::class)
->setName("departmentAddScope");
\App::$slim->get('/department/delete/{id:\d+}/', \BO\Zmsadmin\DepartmentDelete::class)
@@ -144,13 +147,13 @@
* Login
* -------------------------------------------------------------------------
*/
-\App::$slim->map(['GET','POST'], '/', \BO\Zmsadmin\Index::class)
+\App::$slim->map(['GET', 'POST'], '/', \BO\Zmsadmin\Index::class)
->setName("index");
\App::$slim->get('/workstation/quicklogin/', \BO\Zmsadmin\QuickLogin::class)
->setName("quickLogin");
-\App::$slim->map(['GET','POST'], '/oidc/', \BO\Zmsadmin\Oidc::class)
+\App::$slim->map(['GET', 'POST'], '/oidc/', \BO\Zmsadmin\Oidc::class)
->setName("oidc")->add(new \BO\Slim\Middleware\OAuthMiddleware('login'));
@@ -185,10 +188,10 @@
* Organisation
* -------------------------------------------------------------------------
*/
-\App::$slim->map(['GET','POST'], '/organisation/{id:\d+}/department/', \BO\Zmsadmin\OrganisationAddDepartment::class)
+\App::$slim->map(['GET', 'POST'], '/organisation/{id:\d+}/department/', \BO\Zmsadmin\OrganisationAddDepartment::class)
->setName("organisationAddDepartment");
-\App::$slim->map(['GET','POST'], '/organisation/{id:\d+}/', \BO\Zmsadmin\Organisation::class)
+\App::$slim->map(['GET', 'POST'], '/organisation/{id:\d+}/', \BO\Zmsadmin\Organisation::class)
->setName("organisation");
\App::$slim->get('/organisation/delete/{id:\d+}/', \BO\Zmsadmin\OrganisationDelete::class)
@@ -200,16 +203,16 @@
* Owner
* -------------------------------------------------------------------------
*/
-\App::$slim->map(['GET','POST'], '/owner/{id:\d+}/organisation/', \BO\Zmsadmin\OwnerAddOrganisation::class)
+\App::$slim->map(['GET', 'POST'], '/owner/{id:\d+}/organisation/', \BO\Zmsadmin\OwnerAddOrganisation::class)
->setName("ownerAddOrganisation");
\App::$slim->get('/owner/', '\BO\Zmsadmin\OwnerOverview')
->setName("owner_overview");
-\App::$slim->map(['GET','POST'], '/owner/{id:\d+}/', \BO\Zmsadmin\Owner::class)
+\App::$slim->map(['GET', 'POST'], '/owner/{id:\d+}/', \BO\Zmsadmin\Owner::class)
->setName("owner");
-\App::$slim->map(['GET','POST'], '/owner/add/', \BO\Zmsadmin\OwnerAdd::class)
+\App::$slim->map(['GET', 'POST'], '/owner/add/', \BO\Zmsadmin\OwnerAdd::class)
->setName("owner_add");
\App::$slim->get('/owner/delete/{id:\d+}/', \BO\Zmsadmin\OwnerDelete::class)
@@ -231,7 +234,7 @@
$group->get('/delete/{id:\d+}/', \BO\Zmsadmin\PickupDelete::class)
->setName("pickup_delete");
- $group->map(['GET','POST'], '/handheld/', \BO\Zmsadmin\PickupHandheld::class)
+ $group->map(['GET', 'POST'], '/handheld/', \BO\Zmsadmin\PickupHandheld::class)
->setName("pickup_handheld");
$group->get('/keyboard/', \BO\Zmsadmin\PickupKeyboard::class)
@@ -259,22 +262,22 @@
* -------------------------------------------------------------------------
*/
- \App::$slim->post('/process/reserve/', \BO\Zmsadmin\ProcessReserve::class)
- ->setName("processReserve");
+\App::$slim->post('/process/reserve/', \BO\Zmsadmin\ProcessReserve::class)
+ ->setName("processReserve");
\App::$slim->post('/process/change/', \BO\Zmsadmin\ProcessChange::class)
- ->setName("processChange");
+ ->setName("processChange");
- \App::$slim->map(['GET','POST'], '/process/queue/', \BO\Zmsadmin\ProcessQueue::class)
- ->setName("processQueue");
+\App::$slim->map(['GET', 'POST'], '/process/queue/', \BO\Zmsadmin\ProcessQueue::class)
+ ->setName("processQueue");
- \App::$slim->get('/process/queue/reset/', \BO\Zmsadmin\ProcessQueueReset::class)
- ->setName("processQueueReset");
+\App::$slim->get('/process/queue/reset/', \BO\Zmsadmin\ProcessQueueReset::class)
+ ->setName("processQueueReset");
- \App::$slim->post('/process/{id:\d+}/save/', \BO\Zmsadmin\ProcessSave::class)
- ->setName("processSave");
+\App::$slim->post('/process/{id:\d+}/save/', \BO\Zmsadmin\ProcessSave::class)
+ ->setName("processSave");
- \App::$slim->get('/process/{id:\d+}/delete/', \BO\Zmsadmin\ProcessDelete::class)
+\App::$slim->get('/process/{id:\d+}/delete/', \BO\Zmsadmin\ProcessDelete::class)
->setName("processDelete");
@@ -294,7 +297,7 @@
*/
\App::$slim->group('/scope', function (RouteCollectorProxy $group) {
- $group->map(['GET','POST'], '/{id:\d+}/', \BO\Zmsadmin\Scope::class)
+ $group->map(['GET', 'POST'], '/{id:\d+}/', \BO\Zmsadmin\Scope::class)
->setName("scope");
$group->get('/{id:\d+}/process/{date:\d\d\d\d-\d\d-\d\d}/', \BO\Zmsadmin\ScopeAppointmentsByDay::class)
@@ -315,7 +318,7 @@
$group->get('/{id:\d+}/availability/month/[{date:\d\d\d\d-\d\d}/]', \BO\Zmsadmin\ScopeAvailabilityMonth::class)
->setName("scopeAvailabilityMonth");
- $group->map(['GET','POST'], '/{id:\d+}/emergency/', \BO\Zmsadmin\ScopeEmergency::class)
+ $group->map(['GET', 'POST'], '/{id:\d+}/emergency/', \BO\Zmsadmin\ScopeEmergency::class)
->setName("scope_emergency");
$group->post('/{id:\d+}/emergency/respond/', \BO\Zmsadmin\ScopeEmergencyResponse::class)
@@ -352,7 +355,7 @@
\App::$slim->get('/source/', \BO\Zmsadmin\SourceIndex::class)
->setName("sourceindex");
-\App::$slim->map(['GET','POST'], '/source/{name}/', \BO\Zmsadmin\SourceEdit::class)
+\App::$slim->map(['GET', 'POST'], '/source/{name}/', \BO\Zmsadmin\SourceEdit::class)
->setName("sourceEdit");
\App::$slim->map(['POST'], '/source/delete/{loginname}/', \BO\Zmsadmin\SourceDelete::class)
@@ -370,7 +373,7 @@
\App::$slim->map(['GET', 'POST'], '/useraccount/add/', \BO\Zmsadmin\UseraccountAdd::class)
->setName("useraccountAdd");
-\App::$slim->map(['GET','POST'], '/useraccount/{loginname}/', \BO\Zmsadmin\UseraccountEdit::class)
+\App::$slim->map(['GET', 'POST'], '/useraccount/{loginname}/', \BO\Zmsadmin\UseraccountEdit::class)
->setName("useraccountEdit");
\App::$slim->get('/useraccount/delete/{loginname}/', \BO\Zmsadmin\UseraccountDelete::class)
@@ -382,7 +385,7 @@
* Workstation
* -------------------------------------------------------------------------
*/
-\App::$slim->map(['GET','POST'], '/workstation/select/', \BO\Zmsadmin\WorkstationSelect::class)
+\App::$slim->map(['GET', 'POST'], '/workstation/select/', \BO\Zmsadmin\WorkstationSelect::class)
->setName("workstationSelect");
\App::$slim->get('/workstation/status/', \BO\Zmsadmin\WorkstationStatus::class)
@@ -400,10 +403,10 @@
\App::$slim->get('/workstation/process/processing/', \BO\Zmsadmin\WorkstationProcessProcessing::class)
->setName("workstationProcessProcessing");
-\App::$slim->map(['GET','POST'], '/workstation/process/finished/', \BO\Zmsadmin\WorkstationProcessFinished::class)
+\App::$slim->map(['GET', 'POST'], '/workstation/process/finished/', \BO\Zmsadmin\WorkstationProcessFinished::class)
->setName("workstationProcessFinished");
-\App::$slim->map(['GET','POST'], '/workstation/process/redirect/', \BO\Zmsadmin\WorkstationProcessRedirect::class)
+\App::$slim->map(['GET', 'POST'], '/workstation/process/redirect/', \BO\Zmsadmin\WorkstationProcessRedirect::class)
->setName("workstationProcessRedirect");
\App::$slim->get('/workstation/call/{id:\d+}/', \BO\Zmsadmin\WorkstationProcessCall::class)
@@ -421,7 +424,7 @@
\App::$slim->get('/workstation/process/callbutton/', \BO\Zmsadmin\WorkstationProcess::class)
->setName("workstationProcessCallButton");
-\App::$slim->map(['GET','POST'], '/workstation/', \BO\Zmsadmin\Workstation::class)
+\App::$slim->map(['GET', 'POST'], '/workstation/', \BO\Zmsadmin\Workstation::class)
->setName("workstation");
/*
@@ -448,7 +451,7 @@
->setName("dialogHandler");
\App::$slim->get('/provider/{source}/', \BO\Zmsadmin\Helper\ProviderHandler::class)
-->setName("providerHandler");
+ ->setName("providerHandler");
/*
* ---------------------------------------------------------------------------
diff --git a/zmsadmin/src/Zmsadmin/AvailabilityConflicts.php b/zmsadmin/src/Zmsadmin/AvailabilityConflicts.php
index 5f5cc305a..57843b3ba 100644
--- a/zmsadmin/src/Zmsadmin/AvailabilityConflicts.php
+++ b/zmsadmin/src/Zmsadmin/AvailabilityConflicts.php
@@ -1,25 +1,18 @@
getAttribute('validator');
$input = $validator->getInput()->isJson()->assertValid()->getValue();
$data = static::getAvailabilityData($input);
- return \BO\Slim\Render::withJson(
- $response,
- $data
- );
+ return \BO\Slim\Render::withJson($response, $data);
}
protected static function getAvailabilityData($input)
{
- $conflictList = new \BO\Zmsentities\Collection\ProcessList();
+ self::validateInput($input);
+
$availabilityList = (new AvailabilityList())->addData($input['availabilityList']);
- $conflictedList = [];
+ $selectedDateTime = (new DateTimeImmutable($input['selectedDate']))
+ ->modify(\App::$now->format('H:i:s'));
+
+ [$hasExclusionSplit, $originId] = self::processAvailabilityKinds($availabilityList);
+
+ $conflictList = self::getConflictList(
+ $availabilityList,
+ $selectedDateTime,
+ $input,
+ $hasExclusionSplit,
+ $originId
+ );
+
+
+ return self::filterAndSortConflicts($conflictList, $selectedDateTime);
+ }
+
+ private static function validateInput($input)
+ {
+ if (!isset($input['availabilityList']) || !is_array($input['availabilityList'])) {
+ throw new BadRequestException('Missing or invalid availabilityList.');
+ }
+ if (empty($input['availabilityList']) || !isset($input['availabilityList'][0]['scope'])) {
+ throw new BadRequestException('Missing or invalid scope.');
+ }
+ if (!isset($input['selectedDate'])) {
+ throw new BadRequestException("'selectedDate' is required.");
+ }
+ }
+
+ private static function processAvailabilityKinds(AvailabilityList $availabilityList)
+ {
+ $hasExclusionSplit = false;
+ $originId = null;
+ foreach ($availabilityList as $availability) {
+ if (!isset($availability->kind)) {
+ continue;
+ }
+
+ if ($availability->kind === 'origin' && isset($availability->id)) {
+ $originId = $availability->id;
+ $hasExclusionSplit = true;
+ } elseif (in_array($availability->kind, ['origin', 'exclusion', 'future'])) {
+ $hasExclusionSplit = true;
+ }
+ }
+ return [$hasExclusionSplit, $originId];
+ }
+
+ private static function getConflictList(
+ AvailabilityList $availabilityList,
+ DateTimeImmutable $selectedDateTime,
+ array $input,
+ bool $hasExclusionSplit,
+ ?string $originId
+ ) {
+ $conflictList = new ProcessList();
+
+ $overlapConflicts = $availabilityList->checkForConflictsBetweenNewAvailabilities();
+ $conflictList->addList($overlapConflicts);
- $selectedDateTime = (new \DateTimeImmutable($input['selectedDate']))->modify(\App::$now->format('H:i:s'));
- $selectedAvailability = new Availability($input['selectedAvailability']);
- $startDateTime = ($selectedAvailability->getStartDateTime() >= \App::$now) ?
- $selectedAvailability->getStartDateTime() : $selectedDateTime;
- $endDateTime = ($input['selectedAvailability']) ?
- $selectedAvailability->getEndDateTime() : $selectedDateTime;
+ $scope = new Scope($input['availabilityList'][0]['scope']);
+ $existingAvailabilityList = self::getAvailabilityList($scope, $selectedDateTime);
- $availabilityList = $availabilityList->sortByCustomStringKey('endTime');
- $conflictList = $availabilityList->getConflicts($startDateTime, $endDateTime);
+ $filteredAvailabilityList = self::getFilteredAvailabilityList(
+ $availabilityList,
+ $existingAvailabilityList,
+ $hasExclusionSplit,
+ $originId
+ );
+
+ [$earliestStartDateTime, $latestEndDateTime] = $filteredAvailabilityList
+ ->getDateTimeRangeFromList();
+ $filteredAvailabilityList = $filteredAvailabilityList->sortByCustomStringKey('endTime');
+
+ $existingConflicts = $filteredAvailabilityList->checkForConflictsWithExistingAvailabilities(
+ $earliestStartDateTime,
+ $latestEndDateTime
+ );
+ $conflictList->addList($existingConflicts);
+
+ return $conflictList;
+ }
+
+ private static function getFilteredAvailabilityList(
+ AvailabilityList $availabilityList,
+ AvailabilityList $existingAvailabilityList,
+ bool $hasExclusionSplit,
+ ?string $originId
+ ) {
+ $filteredAvailabilityList = new AvailabilityList();
+
+ foreach ($availabilityList as $availability) {
+ $filteredAvailabilityList->addEntity($availability);
+ }
+
+ foreach ($existingAvailabilityList as $existingAvailability) {
+ if (
+ $hasExclusionSplit &&
+ isset($existingAvailability->id) &&
+ $existingAvailability->id === $originId
+ ) {
+ continue;
+ }
+
+ $filteredAvailabilityList->addEntity($existingAvailability);
+ }
+
+ return $filteredAvailabilityList;
+ }
+
+ private static function filterAndSortConflicts(ProcessList $conflictList, $selectedDate)
+ {
+ $selectedDate = new DateTimeImmutable($selectedDate->format('Y-m-d'));
+
+ $filteredConflictList = new ProcessList();
+ $conflictedList = [];
+ $processedConflicts = [];
+ $manualDayGrouping = [];
foreach ($conflictList as $conflict) {
- $availabilityId = ($conflict->getFirstAppointment()->getAvailability()->getId()) ?
- $conflict->getFirstAppointment()->getAvailability()->getId() :
- $conflict->getFirstAppointment()->getAvailability()->tempId;
- if (! in_array($availabilityId, $conflictedList)) {
- $conflictedList[] = $availabilityId;
+ if (!$conflict->getFirstAppointment() || !$conflict->getFirstAppointment()->getAvailability()) {
+ continue;
+ }
+
+ $appointment = $conflict->getFirstAppointment();
+ $availability = $appointment->getAvailability();
+ $availId = $availability->getId() ?: $availability->tempId;
+
+ if (preg_match_all('/\[([^,]+), (\d{2}:\d{2} - \d{2}:\d{2})/', $conflict->amendment, $matches)) {
+ $dateRanges = $matches[1];
+ $timeRanges = $matches[2];
+
+ $times = [$timeRanges[0], $timeRanges[1]];
+ sort($times);
+ $conflictKey = $availId . '_' . md5($dateRanges[0] . implode('', $times));
+
+ if (isset($processedConflicts[$conflictKey])) {
+ continue;
+ }
+
+ $conflictDate = clone $selectedDate;
+
+ $dateKey = $conflictDate->format('Y-m-d');
+
+ if (!isset($manualDayGrouping[$dateKey])) {
+ $manualDayGrouping[$dateKey] = [];
+ }
+
+ $appointments = iterator_to_array($conflict->appointments);
+ $manualDayGrouping[$dateKey][] = [
+ 'message' => $conflict->amendment,
+ 'appointments' => array_map(function ($appt) {
+ return [
+ 'startTime' => $appt->getStartTime()->format('H:i'),
+ 'endTime' => $appt->getEndTime()->format('H:i'),
+ 'availability' => $appt->getAvailability()->getId() ?: $appt->getAvailability()->tempId
+ ];
+ }, $appointments)
+ ];
+
+ $processedConflicts[$conflictKey] = true;
+ $filteredConflictList->addEntity($conflict);
+ self::addToConflictedList($conflictedList, $availability, null);
}
}
+ usort($conflictedList, [self::class, 'sortConflictedList']);
+
return [
- 'conflictList' => $conflictList->toConflictListByDay(),
+ 'conflictList' => $manualDayGrouping,
'conflictIdList' => (count($conflictedList)) ? $conflictedList : []
];
}
- /*
+ private static function addToConflictedList(&$conflictedList, $availability1, $availability2)
+ {
+ $availabilityId = $availability1->getId() ?: $availability1->tempId;
+ if (!in_array($availabilityId, $conflictedList)) {
+ $conflictedList[] = $availabilityId;
+ }
+
+ if ($availability2) {
+ $availabilityId2 = $availability2->getId() ?: $availability2->tempId;
+ if (!in_array($availabilityId2, $conflictedList)) {
+ $conflictedList[] = $availabilityId2;
+ }
+ }
+ }
+
+ /** @SuppressWarnings(PHPMD.UnusedPrivateMethod) */
+ private static function sortConflictedList($a, $b)
+ {
+ $aIsTemp = strpos($a, '__temp__') === 0;
+ $bIsTemp = strpos($b, '__temp__') === 0;
+
+ if ($aIsTemp && !$bIsTemp) {
+ return 1;
+ }
+ if (!$aIsTemp && $bIsTemp) {
+ return -1;
+ }
+ return strcmp($a, $b);
+ }
+
protected static function getAvailabilityList($scope, $dateTime)
{
try {
@@ -74,7 +242,7 @@ protected static function getAvailabilityList($scope, $dateTime)
'/scope/' . $scope->getId() . '/availability/',
[
'resolveReferences' => 0,
- 'startDate' => $dateTime->format('Y-m-d') //for skipping old availabilities
+ 'startDate' => $dateTime->format('Y-m-d')
]
)
->getCollection();
@@ -82,9 +250,8 @@ protected static function getAvailabilityList($scope, $dateTime)
if ($exception->template != 'BO\Zmsapi\Exception\Availability\AvailabilityNotFound') {
throw $exception;
}
- $availabilityList = new \BO\Zmsentities\Collection\AvailabilityList();
+ $availabilityList = new AvailabilityList();
}
return $availabilityList->withScope($scope);
}
- */
}
diff --git a/zmsadmin/src/Zmsadmin/AvailabilityListByScope.php b/zmsadmin/src/Zmsadmin/AvailabilityListByScope.php
new file mode 100644
index 000000000..d151a7c27
--- /dev/null
+++ b/zmsadmin/src/Zmsadmin/AvailabilityListByScope.php
@@ -0,0 +1,67 @@
+isNumber()->getValue();
+ $startDate = Validator::value($request->getQueryParams()['startDate'] ?? null)->isString()->getValue();
+ $endDate = Validator::value($request->getQueryParams()['endDate'] ?? null)->isString()->getValue();
+
+ try {
+ $availabilityList = \App::$http
+ ->readGetResult(
+ '/scope/' . $scopeId . '/availability/',
+ [
+ 'startDate' => $startDate,
+ 'endDate' => $endDate,
+ 'resolveReferences' => 2
+ ]
+ )
+ ->getCollection()
+ ->sortByCustomKey('startDate');
+
+ $data = $availabilityList->getArrayCopy();
+ if (!is_array($data) && is_object($data)) {
+ $data = array_values((array)$data);
+ }
+
+ return \BO\Slim\Render::withJson($response, [
+ 'meta' => [],
+ 'data' => $data
+ ]);
+ } catch (\BO\Zmsclient\Exception $exception) {
+ if ($exception->template == 'BO\Zmsapi\Exception\Availability\AvailabilityNotFound') {
+ return \BO\Slim\Render::withJson($response, [
+ 'meta' => [],
+ 'data' => []
+ ]);
+ }
+ throw $exception;
+ }
+ }
+}
diff --git a/zmsadmin/src/Zmsadmin/debug.log b/zmsadmin/src/Zmsadmin/debug.log
new file mode 100644
index 000000000..9340fe414
--- /dev/null
+++ b/zmsadmin/src/Zmsadmin/debug.log
@@ -0,0 +1,47857 @@
+[
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [04.03.2025 - 04.03.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741093200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741698000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742302800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742907600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1743508800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744113600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744718400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745323200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745928000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1746532800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747137600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747742400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748347200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748952000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1749556800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750161600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750766400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [04.03.2025 - 04.03.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741093200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741698000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742302800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742907600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1743508800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744113600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744718400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745323200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745928000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1746532800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747137600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747742400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748347200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748952000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1749556800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750161600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750766400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729168117,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [04.03.2025 - 04.03.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741093200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8348",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "0",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "0",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741042800,
+ "endDate": 1741042800,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Ausnahme zu Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [04.03.2025 - 04.03.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741093200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8348",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "0",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "0",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741042800,
+ "endDate": 1741042800,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Ausnahme zu Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741698000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1741698000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742302800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742302800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742907600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1742907600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1743508800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1743508800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744113600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744113600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744718400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1744718400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745323200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745323200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745928000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1745928000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1746532800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1746532800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747137600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747137600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747742400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1747742400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748347200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748347200,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748952000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1748952000,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1749556800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1749556800,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750161600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750161600,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750766400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ },
+ {
+ "$schema": "https://schema.berlin.de/queuemanagement/process.json",
+ "amendment": "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40]\nNeue Öffnungszeit: [05.03.2025 - 30.06.2025, 14:00 - 17:40]",
+ "customTextfield": "",
+ "appointments": [
+ {
+ "date": 1750766400,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "availability": {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "repeat": {
+ "afterWeeks": "1",
+ "weekOfMonth": "0"
+ },
+ "bookable": {
+ "startInDays": "0",
+ "endInDays": "90"
+ },
+ "workstationCount": {
+ "public": "2",
+ "callcenter": "0",
+ "intern": "6"
+ },
+ "lastChange": 1729167261,
+ "multipleSlotsAllowed": "1",
+ "slotTimeInMinutes": "5",
+ "startDate": 1741129200,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "$schema": "https://schema.berlin.de/queuemanagement/availability.json",
+ "description": "Fortführung der Terminserie Dienstag nachmittags",
+ "scope": {
+ "id": "392",
+ "source": "dldb",
+ "contact": {
+ "name": "Schnellschalter (KVR-II/3133)",
+ "street": "Ruppertstraße 19",
+ "email": "",
+ "country": "Germany"
+ },
+ "provider": {
+ "id": "10308621",
+ "source": "dldb",
+ "contact": {
+ "city": "Muenchen",
+ "country": "Germany",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "postalCode": "80337",
+ "region": "Muenchen",
+ "street": "Ruppertstraße",
+ "streetNumber": "19"
+ },
+ "link": "https://service.berlin.de/standort/10308621/",
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "data": {
+ "meta": {
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/locations/10308621",
+ "lastupdate": "2025-01-02T10:02:03",
+ "locale": "de",
+ "keywords": "Hauptabteilung II Bürgerangelegenheiten, Ausländerangelegenheiten",
+ "translated": true,
+ "hash": "",
+ "id": "10308621"
+ },
+ "services": [
+ {
+ "service": "1063741",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063741/locations/10308621",
+ "slots": "4",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 20
+ },
+ {
+ "service": "1063767",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/1063767/locations/10308621",
+ "slots": "6",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 30
+ },
+ {
+ "service": "10112606",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10112606/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10237047",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10237047/locations/10308621",
+ "slots": "3",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 15
+ },
+ {
+ "service": "10415057",
+ "hint": false,
+ "url": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "appointment": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/10415057/locations/10308621",
+ "slots": "2",
+ "external": false,
+ "allowed": true
+ },
+ "onlineprocessing": {
+ "link": "https://zms-demo.muenchen.de/buergeransicht/#/services/{serviceId}"
+ },
+ "duration": 10
+ }
+ ],
+ "address": {
+ "house_number": "19",
+ "city": "Muenchen",
+ "postal_code": "80337",
+ "street": "Ruppertstraße",
+ "hint": false
+ },
+ "id": "10308621",
+ "geo": {
+ "lat": "48.124681688670854",
+ "lon": "11.549865797138638"
+ },
+ "name": "Schnellschalter (KVR-II/3133)",
+ "displayName": "Schnellschalter",
+ "public": true,
+ "contact": {
+ "email": "schnellschalter.kvr@muenchen.de",
+ "fax": "",
+ "signed_mail": "0",
+ "signed_maillink": "",
+ "phone": "",
+ "webinfo": "",
+ "competence": ""
+ },
+ "slotTimeInMinutes": 5,
+ "forceSlotTimeUpdate": true,
+ "showAlternativeLocations": true
+ }
+ },
+ "hint": "",
+ "lastChange": 1735773486,
+ "shortName": "Schnellschalter",
+ "preferences": {
+ "appointment": {
+ "deallocationDuration": "5",
+ "endInDaysDefault": "90",
+ "multipleSlotsEnabled": "1",
+ "reservationDuration": "5",
+ "activationDuration": "15",
+ "startInDaysDefault": "0",
+ "notificationConfirmationEnabled": "0",
+ "notificationHeadsUpEnabled": "0"
+ },
+ "client": {
+ "alternateAppointmentUrl": "",
+ "amendmentActivated": "0",
+ "amendmentLabel": "",
+ "emailFrom": "no-reply@muenchen.de",
+ "emailRequired": "0",
+ "emailConfirmationActivated": "1",
+ "telephoneActivated": "0",
+ "telephoneRequired": 0,
+ "customTextfieldActivated": "0",
+ "customTextfieldRequired": 0,
+ "customTextfieldLabel": "Zusätzliche Bemerkungen",
+ "captchaActivatedRequired": "0",
+ "adminMailOnAppointment": 0,
+ "adminMailOnDeleted": 0,
+ "adminMailOnUpdated": 0,
+ "adminMailOnMailSent": 0
+ },
+ "notifications": {
+ "confirmationContent": "",
+ "headsUpContent": "",
+ "headsUpTime": "10"
+ },
+ "pickup": {
+ "alternateName": "Ausgabe",
+ "isDefault": "0"
+ },
+ "queue": {
+ "callCountMax": "1",
+ "callDisplayText": "Herzlich Willkommen",
+ "firstNumber": "1",
+ "lastNumber": "999",
+ "maxNumberContingent": "999",
+ "processingTimeAverage": "12",
+ "publishWaitingTimeEnabled": "0",
+ "statisticsEnabled": "0"
+ },
+ "survey": {
+ "emailContent": "",
+ "enabled": "0",
+ "label": ""
+ },
+ "ticketprinter": {
+ "buttonName": "Schnellschalter (KVR-II/3133)",
+ "confirmationEnabled": "0",
+ "deactivatedText": "",
+ "notificationsAmendmentEnabled": "0",
+ "notificationsEnabled": "0",
+ "notificationsDelay": "0"
+ },
+ "workstation": {
+ "emergencyEnabled": "0",
+ "emergencyRefreshInterval": "5"
+ }
+ },
+ "status": {
+ "emergency": {
+ "activated": "0"
+ },
+ "queue": {
+ "ghostWorkstationCount": "-1",
+ "givenNumberCount": "1",
+ "lastGivenNumber": "1",
+ "lastGivenNumberTimestamp": 1732489200
+ },
+ "ticketprinter": {
+ "deactivated": "1"
+ }
+ },
+ "dayoff": [
+ {
+ "id": "39",
+ "date": 1723672800,
+ "lastChange": 1650349625,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "40",
+ "date": 1727906400,
+ "lastChange": 1650349625,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "41",
+ "date": 1730415600,
+ "lastChange": 1650349625,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "42",
+ "date": 1734994800,
+ "lastChange": 1650349625,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "43",
+ "date": 1735081200,
+ "lastChange": 1650349625,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "44",
+ "date": 1735167600,
+ "lastChange": 1650349625,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "45",
+ "date": 1735599600,
+ "lastChange": 1650349625,
+ "name": "Sylvester"
+ },
+ {
+ "id": "46",
+ "date": 1735686000,
+ "lastChange": 1677137225,
+ "name": "Neujahr"
+ },
+ {
+ "id": "47",
+ "date": 1736118000,
+ "lastChange": 1677137225,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "48",
+ "date": 1744927200,
+ "lastChange": 1677137225,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "49",
+ "date": 1745186400,
+ "lastChange": 1677137225,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "50",
+ "date": 1746050400,
+ "lastChange": 1677137225,
+ "name": "1.Mai"
+ },
+ {
+ "id": "51",
+ "date": 1748469600,
+ "lastChange": 1677137225,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "52",
+ "date": 1749420000,
+ "lastChange": 1677137225,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "53",
+ "date": 1750284000,
+ "lastChange": 1677137225,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "54",
+ "date": 1755208800,
+ "lastChange": 1677137225,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "55",
+ "date": 1759442400,
+ "lastChange": 1677137225,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "56",
+ "date": 1761951600,
+ "lastChange": 1677137225,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "57",
+ "date": 1766530800,
+ "lastChange": 1677137225,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "58",
+ "date": 1766617200,
+ "lastChange": 1677137225,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "59",
+ "date": 1766703600,
+ "lastChange": 1677137225,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "60",
+ "date": 1767135600,
+ "lastChange": 1677137225,
+ "name": "Sylvester"
+ },
+ {
+ "id": "61",
+ "date": 1767222000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "62",
+ "date": 1767654000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "63",
+ "date": 1775167200,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "64",
+ "date": 1775426400,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "65",
+ "date": 1777586400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "66",
+ "date": 1778709600,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "67",
+ "date": 1779660000,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "68",
+ "date": 1780524000,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "69",
+ "date": 1786744800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "70",
+ "date": 1790978400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "71",
+ "date": 1793487600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "72",
+ "date": 1798066800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "73",
+ "date": 1798153200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "74",
+ "date": 1798239600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "75",
+ "date": 1798671600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "76",
+ "date": 1798758000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "77",
+ "date": 1799190000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "78",
+ "date": 1806015600,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "79",
+ "date": 1806271200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "80",
+ "date": 1809122400,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "81",
+ "date": 1809554400,
+ "lastChange": 1724733905,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "82",
+ "date": 1810504800,
+ "lastChange": 1724733905,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "83",
+ "date": 1811368800,
+ "lastChange": 1724733905,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "84",
+ "date": 1818280800,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "85",
+ "date": 1822514400,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "86",
+ "date": 1825023600,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "87",
+ "date": 1829602800,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "88",
+ "date": 1829689200,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "89",
+ "date": 1829775600,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "90",
+ "date": 1830207600,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ },
+ {
+ "id": "91",
+ "date": 1830294000,
+ "lastChange": 1724733905,
+ "name": "Neujahr"
+ },
+ {
+ "id": "92",
+ "date": 1830726000,
+ "lastChange": 1724733905,
+ "name": "Hl-Drei-König"
+ },
+ {
+ "id": "93",
+ "date": 1839276000,
+ "lastChange": 1724733905,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "94",
+ "date": 1839535200,
+ "lastChange": 1724733905,
+ "name": "Ostermontag"
+ },
+ {
+ "id": "95",
+ "date": 1840744800,
+ "lastChange": 1724733905,
+ "name": "1.Mai"
+ },
+ {
+ "id": "96",
+ "date": 1842818400,
+ "lastChange": 1652077625,
+ "name": "ChristiHimmelfahrt"
+ },
+ {
+ "id": "97",
+ "date": 1843768800,
+ "lastChange": 1653028025,
+ "name": "Pfingstmontag"
+ },
+ {
+ "id": "98",
+ "date": 1844632800,
+ "lastChange": 1653892025,
+ "name": "Fronleichnam"
+ },
+ {
+ "id": "99",
+ "date": 1849903200,
+ "lastChange": 1724733905,
+ "name": "MariaHimmelfahrt"
+ },
+ {
+ "id": "100",
+ "date": 1854136800,
+ "lastChange": 1724733905,
+ "name": "Tag d.Dt.Einheit"
+ },
+ {
+ "id": "101",
+ "date": 1856646000,
+ "lastChange": 1724733905,
+ "name": "Allerheiligen"
+ },
+ {
+ "id": "102",
+ "date": 1861225200,
+ "lastChange": 1724733905,
+ "name": "Heiligabend"
+ },
+ {
+ "id": "103",
+ "date": 1861311600,
+ "lastChange": 1724733905,
+ "name": "1.Weihnachtstag"
+ },
+ {
+ "id": "104",
+ "date": 1861398000,
+ "lastChange": 1724733905,
+ "name": "2.Weihnachtstag"
+ },
+ {
+ "id": "105",
+ "date": 1861830000,
+ "lastChange": 1724733905,
+ "name": "Sylvester"
+ }
+ ]
+ }
+ },
+ "slotCount": 0
+ }
+ ],
+ "apiclient": {
+ "shortname": "default"
+ },
+ "authKey": "",
+ "createIP": "",
+ "createTimestamp": 1738843615,
+ "id": 0,
+ "archiveId": 0,
+ "queue": {
+ "$schema": "https://schema.berlin.de/queuemanagement/queue.json",
+ "arrivalTime": 0,
+ "callCount": 0,
+ "callTime": 0,
+ "number": 0,
+ "waitingTimeEstimate": 0,
+ "waitingTimeOptimistic": 0,
+ "waitingTime": 0,
+ "wayTime": 0
+ },
+ "reminderTimestamp": 0,
+ "scope": {
+ "id": 0,
+ "source": "dldb"
+ },
+ "status": "conflict",
+ "lastChange": 1738843615
+ }
+]
diff --git a/zmsadmin/templates/exception/bo/zmsapi/exception/availability/availabilityaddfailed.twig b/zmsadmin/templates/exception/bo/zmsapi/exception/availability/availabilityaddfailed.twig
new file mode 100644
index 000000000..f41a04995
--- /dev/null
+++ b/zmsadmin/templates/exception/bo/zmsapi/exception/availability/availabilityaddfailed.twig
@@ -0,0 +1,7 @@
+{%
+ include "exception/bo/layout.twig" with {
+ "message":"Zu den angegebenen Daten konnte keine Öffnungszeit erstellt werden. Bitte überprüfen Sie Ihre Eingaben und korrigieren Sie diese gegebenenfalls.",
+ "title":"Konflikt: Öffnungszeit überschneidet sich mit einer bestehenden Zeit",
+ "reload":"1"
+ }
+%}
diff --git a/zmsadmin/templates/exception/bo/zmsapi/exception/availability/availabilityupdatefailed.twig b/zmsadmin/templates/exception/bo/zmsapi/exception/availability/availabilityupdatefailed.twig
new file mode 100644
index 000000000..32fa920d0
--- /dev/null
+++ b/zmsadmin/templates/exception/bo/zmsapi/exception/availability/availabilityupdatefailed.twig
@@ -0,0 +1,7 @@
+{%
+ include "exception/bo/layout.twig" with {
+ "message":"Zu den angegebenen Daten konnte keine Öffnungszeit geändert werden. Bitte überprüfen Sie Ihre Eingaben und korrigieren Sie diese gegebenenfalls.",
+ "title":"Konflikt: Öffnungszeit überschneidet sich mit einer bestehenden Zeit",
+ "reload":"1"
+ }
+%}
diff --git a/zmsadmin/templates/page/availabilityday.twig b/zmsadmin/templates/page/availabilityday.twig
index 0ab81557f..84acc7a34 100644
--- a/zmsadmin/templates/page/availabilityday.twig
+++ b/zmsadmin/templates/page/availabilityday.twig
@@ -11,8 +11,12 @@
{% set tabs = [
{name: "%s"|format("Graph-Ansicht")|trans, component: "graph"},
- {name: "%s"|format("Tabellen-Ansicht")|trans, component: "table"}
- ] %}
+ {name: "%s"|format("Tabellen-Ansicht")|trans, component: "table"},
+] %}
+
+{# Temporarily disabled:
+ {name: "%s"|format("Alle Öffnungszeiten")|trans, component: "scope"}
+#}
{% block headline %}
{{ headline1('Öffnungszeiten für den Standort ' ~ scope.name ~ ' ' ~ scope.shortName ) }}
diff --git a/zmsadmin/tests/Zmsadmin/AvailabilityConflictsTest.php b/zmsadmin/tests/Zmsadmin/AvailabilityConflictsTest.php
index 73f6d93eb..df8b65548 100644
--- a/zmsadmin/tests/Zmsadmin/AvailabilityConflictsTest.php
+++ b/zmsadmin/tests/Zmsadmin/AvailabilityConflictsTest.php
@@ -10,6 +10,21 @@ class AvailabilityConflictsTest extends Base
public function testRendering()
{
+
+ $this->setApiCalls(
+ [
+ [
+ 'function' => 'readGetResult',
+ 'url' => '/scope/141/availability/',
+ 'parameters' => [
+ 'resolveReferences' => 0,
+ 'startDate' => '2016-04-04'
+ ],
+ 'response' => $this->readFixture("GET_availability_68985.json")
+ ]
+ ]
+ );
+
$response = $this->render([], [
'__body' => '{
"availabilityList": [
@@ -49,6 +64,20 @@ public function testRendering()
"description": "",
"scope": {
"id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ],
"source": "dldb",
"contact": {
"name": "Bürgeramt Heerstraße",
@@ -512,6 +541,20 @@ public function testRendering()
"description": "",
"scope": {
"id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ],
"source": "dldb",
"contact": {
"name": "Bürgeramt Heerstraße",
@@ -976,6 +1019,20 @@ public function testRendering()
"description": "Kopie von 2016-01-12 - 2016-05-22",
"scope": {
"id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ],
"source": "dldb",
"contact": {
"name": "Bürgeramt Heerstraße",
@@ -1442,6 +1499,20 @@ public function testRendering()
"description": "Kopie von 2016-01-12 - 2016-05-22",
"scope": {
"id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ],
"source": "dldb",
"contact": {
"name": "Bürgeramt Heerstraße",
@@ -1872,16 +1943,543 @@ public function testRendering()
}
}'
], [], 'POST');
- $this->assertStringContainsString('Zwei \u00d6ffnungszeiten sind gleich', (string)$response->getBody());
- $this->assertStringContainsString('2016-04-04', (string)$response->getBody());
- $this->assertStringContainsString('2016-04-11', (string)$response->getBody());
- $this->assertStringContainsString('2016-04-18', (string)$response->getBody());
- $this->assertStringContainsString('2016-04-25', (string)$response->getBody());
- $this->assertStringContainsString('2016-05-02', (string)$response->getBody());
- $this->assertStringContainsString('2016-05-09', (string)$response->getBody());
- $this->assertStringNotContainsString('2016-05-16', (string)$response->getBody());
- $this->assertStringContainsString('"conflictIdList":["81871","__temp__0"]', (string)$response->getBody());
-
+ $expectedResponse = [
+ 'conflictList' => [
+ '2016-04-04' => [
+ [
+ 'message' => "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [12.01.2016 - 22.05.2016, 08:00 - 15:50, Wochentag(e): Montag]\nNeue Öffnungszeit: [12.01.2016 - 22.05.2016, 08:00 - 15:50, Wochentag(e): Montag]",
+ 'appointments' => [
+ [
+ 'startTime' => '08:00',
+ 'endTime' => '08:00',
+ 'availability' => '81871'
+ ]
+ ]
+ ],
+ [
+ 'message' => "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [12.01.2016 - 22.05.2016, 08:00 - 15:50, Wochentag(e): Montag]\nNeue Öffnungszeit: [12.01.2016 - 22.05.2016, 08:00 - 15:50, Wochentag(e): Montag]",
+ 'appointments' => [
+ [
+ 'startTime' => '08:00',
+ 'endTime' => '08:00',
+ 'availability' => '__temp__0'
+ ]
+ ]
+ ]
+ ]
+ ],
+ 'conflictIdList' => ['81871', '__temp__0']
+ ];
+ $this->assertEquals($expectedResponse, json_decode((string)$response->getBody(), true));
+ $this->assertEquals(200, $response->getStatusCode());
+ }
+
+ public function testDifferentWeekdaysConflict()
+ {
+ $this->setApiCalls([
+ [
+ 'function' => 'readGetResult',
+ 'url' => '/scope/141/availability/',
+ 'parameters' => [
+ 'resolveReferences' => 0,
+ 'startDate' => '2016-04-04'
+ ],
+ 'response' => $this->readFixture("GET_availability_68985.json")
+ ]
+ ]);
+
+ $response = $this->render([], [
+ '__body' => '{
+ "availabilityList": [
+ {
+ "id": "81871",
+ "weekday": {"monday": "2"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "08:00:00",
+ "endTime": "15:50:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ }
+ },
+ {
+ "id": null,
+ "weekday": {"tuesday": "4"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "08:00:00",
+ "endTime": "15:50:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ },
+ "tempId": "__temp__0"
+ }
+ ],
+ "selectedDate": "2016-04-04"
+ }'
+ ], [], 'POST');
+
+ // Updated assertions to expect no conflicts
+ $this->assertStringContainsString('"conflictList":[]', (string) $response->getBody());
+ $this->assertStringContainsString('"conflictIdList":[]', (string) $response->getBody());
+ $this->assertEquals(200, $response->getStatusCode());
+ }
+
+ public function testDifferentTypesNoConflict()
+ {
+ $this->setApiCalls([
+ [
+ 'function' => 'readGetResult',
+ 'url' => '/scope/141/availability/',
+ 'parameters' => [
+ 'resolveReferences' => 0,
+ 'startDate' => '2016-04-04'
+ ],
+ 'response' => $this->readFixture("GET_availability_68985.json")
+ ]
+ ]);
+
+ $response = $this->render([], [
+ '__body' => '{
+ "availabilityList": [
+ {
+ "id": "81871",
+ "weekday": {"monday": "2"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "08:00:00",
+ "endTime": "15:50:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ }
+ },
+ {
+ "id": null,
+ "weekday": {"monday": "2"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "08:00:00",
+ "endTime": "15:50:00",
+ "type": "openinghours",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ },
+ "tempId": "__temp__0"
+ }
+ ],
+ "selectedDate": "2016-04-04"
+ }'
+ ], [], 'POST');
+
+ $this->assertStringNotContainsString('Konflikt', (string) $response->getBody());
+ $this->assertStringContainsString('"conflictIdList":[]', (string) $response->getBody());
+ $this->assertEquals(200, $response->getStatusCode());
+ }
+
+ public function testInvalidInput()
+ {
+ $this->expectException(\BO\Zmsadmin\Exception\BadRequest::class);
+
+ $response = $this->render([], [
+ '__body' => '{
+ "availabilityList": [
+ {
+ "id": "81871",
+ "weekday": {"monday": "2"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "08:00:00",
+ "endTime": "15:50:00",
+ "type": "appointment"
+ }
+ ]
+ }'
+ ], [], 'POST');
+ }
+ public function testMultipleConflicts()
+ {
+ $this->setApiCalls([
+ [
+ 'function' => 'readGetResult',
+ 'url' => '/scope/141/availability/',
+ 'parameters' => [
+ 'resolveReferences' => 0,
+ 'startDate' => '2016-04-04'
+ ],
+ 'response' => $this->readFixture("GET_availability_68985.json")
+ ]
+ ]);
+
+ $response = $this->render([], [
+ '__body' => '{
+ "availabilityList": [
+ {
+ "id": null,
+ "weekday": {"monday": "2"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "08:00:00",
+ "endTime": "15:50:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ },
+ "tempId": "__temp__2"
+ },
+ {
+ "id": null,
+ "weekday": {"monday": "2"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "08:00:00",
+ "endTime": "15:50:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ },
+ "tempId": "__temp__0"
+ },
+ {
+ "id": null,
+ "weekday": {"monday": "2"},
+ "startDate": 1452553200,
+ "endDate": 1463868000,
+ "startTime": "09:00:00",
+ "endTime": "16:50:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ },
+ "tempId": "__temp__1"
+ }
+ ],
+ "selectedDate": "2016-04-04"
+ }'
+ ], [], 'POST');
+
+ $this->assertStringContainsString('Konflikt', (string) $response->getBody());
+ $this->assertStringContainsString('"conflictIdList":["__temp__0","__temp__1","__temp__2"]', (string) $response->getBody());
+ $this->assertEquals(200, $response->getStatusCode());
+ }
+
+ public function testConflictsWhileOnAWednesday()
+ {
+ $this->setApiCalls([
+ [
+ 'function' => 'readGetResult',
+ 'url' => '/scope/141/availability/',
+ 'parameters' => [
+ 'resolveReferences' => 0,
+ 'startDate' => '2025-02-05' // A Wednesday
+ ],
+ 'response' => $this->readFixture("GET_availability_68985.json")
+ ]
+ ]);
+
+ $response = $this->render([], [
+ '__body' => '{
+ "selectedDate": "2025-02-05",
+ "availabilityList": [
+ {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ }
+ },
+ {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ }
+ }
+ ]
+ }'
+ ], [], 'POST');
+
+ $expectedResponse = [
+ "conflictList" => [
+ "2025-02-05" => [
+ [
+ "message" => "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40, Wochentag(e): Dienstag]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40, Wochentag(e): Dienstag]",
+ "appointments" => [
+ [
+ "startTime" => "14:00",
+ "endTime" => "14:00",
+ "availability" => "8336"
+ ]
+ ]
+ ],
+ [
+ "message" => "Konflikt: Zwei Öffnungszeiten sind gleich.\nBestehende Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40, Wochentag(e): Dienstag]\nNeue Öffnungszeit: [22.10.2024 - 30.06.2025, 14:00 - 17:40, Wochentag(e): Dienstag]",
+ "appointments" => [
+ [
+ "startTime" => "14:00",
+ "endTime" => "14:00",
+ "availability" => "8351"
+ ]
+ ]
+ ]
+ ]
+ ],
+ "conflictIdList" => [
+ "8336",
+ "8351"
+ ]
+ ];
+
+ $this->assertEquals($expectedResponse, json_decode((string) $response->getBody(), true));
+ $this->assertEquals(200, $response->getStatusCode());
+ }
+
+ public function testConflictsOnTuesday()
+ {
+ $this->setApiCalls([
+ [
+ 'function' => 'readGetResult',
+ 'url' => '/scope/141/availability/',
+ 'parameters' => [
+ 'resolveReferences' => 0,
+ 'startDate' => '2025-02-04' // A Tuesday
+ ],
+ 'response' => $this->readFixture("GET_availability_68985.json")
+ ]
+ ]);
+
+ $response = $this->render([], [
+ '__body' => '{
+ "selectedDate": "2025-02-04",
+ "availabilityList": [
+ {
+ "id": "8336",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ }
+ },
+ {
+ "id": "8351",
+ "weekday": {
+ "sunday": "0",
+ "monday": "0",
+ "tuesday": "4",
+ "wednesday": "0",
+ "thursday": "0",
+ "friday": "0",
+ "saturday": "0"
+ },
+ "startDate": 1729548000,
+ "endDate": 1751234400,
+ "startTime": "14:00:00",
+ "endTime": "17:40:00",
+ "type": "appointment",
+ "scope": {
+ "id": "141",
+ "dayoff": [
+ {
+ "id": "302",
+ "date": 1458860400,
+ "lastChange": 1566566540,
+ "name": "Karfreitag"
+ },
+ {
+ "id": "303",
+ "date": 1459116000,
+ "lastChange": 1566566540,
+ "name": "Ostermontag"
+ }
+ ]
+ }
+ }
+ ]
+ }'
+ ], [], 'POST');
+
+ $this->assertStringContainsString('"conflictIdList":["8336","8351"]', (string) $response->getBody());
+ $this->assertNotEquals('[]', (string) $response->getBody());
$this->assertEquals(200, $response->getStatusCode());
}
}
diff --git a/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_Resolved2.json b/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_Resolved2.json
index b95c114be..07a644304 100644
--- a/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_Resolved2.json
+++ b/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_Resolved2.json
@@ -150,7 +150,7 @@
"link": "https://service.berlin.de/standort/122217/",
"name": "Bürgeramt Heerstraße",
"data": {
- "slotTimeInMinutes": 12
+ "slotTimeInMinutes": 10
}
},
"hint": "Nr. wird zum Termin aufgerufen",
diff --git a/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_scope_141_multipleSlotsEnabled.json b/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_scope_141_multipleSlotsEnabled.json
index c9aa48a83..9314e2918 100644
--- a/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_scope_141_multipleSlotsEnabled.json
+++ b/zmsadmin/tests/Zmsadmin/fixtures/GET_Workstation_scope_141_multipleSlotsEnabled.json
@@ -141,7 +141,7 @@
"link": "https://service.berlin.de/standort/122217/",
"name": "Bürgeramt Heerstraße",
"data": {
- "slotTimeInMinutes": 12
+ "slotTimeInMinutes": 10
}
},
"hint": "Nr. wird zum Termin aufgerufen",
diff --git a/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141.json b/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141.json
index 445d3827d..e70fa4bd8 100644
--- a/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141.json
+++ b/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141.json
@@ -97,7 +97,7 @@
"link": "https://service.berlin.de/standort/122217/",
"name": "Bürgeramt Heerstraße",
"data": {
- "slotTimeInMinutes": 12
+ "slotTimeInMinutes": 10
}
},
"dayoff": [
diff --git a/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141_multipleSlotsEnabled.json b/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141_multipleSlotsEnabled.json
index 7111c8306..d1f029e42 100644
--- a/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141_multipleSlotsEnabled.json
+++ b/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_141_multipleSlotsEnabled.json
@@ -95,7 +95,7 @@
"link": "https://service.berlin.de/standort/122217/",
"name": "Bürgeramt Heerstraße",
"data": {
- "slotTimeInMinutes": 12
+ "slotTimeInMinutes": 10
}
},
"dayoff": [
diff --git a/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_list.json b/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_list.json
index 9945e4e0e..490275fe2 100644
--- a/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_list.json
+++ b/zmsadmin/tests/Zmsadmin/fixtures/GET_scope_list.json
@@ -98,7 +98,7 @@
"link": "https://service.berlin.de/standort/122217/",
"name": "Bürgeramt Heerstraße",
"data": {
- "slotTimeInMinutes": 12
+ "slotTimeInMinutes": 10
}
},
"dayoff": [
diff --git a/zmsapi/src/Zmsapi/AvailabilityAdd.php b/zmsapi/src/Zmsapi/AvailabilityAdd.php
index 201b5cfe8..4ae07d347 100644
--- a/zmsapi/src/Zmsapi/AvailabilityAdd.php
+++ b/zmsapi/src/Zmsapi/AvailabilityAdd.php
@@ -17,60 +17,332 @@
use Psr\Http\Message\ResponseInterface;
use BO\Zmsapi\AvailabilitySlotsUpdate;
use BO\Zmsapi\Exception\BadRequest as BadRequestException;
-use BO\Zmsapi\Exception\Availability\AvailabilityUpdateFailed as UpdateFailedException;
+use BO\Zmsapi\Exception\Availability\AvailabilityAddFailed;
/**
* @SuppressWarnings(Coupling)
*/
class AvailabilityAdd extends BaseController
{
- /**
- * @SuppressWarnings(Param)
- * @return ResponseInterface
- */
public function readResponse(
RequestInterface $request,
ResponseInterface $response,
array $args
): ResponseInterface {
(new Helper\User($request))->checkRights();
+ $input = $this->validateAndGetInput();
+ $resolveReferences = $this->getResolveReferences();
+
+ DbConnection::getWriteConnection();
+
+ $result = $this->processAvailabilityAddition($input, $resolveReferences);
+
+ return $this->generateResponse($request, $response, $result);
+ }
+
+ private function validateAndGetInput(): array
+ {
$input = Validator::input()->isJson()->assertValid()->getValue();
- if (! $input || count($input) === 0) {
+ if (!$input || count($input) === 0) {
throw new BadRequestException();
}
- $collection = new Collection();
- DbConnection::getWriteConnection();
- foreach ($input as $item) {
+
+ $this->validateInputStructure($input);
+ return $input;
+ }
+
+ private function validateInputStructure(array $input): void
+ {
+ if (!isset($input['availabilityList']) || !is_array($input['availabilityList'])) {
+ throw new BadRequestException('Missing or invalid availabilityList.');
+ }
+ if (empty($input['availabilityList']) || !isset($input['availabilityList'][0]['scope'])) {
+ throw new BadRequestException('Missing or invalid scope.');
+ }
+ if (!isset($input['selectedDate'])) {
+ throw new BadRequestException("'selectedDate' is required.");
+ }
+ }
+
+ private function getResolveReferences(): int
+ {
+ return Validator::param('resolveReferences')->isNumber()->setDefault(2)->getValue();
+ }
+
+ private function processAvailabilityAddition(array $input, int $resolveReferences): Collection
+ {
+ $newCollection = $this->createNewCollection($input['availabilityList']);
+ $selectedDate = $this->createSelectedDateTime($input['selectedDate']);
+ $scope = new \BO\Zmsentities\Scope($input['availabilityList'][0]['scope']);
+
+ $this->validateAndCheckConflicts($newCollection, $scope, $selectedDate);
+
+ return $this->updateEntities($newCollection, $resolveReferences);
+ }
+
+ private function createNewCollection(array $availabilityList): Collection
+ {
+ $newCollection = new Collection();
+ foreach ($availabilityList as $item) {
$entity = new Entity($item);
$entity->testValid();
- $updatedEntity = $this->writeEntityUpdate($entity);
+ $newCollection->addEntity($entity);
+ }
+ return $newCollection;
+ }
+
+ private function createSelectedDateTime(string $selectedDate): \DateTimeImmutable
+ {
+ return \DateTimeImmutable::createFromFormat(
+ 'Y-m-d H:i:s',
+ $selectedDate . ' 00:00:00'
+ );
+ }
+
+ private function validateAndCheckConflicts(
+ Collection $newCollection,
+ \BO\Zmsentities\Scope $scope,
+ \DateTimeImmutable $selectedDate
+ ): void {
+ $conflicts = $this->getInitialConflicts($newCollection);
+ $mergedCollection = $this->getMergedCollection($scope);
+
+ $this->validateNewAvailabilities($newCollection, $mergedCollection, $selectedDate);
+
+ $filteredCollection = $this->getFilteredCollection($mergedCollection);
+ $this->checkExistingConflicts($conflicts, $filteredCollection);
+
+ $weekday = (int)$selectedDate->format('N');
+ $filteredConflicts = $this->filterConflictsByWeekday(
+ $conflicts,
+ $filteredCollection,
+ $weekday
+ );
+
+ if ($filteredConflicts->count() > 0) {
+ throw new AvailabilityAddFailed();
+ }
+ }
+
+ private function getInitialConflicts(Collection $newCollection): \BO\Zmsentities\Collection\ProcessList
+ {
+ $conflicts = new \BO\Zmsentities\Collection\ProcessList();
+ $newVsNewConflicts = $newCollection->checkForConflictsBetweenNewAvailabilities();
+ $conflicts->addList($newVsNewConflicts);
+ return $conflicts;
+ }
+
+ private function getMergedCollection(\BO\Zmsentities\Scope $scope): Collection
+ {
+ $availabilityRepo = new AvailabilityRepository();
+ $existingCollection = $availabilityRepo->readAvailabilityListByScope($scope, 1);
+
+ $mergedCollection = new Collection();
+ foreach ($existingCollection as $existingAvailability) {
+ $mergedCollection->addEntity($existingAvailability);
+ }
+ return $mergedCollection;
+ }
+
+ private function validateNewAvailabilities(
+ Collection $newCollection,
+ Collection $mergedCollection,
+ \DateTimeImmutable $selectedDate
+ ): void {
+ $validations = [];
+ foreach ($newCollection as $newAvailability) {
+ $validations = array_merge(
+ $validations,
+ $this->validateSingleAvailability($newAvailability, $mergedCollection, $selectedDate)
+ );
+ $mergedCollection->addEntity($newAvailability);
+ }
+
+ if (count($validations) > 0) {
+ throw new AvailabilityAddFailed();
+ }
+ }
+
+ private function validateSingleAvailability(
+ Entity $availability,
+ Collection $mergedCollection,
+ \DateTimeImmutable $selectedDate
+ ): array {
+ $startDate = (new \DateTimeImmutable())->setTimestamp($availability->startDate);
+ $endDate = (new \DateTimeImmutable())->setTimestamp($availability->endDate);
+ $startDateTime = new \DateTimeImmutable(
+ "{$startDate->format('Y-m-d')} {$availability->startTime}"
+ );
+ $endDateTime = new \DateTimeImmutable(
+ "{$endDate->format('Y-m-d')} {$availability->endTime}"
+ );
+
+ return $mergedCollection->validateInputs(
+ $startDateTime,
+ $endDateTime,
+ $selectedDate,
+ $availability->kind ?? 'default',
+ $availability->bookable['startInDays'],
+ $availability->bookable['endInDays'],
+ $availability->weekday
+ );
+ }
+
+ private function getFilteredCollection(Collection $mergedCollection): Collection
+ {
+ $originId = $this->findOriginId($mergedCollection);
+
+ $filtered = new Collection();
+ foreach ($mergedCollection as $availability) {
+ if ($this->shouldIncludeAvailability($availability, $originId)) {
+ $filtered->addEntity($availability);
+ }
+ }
+ return $filtered;
+ }
+
+ private function findOriginId(Collection $collection): ?string
+ {
+ foreach ($collection as $availability) {
+ if (
+ isset($availability->kind) &&
+ $availability->kind === 'origin' &&
+ isset($availability->id)
+ ) {
+ return $availability->id;
+ }
+ }
+ return null;
+ }
+
+ private function shouldIncludeAvailability(Entity $availability, ?string $originId): bool
+ {
+ return (!isset($availability->kind) || $availability->kind !== 'exclusion') &&
+ (!isset($availability->id) || $availability->id !== $originId);
+ }
+
+ private function checkExistingConflicts(
+ \BO\Zmsentities\Collection\ProcessList $conflicts,
+ Collection $filteredCollection
+ ): void {
+ [$earliestStartDateTime, $latestEndDateTime] = $filteredCollection
+ ->getDateTimeRangeFromList();
+
+ $existingConflicts = $filteredCollection->checkForConflictsWithExistingAvailabilities(
+ $earliestStartDateTime,
+ $latestEndDateTime
+ );
+ $conflicts->addList($existingConflicts);
+ }
+
+ private function filterConflictsByWeekday(
+ \BO\Zmsentities\Collection\ProcessList $conflicts,
+ Collection $filteredCollection,
+ int $weekday
+ ): \BO\Zmsentities\Collection\ProcessList {
+ $filteredConflicts = new \BO\Zmsentities\Collection\ProcessList();
+
+ foreach ($conflicts as $conflict) {
+ $availability1 = $conflict->getFirstAppointment()->getAvailability();
+ $availability2 = $this->findMatchingAvailability(
+ $availability1,
+ $filteredCollection
+ );
+
+ if ($this->doesConflictAffectWeekday($availability1, $availability2, $weekday)) {
+ $filteredConflicts->addEntity($conflict);
+ }
+ }
+
+ return $filteredConflicts;
+ }
+
+ private function findMatchingAvailability(
+ Entity $availability1,
+ Collection $collection
+ ): ?Entity {
+ foreach ($collection as $avail) {
+ if (
+ $avail->id === $availability1->id ||
+ (isset($avail->tempId) &&
+ isset($availability1->tempId) &&
+ $avail->tempId === $availability1->tempId)
+ ) {
+ return $avail;
+ }
+ }
+ return null;
+ }
+
+ private function doesConflictAffectWeekday(
+ Entity $availability1,
+ ?Entity $availability2,
+ int $weekday
+ ): bool {
+ $weekdayKey = strtolower(date('l', strtotime("Sunday +{$weekday} days")));
+
+ if (
+ isset($availability1->weekday[$weekdayKey]) &&
+ (int)$availability1->weekday[$weekdayKey] > 0
+ ) {
+ return true;
+ }
+
+ if (
+ $availability2 &&
+ isset($availability2->weekday[$weekdayKey]) &&
+ (int)$availability2->weekday[$weekdayKey] > 0
+ ) {
+ return true;
+ }
+
+ return false;
+ }
+
+ private function updateEntities(Collection $newCollection, int $resolveReferences): Collection
+ {
+ $updatedCollection = new Collection();
+ foreach ($newCollection as $entity) {
+ $updatedEntity = $this->writeEntityUpdate($entity, $resolveReferences);
AvailabilitySlotsUpdate::writeCalculatedSlots($updatedEntity, true);
- $collection->addEntity($updatedEntity);
+ $updatedCollection->addEntity($updatedEntity);
}
+ return $updatedCollection;
+ }
+ private function generateResponse(
+ RequestInterface $request,
+ ResponseInterface $response,
+ Collection $updatedCollection
+ ): ResponseInterface {
$message = Response\Message::create($request);
- $message->data = $collection->getArrayCopy();
+ $message->data = $updatedCollection->getArrayCopy();
$response = Render::withLastModified($response, time(), '0');
- $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
- return $response;
+ return Render::withJson(
+ $response,
+ $message->setUpdatedMetaData(),
+ $message->getStatuscode()
+ );
}
- protected function writeEntityUpdate($entity): Entity
+ protected function writeEntityUpdate($entity, $resolveReferences): Entity
{
$repository = new AvailabilityRepository();
$updatedEntity = null;
if ($entity->id) {
- $oldentity = $repository->readEntity($entity->id);
- if ($oldentity && $oldentity->hasId()) {
- $this->writeSpontaneousEntity($oldentity);
- $updatedEntity = $repository->updateEntity($entity->id, $entity, 2);
+ $oldEntity = $repository->readEntity($entity->id);
+ if ($oldEntity !== null && $oldEntity->hasId()) {
+ $this->writeSpontaneousEntity($oldEntity);
+ $updatedEntity = $repository->updateEntity($entity->id, $entity, $resolveReferences);
+ } else {
+ throw new AvailabilityAddFailed("Entity with ID {$entity->id} not found.");
}
} else {
- $updatedEntity = $repository->writeEntity($entity, 2);
+ $updatedEntity = $repository->writeEntity($entity, resolveReferences: $resolveReferences);
}
- if (! $updatedEntity) {
- throw new UpdateFailedException();
+ if (!$updatedEntity) {
+ throw new AvailabilityAddFailed();
}
return $updatedEntity;
}
diff --git a/zmsapi/src/Zmsapi/AvailabilityUpdate.php b/zmsapi/src/Zmsapi/AvailabilityUpdate.php
index d42e9acde..887572a49 100644
--- a/zmsapi/src/Zmsapi/AvailabilityUpdate.php
+++ b/zmsapi/src/Zmsapi/AvailabilityUpdate.php
@@ -1,10 +1,5 @@
checkRights();
- $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(2)->getValue();
+ $input = $this->validateAndGetInput();
+ $resolveReferences = $this->getResolveReferences();
+
+ DbConnection::getWriteConnection();
+
+ $result = $this->processAvailabilityUpdate($input, $resolveReferences);
+
+ return $this->generateResponse($request, $response, $result);
+ }
+
+ private function validateAndGetInput(): array
+ {
$input = Validator::input()->isJson()->assertValid()->getValue();
- $entity = new Entity($input);
- $entity->testValid();
+ if (!$input || count($input) === 0) {
+ throw new BadRequestException();
+ }
+
+ $this->validateInputStructure($input);
+ return $input;
+ }
- $availability = (new AvailabilityRepository())->readEntity($args['id'], $resolveReferences);
- if (! $availability->hasId()) {
- throw new NotfoundException();
+ private function validateInputStructure(array $input): void
+ {
+ if (!isset($input['availabilityList']) || !is_array($input['availabilityList'])) {
+ throw new BadRequestException('Missing or invalid availabilityList.');
+ }
+ if (empty($input['availabilityList']) || !isset($input['availabilityList'][0]['scope'])) {
+ throw new BadRequestException('Missing or invalid scope.');
+ }
+ if (!isset($input['selectedDate'])) {
+ throw new BadRequestException("'selectedDate' is required.");
}
+ }
- DbConnection::getWriteConnection();
- $this->writeSpontaneousEntity($availability);
- $updatedEntity = (new AvailabilityRepository())->updateEntity($args['id'], $entity, $resolveReferences);
- AvailabilitySlotsUpdate::writeCalculatedSlots($updatedEntity, true);
+ private function getResolveReferences(): int
+ {
+ return Validator::param('resolveReferences')->isNumber()->setDefault(2)->getValue();
+ }
+
+ private function processAvailabilityUpdate(array $input, int $resolveReferences): Collection
+ {
+ $newCollection = $this->createAndValidateCollection($input['availabilityList'], $resolveReferences);
+ $selectedDate = $this->createSelectedDateTime($input['selectedDate']);
+ $scope = new Scope($input['availabilityList'][0]['scope']);
+
+ $this->validateAndCheckConflicts($newCollection, $scope, $selectedDate);
+
+ return $this->updateEntities($newCollection, $resolveReferences);
+ }
+
+ private function createAndValidateCollection(array $availabilityList, int $resolveReferences): Collection
+ {
+ $availabilityRepo = new AvailabilityRepository();
+ $newCollection = new Collection();
+
+ foreach ($availabilityList as $item) {
+ $entity = new Entity($item);
+ $entity->testValid();
+
+ if (isset($entity->id)) {
+ $this->validateExistingEntity($entity, $availabilityRepo, $resolveReferences);
+ }
+ $newCollection->addEntity($entity);
+ }
+
+ return $newCollection;
+ }
+
+ private function validateExistingEntity(Entity $entity, AvailabilityRepository $repo, int $resolveReferences): void
+ {
+ $existingEntity = $repo->readEntity($entity->id, $resolveReferences);
+ if (!$existingEntity || !$existingEntity->hasId()) {
+ throw new NotFoundException("Availability with ID {$entity->id} not found.");
+ }
+ }
+
+ private function createSelectedDateTime(string $selectedDate): DateTimeImmutable
+ {
+ return DateTimeImmutable::createFromFormat(
+ 'Y-m-d H:i:s',
+ $selectedDate . ' 00:00:00'
+ );
+ }
+
+ private function validateAndCheckConflicts(
+ Collection $newCollection,
+ Scope $scope,
+ DateTimeImmutable $selectedDate
+ ): void {
+ $conflicts = $this->getInitialConflicts($newCollection);
+ $mergedCollection = $this->getMergedCollection($scope);
+
+ $this->validateNewAvailabilities($newCollection, $mergedCollection, $selectedDate);
+
+ $filteredCollection = $this->getFilteredCollection($mergedCollection);
+ $this->checkExistingConflicts($conflicts, $filteredCollection);
+
+ $weekday = (int)$selectedDate->format('N');
+ $filteredConflicts = $this->filterConflictsByWeekday(
+ $conflicts,
+ $filteredCollection,
+ $weekday
+ );
+
+ if ($filteredConflicts->count() > 0) {
+ throw new AvailabilityUpdateFailed();
+ }
+ }
+
+ private function getInitialConflicts(Collection $newCollection): ProcessList
+ {
+ $conflicts = new ProcessList();
+ $newVsNewConflicts = $newCollection->checkForConflictsBetweenNewAvailabilities();
+ $conflicts->addList($newVsNewConflicts);
+ return $conflicts;
+ }
+
+ private function getMergedCollection(Scope $scope): Collection
+ {
+ $availabilityRepo = new AvailabilityRepository();
+ $existingCollection = $availabilityRepo->readAvailabilityListByScope($scope, 1);
+
+ $mergedCollection = new Collection();
+ foreach ($existingCollection as $existingAvailability) {
+ $mergedCollection->addEntity($existingAvailability);
+ }
+ return $mergedCollection;
+ }
+
+ private function validateNewAvailabilities(
+ Collection $newCollection,
+ Collection $mergedCollection,
+ DateTimeImmutable $selectedDate
+ ): void {
+ $validations = [];
+ foreach ($newCollection as $newAvailability) {
+ $validations = array_merge(
+ $validations,
+ $this->validateSingleAvailability($newAvailability, $mergedCollection, $selectedDate)
+ );
+ $mergedCollection->addEntity($newAvailability);
+ }
+
+ if (count($validations) > 0) {
+ throw new AvailabilityUpdateFailed();
+ }
+ }
+
+ private function validateSingleAvailability(
+ Entity $availability,
+ Collection $mergedCollection,
+ DateTimeImmutable $selectedDate
+ ): array {
+ $startDate = (new DateTimeImmutable())->setTimestamp($availability->startDate);
+ $endDate = (new DateTimeImmutable())->setTimestamp($availability->endDate);
+ $startDateTime = new DateTimeImmutable(
+ "{$startDate->format('Y-m-d')} {$availability->startTime}"
+ );
+ $endDateTime = new DateTimeImmutable(
+ "{$endDate->format('Y-m-d')} {$availability->endTime}"
+ );
+
+ return $mergedCollection->validateInputs(
+ $startDateTime,
+ $endDateTime,
+ $selectedDate,
+ $availability->kind ?? 'default',
+ $availability->bookable['startInDays'],
+ $availability->bookable['endInDays'],
+ $availability->weekday
+ );
+ }
+
+ private function getFilteredCollection(Collection $mergedCollection): Collection
+ {
+ $originId = $this->findOriginId($mergedCollection);
+
+ $filtered = new Collection();
+ foreach ($mergedCollection as $availability) {
+ if ($this->shouldIncludeAvailability($availability, $originId)) {
+ $filtered->addEntity($availability);
+ }
+ }
+ return $filtered;
+ }
+
+ private function findOriginId(Collection $collection): ?string
+ {
+ foreach ($collection as $availability) {
+ if (
+ isset($availability->kind) &&
+ $availability->kind === 'origin' &&
+ isset($availability->id)
+ ) {
+ return $availability->id;
+ }
+ }
+ return null;
+ }
+
+ private function shouldIncludeAvailability(Entity $availability, ?string $originId): bool
+ {
+ return (!isset($availability->kind) || $availability->kind !== 'exclusion') &&
+ (!isset($availability->id) || $availability->id !== $originId);
+ }
+
+ private function checkExistingConflicts(
+ ProcessList $conflicts,
+ Collection $filteredCollection
+ ): void {
+ [$earliestStartDateTime, $latestEndDateTime] = $filteredCollection
+ ->getDateTimeRangeFromList();
+
+ $existingConflicts = $filteredCollection->checkForConflictsWithExistingAvailabilities(
+ $earliestStartDateTime,
+ $latestEndDateTime
+ );
+ $conflicts->addList($existingConflicts);
+ }
+
+ private function filterConflictsByWeekday(
+ ProcessList $conflicts,
+ Collection $filteredCollection,
+ int $weekday
+ ): ProcessList {
+ $filteredConflicts = new ProcessList();
+
+ foreach ($conflicts as $conflict) {
+ $availability1 = $conflict->getFirstAppointment()->getAvailability();
+ $availability2 = $this->findMatchingAvailability(
+ $availability1,
+ $filteredCollection
+ );
+
+ if ($this->doesConflictAffectWeekday($availability1, $availability2, $weekday)) {
+ $filteredConflicts->addEntity($conflict);
+ }
+ }
+
+ return $filteredConflicts;
+ }
+
+ private function findMatchingAvailability(
+ Entity $availability1,
+ Collection $collection
+ ): ?Entity {
+ foreach ($collection as $avail) {
+ if (
+ $avail->id === $availability1->id ||
+ (isset($avail->tempId) &&
+ isset($availability1->tempId) &&
+ $avail->tempId === $availability1->tempId)
+ ) {
+ return $avail;
+ }
+ }
+ return null;
+ }
+
+ private function doesConflictAffectWeekday(
+ Entity $availability1,
+ ?Entity $availability2,
+ int $weekday
+ ): bool {
+ $weekdayKey = strtolower(date('l', strtotime("Sunday +{$weekday} days")));
+
+ if (
+ isset($availability1->weekday[$weekdayKey]) &&
+ (int)$availability1->weekday[$weekdayKey] > 0
+ ) {
+ return true;
+ }
+
+ if (
+ $availability2 &&
+ isset($availability2->weekday[$weekdayKey]) &&
+ (int)$availability2->weekday[$weekdayKey] > 0
+ ) {
+ return true;
+ }
+
+ return false;
+ }
+
+ private function updateEntities(Collection $newCollection, int $resolveReferences): Collection
+ {
+ $updatedCollection = new Collection();
+ foreach ($newCollection as $entity) {
+ $updatedEntity = $this->writeEntityUpdate($entity, $resolveReferences);
+ AvailabilitySlotsUpdate::writeCalculatedSlots($updatedEntity, true);
+ $updatedCollection->addEntity($updatedEntity);
+ }
+ return $updatedCollection;
+ }
+
+ private function generateResponse(
+ RequestInterface $request,
+ ResponseInterface $response,
+ Collection $updatedCollection
+ ): ResponseInterface {
$message = Response\Message::create($request);
- $message->data = $updatedEntity;
+ $message->data = $updatedCollection->getArrayCopy();
$response = Render::withLastModified($response, time(), '0');
- $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
- return $response;
+ return Render::withJson(
+ $response,
+ $message->setUpdatedMetaData(),
+ $message->getStatuscode()
+ );
+ }
+
+ protected function writeEntityUpdate($entity, $resolveReferences): Entity
+ {
+ $repository = new AvailabilityRepository();
+ $updatedEntity = null;
+
+ if ($entity->id) {
+ $oldEntity = $repository->readEntity($entity->id);
+ if ($oldEntity !== null && $oldEntity->hasId()) {
+ $this->writeSpontaneousEntity($oldEntity);
+ $updatedEntity = $repository->updateEntity($entity->id, $entity, $resolveReferences);
+ } else {
+ throw new AvailabilityUpdateFailed("Entity with ID {$entity->id} not found.");
+ }
+ } else {
+ $updatedEntity = $repository->writeEntity($entity, $resolveReferences);
+ }
+
+ if (!$updatedEntity) {
+ throw new AvailabilityUpdateFailed();
+ }
+
+ return $updatedEntity;
}
protected function writeSpontaneousEntity(Entity $entity): void
diff --git a/zmsapi/src/Zmsapi/Exception/Availability/AvailabilityAddFailed.php b/zmsapi/src/Zmsapi/Exception/Availability/AvailabilityAddFailed.php
new file mode 100644
index 000000000..61b32363e
--- /dev/null
+++ b/zmsapi/src/Zmsapi/Exception/Availability/AvailabilityAddFailed.php
@@ -0,0 +1,13 @@
+setWorkstation();
+ $startDate = time() + (2 * 24 * 60 * 60); // 2 days in the future
+ $weekday = strtolower(date('l', $startDate));
+ $currentTimestamp = time();
+
$response = $this->render([], [
- '__body' => '[
- {
- "id": 21202,
- "description": "Test Öffnungszeit update",
- "scope": {
- "id": 312
- }
- },
- {
- "description": "Test Öffnungszeit ohne id",
- "scope": {
- "id": 141
- }
- }
- ]'
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "id" => 21202,
+ "description" => "Test Öffnungszeit update",
+ "startDate" => $startDate,
+ "endDate" => $startDate + (3 * 24 * 60 * 60),
+ "startTime" => "09:00:00",
+ "endTime" => "17:00:00",
+ "kind" => "default",
+ "weekday" => array_combine(
+ ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'],
+ array_map(function($day) use ($weekday) {
+ return $day === $weekday ? '4' : '0';
+ }, ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'])
+ ),
+ "scope" => [
+ "id" => 312,
+ "dayoff" => [
+ [
+ "id" => 35,
+ "date" => $currentTimestamp + (7 * 24 * 60 * 60),
+ "name" => "1. Mai",
+ "lastChange" => $currentTimestamp
+ ],
+ [
+ "id" => 36,
+ "date" => $currentTimestamp + (14 * 24 * 60 * 60),
+ "name" => "Christi Himmelfahrt",
+ "lastChange" => $currentTimestamp
+ ]
+ ]
+ ]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d', $startDate)
+ ])
], []);
+
$this->assertStringContainsString('availability.json', (string)$response->getBody());
$this->assertTrue(200 == $response->getStatusCode());
}
+ public function testOverlappingAvailability()
+ {
+ $this->setWorkstation();
+ $this->expectException(AvailabilityAddFailed::class);
+
+ $startDate = time() + (2 * 24 * 60 * 60);
+ $weekday = (int)date('N', $startDate);
+ $dayoffData = [
+ [
+ "id" => "302",
+ "date" => 1458860400,
+ "lastChange" => 1566566540,
+ "name" => "Karfreitag"
+ ]
+ ];
+
+ $this->render([], [
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "id" => 21202,
+ "description" => "Overlapping Entry 1",
+ "startDate" => $startDate,
+ "endDate" => $startDate + (24 * 60 * 60),
+ "startTime" => "09:00:00",
+ "endTime" => "17:00:00",
+ "kind" => "default",
+ "weekday" => array_combine(
+ ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'],
+ array_map(function($i) use ($weekday) { return $i === $weekday ? '4' : '0'; }, range(1, 7))
+ ),
+ "scope" => [
+ "id" => 312,
+ "dayoff" => $dayoffData
+ ]
+ ],
+ [
+ "id" => 21203,
+ "description" => "Overlapping Entry 2",
+ "startDate" => $startDate,
+ "endDate" => $startDate + (24 * 60 * 60),
+ "startTime" => "10:00:00",
+ "endTime" => "18:00:00",
+ "kind" => "default",
+ "weekday" => array_combine(
+ ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'],
+ array_map(function($i) use ($weekday) { return $i === $weekday ? '4' : '0'; }, range(1, 7))
+ ),
+ "scope" => [
+ "id" => 312,
+ "dayoff" => $dayoffData
+ ]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d', $startDate)
+ ])
+ ], []);
+ }
+
+ public function testDuplicateOverlappingAvailability()
+ {
+ $this->setWorkstation();
+ $this->expectException(AvailabilityAddFailed::class);
+
+ $startDate = time() + (3 * 24 * 60 * 60);
+ $weekday = (int)date('N', $startDate);
+ $dayoffData = [
+ [
+ "id" => "302",
+ "date" => 1458860400,
+ "lastChange" => 1566566540,
+ "name" => "Karfreitag"
+ ]
+ ];
+
+ $this->render([], [
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "id" => 21202,
+ "description" => "Duplicate Entry 1",
+ "startDate" => $startDate,
+ "endDate" => $startDate + (24 * 60 * 60),
+ "startTime" => "09:00:00",
+ "endTime" => "17:00:00",
+ "kind" => "default",
+ "weekday" => array_combine(
+ ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'],
+ array_map(function($i) use ($weekday) { return $i === $weekday ? '4' : '0'; }, range(1, 7))
+ ),
+ "scope" => [
+ "id" => 312,
+ "dayoff" => $dayoffData
+ ]
+ ],
+ [
+ "id" => 21203,
+ "description" => "Duplicate Entry 2",
+ "startDate" => $startDate,
+ "endDate" => $startDate + (24 * 60 * 60),
+ "startTime" => "09:00:00",
+ "endTime" => "17:00:00",
+ "kind" => "default",
+ "weekday" => array_combine(
+ ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'],
+ array_map(function($i) use ($weekday) { return $i === $weekday ? '4' : '0'; }, range(1, 7))
+ ),
+ "scope" => [
+ "id" => 312,
+ "dayoff" => $dayoffData
+ ]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d', $startDate)
+ ])
+ ], []);
+ }
+
+ public function testInvalidEndTime()
+ {
+ $this->setWorkstation();
+ $this->expectException(AvailabilityAddFailed::class);
+
+ $this->render([], [
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "description" => "End Time Before Start Time",
+ "startDate" => time() + (2 * 24 * 60 * 60),
+ "endDate" => time() + (2 * 24 * 60 * 60),
+ "startTime" => "17:00:00",
+ "endTime" => "09:00:00",
+ "kind" => "default",
+ "scope" => ["id" => 312]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d')
+ ])
+ ], []);
+ }
+
public function testEmpty()
{
$this->setWorkstation();
@@ -47,21 +217,23 @@ public function testEmptyBody()
], []);
}
- public function testUpdateFailed()
+ public function testAddFailed()
{
$this->setWorkstation();
- $this->expectException('\BO\Zmsapi\Exception\Availability\AvailabilityUpdateFailed');
+ $this->expectException('\BO\Zmsapi\Exception\Availability\AvailabilityAddFailed');
$this->expectExceptionCode(400);
+
$this->render([], [
- '__body' => '[
- {
- "id": 99999,
- "description": "Test Öffnungszeit update failed",
- "scope": {
- "id": 312
- }
- }
- ]',
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "id" => 99999,
+ "description" => "Test Öffnungszeit update failed",
+ "scope" => ["id" => 312]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d')
+ ]),
'migrationfix' => 0
], []);
}
diff --git a/zmsapi/tests/Zmsapi/AvailabilityUpdateTest.php b/zmsapi/tests/Zmsapi/AvailabilityUpdateTest.php
index 736c7acf8..3da5d6a74 100644
--- a/zmsapi/tests/Zmsapi/AvailabilityUpdateTest.php
+++ b/zmsapi/tests/Zmsapi/AvailabilityUpdateTest.php
@@ -2,9 +2,9 @@
namespace BO\Zmsapi\Tests;
-use \BO\Zmsentities\Availability as Entity;
-
-use \BO\Zmsdb\Availability as Query;
+use BO\Zmsentities\Availability as Entity;
+use BO\Zmsdb\Availability as Query;
+use BO\Zmsapi\Exception\Availability\AvailabilityUpdateFailed;
class AvailabilityUpdateTest extends Base
{
@@ -13,21 +13,154 @@ class AvailabilityUpdateTest extends Base
public function testRendering()
{
$input = (new Entity)->createExample();
+ $currentTimestamp = time();
+ $startDate = $currentTimestamp + (2 * 24 * 60 * 60); // 2 days in the future
+ $weekday = strtolower(date('l', $startDate));
+ $weekdayBitmap = [
+ 'sunday' => $weekday === 'sunday' ? '1' : '0',
+ 'monday' => $weekday === 'monday' ? '2' : '0',
+ 'tuesday' => $weekday === 'tuesday' ? '4' : '0',
+ 'wednesday' => $weekday === 'wednesday' ? '8' : '0',
+ 'thursday' => $weekday === 'thursday' ? '16' : '0',
+ 'friday' => $weekday === 'friday' ? '32' : '0',
+ 'saturday' => $weekday === 'saturday' ? '64' : '0'
+ ];
+
+ $input['startDate'] = $startDate;
+ $input['endDate'] = $startDate + (3 * 24 * 60 * 60);
+ $input['startTime'] = "09:00:00";
+ $input['endTime'] = "17:00:00";
+ $input['weekday'] = $weekdayBitmap;
+ $input['scope'] = [
+ "id" => 312,
+ "dayoff" => [
+ [
+ "id" => 35,
+ "date" => $currentTimestamp + (7 * 24 * 60 * 60),
+ "name" => "1. Mai",
+ "lastChange" => $currentTimestamp
+ ],
+ [
+ "id" => 36,
+ "date" => $currentTimestamp + (14 * 24 * 60 * 60),
+ "name" => "Christi Himmelfahrt",
+ "lastChange" => $currentTimestamp
+ ]
+ ]
+ ];
+ $input['kind'] = "default";
+
$entity = (new Query())->writeEntity($input);
$this->setWorkstation();
- $response = $this->render(["id"=> $entity->getId()], [
- '__body' => '{
- "id": '. $entity->getId() .',
- "description": "",
- "scope": {
- "id": 312
- }
- }'
+
+ $response = $this->render([
+ "id" => $entity->getId()
+ ], [
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "id" => $entity->getId(),
+ "description" => "Test Öffnungszeit update",
+ "startDate" => $startDate,
+ "endDate" => $startDate + (3 * 24 * 60 * 60),
+ "startTime" => "09:00:00",
+ "endTime" => "17:00:00",
+ "kind" => "default",
+ "weekday" => $weekdayBitmap,
+ "scope" => [
+ "id" => 312,
+ "dayoff" => [
+ [
+ "id" => 35,
+ "date" => $currentTimestamp + (7 * 24 * 60 * 60),
+ "name" => "1. Mai",
+ "lastChange" => $currentTimestamp
+ ],
+ [
+ "id" => 36,
+ "date" => $currentTimestamp + (14 * 24 * 60 * 60),
+ "name" => "Christi Himmelfahrt",
+ "lastChange" => $currentTimestamp
+ ]
+ ]
+ ]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d', $startDate)
+ ])
], []);
+
$this->assertStringContainsString('availability.json', (string)$response->getBody());
$this->assertTrue(200 == $response->getStatusCode());
}
+ public function testInvalidEndTime()
+ {
+
+ $input = (new Entity)->createExample();
+ $currentTimestamp = time();
+ $input['startDate'] = $currentTimestamp + (20 * 24 * 60 * 60); // 2 days in the future
+ $input['endDate'] = $currentTimestamp + (20 * 24 * 60 * 60);
+ $input['startTime'] = "17:00:00";
+ $input['endTime'] = "09:00:00";
+ $input['scope'] = [
+ "id" => 312,
+ "dayoff" => [
+ [
+ "id" => 35,
+ "date" => $currentTimestamp + (70 * 24 * 60 * 60), // 7 days in the future
+ "name" => "1. Mai",
+ "lastChange" => $currentTimestamp
+ ],
+ [
+ "id" => 36,
+ "date" => $currentTimestamp + (140 * 24 * 60 * 60), // 14 days in the future
+ "name" => "Christi Himmelfahrt",
+ "lastChange" => $currentTimestamp
+ ]
+ ]
+ ];
+ $input['kind'] = "default";
+
+ $entity = (new Query())->writeEntity($input);
+ $this->setWorkstation();
+ $this->expectException(AvailabilityUpdateFailed::class);
+
+ $this->render([], [
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "id" => $entity->getId(),
+ "description" => "End Time Before Start Time",
+ "startDate" => time() + (20 * 24 * 60 * 60),
+ "endDate" => time() + (20 * 24 * 60 * 60),
+ "startTime" => "17:00:00",
+ "endTime" => "09:00:00",
+ "kind" => "default",
+ "scope" => [
+ "id" => 312,
+ "dayoff" => [
+ [
+ "id" => 35,
+ "date" => $currentTimestamp + (70 * 24 * 60 * 60),
+ "name" => "1. Mai",
+ "lastChange" => $currentTimestamp
+ ],
+ [
+ "id" => 36,
+ "date" => $currentTimestamp + (140 * 24 * 60 * 60),
+ "name" => "Christi Himmelfahrt",
+ "lastChange" => $currentTimestamp
+ ]
+ ]
+ ]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d')
+ ])
+ ], []);
+ }
+
public function testEmpty()
{
$this->setWorkstation();
@@ -40,14 +173,22 @@ public function testNotFound()
$this->setWorkstation();
$this->expectException('\BO\Zmsapi\Exception\Availability\AvailabilityNotFound');
$this->expectExceptionCode(404);
- $this->render(["id"=> 1], [
- '__body' => '{
- "id": 1,
- "description": "Test Öffnungszeit not found",
- "scope": {
- "id": 312
- }
- }'
- ], []);
+
+ $this->render(
+ ["id" => 1],
+ [
+ '__body' => json_encode([
+ 'availabilityList' => [
+ [
+ "id" => 1,
+ "description" => "Test Öffnungszeit not found",
+ "scope" => ["id" => 312]
+ ]
+ ],
+ 'selectedDate' => date('Y-m-d')
+ ])
+ ],
+ []
+ );
}
}
diff --git a/zmsdb/src/Zmsdb/Process.php b/zmsdb/src/Zmsdb/Process.php
index 144101cfd..9f257bea0 100755
--- a/zmsdb/src/Zmsdb/Process.php
+++ b/zmsdb/src/Zmsdb/Process.php
@@ -492,7 +492,7 @@ public function readConflictListByScopeAndTime(
$endDate = $startDate;
}
$currentDate = ($startDate) ? $startDate : $now;
- $conflictList = $availabilityList->getConflicts($startDate, $endDate);
+ $conflictList = $availabilityList->checkForConflictsWithExistingAvailabilities($startDate, $endDate);
while ($currentDate <= $endDate) {
$query = new Query\Process(Query\Base::SELECT);
$query
diff --git a/zmsdb/tests/Zmsdb/AvailabilityTest.php b/zmsdb/tests/Zmsdb/AvailabilityTest.php
index 2c2f1abd5..8342d8c5a 100644
--- a/zmsdb/tests/Zmsdb/AvailabilityTest.php
+++ b/zmsdb/tests/Zmsdb/AvailabilityTest.php
@@ -74,7 +74,7 @@ public function testWriteEntity()
$lastInsertedId = $entity->id;
$entity = $query->readEntity($lastInsertedId, 1);
- $this->assertEquals(12, $entity->slotTimeInMinutes);
+ $this->assertEquals(10, $entity->slotTimeInMinutes);
$this->assertTrue((bool)$entity->weekday['thursday']);
$this->assertTrue((bool)$entity->weekday['friday']);
diff --git a/zmsdb/tests/Zmsdb/ProcessConflictTest.php b/zmsdb/tests/Zmsdb/ProcessConflictTest.php
index 48b5f70e3..3bd670260 100644
--- a/zmsdb/tests/Zmsdb/ProcessConflictTest.php
+++ b/zmsdb/tests/Zmsdb/ProcessConflictTest.php
@@ -53,8 +53,8 @@ public function testOverbookedOnDay()
}
/*
- * Test a single day availability without repeats but with conflicts out of availability start and enttime
- */
+ * Test a single day availability without repeats but with conflicts out of availability start and enttime
+ */
public function testSingleDayOutOfAvailability()
{
@@ -100,10 +100,12 @@ public function testEqual()
(new \BO\Zmsdb\Availability())->writeEntity($availabilityCopy);
$conflictList = (new \BO\Zmsdb\Process())->readConflictListByScopeAndTime($scope, $startDate, null, $now, 0);
$this->assertEquals(2, $conflictList->count());
- $this->assertEquals('Zwei Öffnungszeiten sind gleich.', $conflictList->getFirst()->getAmendment());
+ $this->assertEquals("Konflikt: Zwei Öffnungszeiten sind gleich.\n" .
+ "Bestehende Öffnungszeit: [30.01.2016 - 22.05.2016, 08:00 - 13:50, Wochentag(e): Freitag]\n" .
+ "Neue Öffnungszeit: [30.01.2016 - 22.05.2016, 08:00 - 13:50, Wochentag(e): Freitag]", $conflictList->getFirst()->getAmendment());
$this->assertEquals('conflict', $conflictList->getFirst()->getStatus());
}
-
+
public function testOverLap()
{
$now = static::$now;
@@ -115,7 +117,10 @@ public function testOverLap()
(new \BO\Zmsdb\Availability())->writeEntity($availabilityCopy);
$conflictList = (new \BO\Zmsdb\Process())->readConflictListByScopeAndTime($scope, $startDate, null, $now, 0);
$this->assertEquals(2, $conflictList->count());
- $this->assertEquals('Zwei Öffnungszeiten überschneiden sich.', $conflictList->getFirst()->getAmendment());
+ $this->assertEquals("Konflikt: Zwei Öffnungszeiten überschneiden sich.\n" .
+ "Bestehende Öffnungszeit: [30.01.2016 - 22.05.2016, 08:00 - 15:50, Wochentag(e): Freitag]\n" .
+ "Neue Öffnungszeit: [30.01.2016 - 22.05.2016, 08:00 - 13:50, Wochentag(e): Freitag]", $conflictList->getFirst()->getAmendment());
$this->assertEquals('conflict', $conflictList->getFirst()->getStatus());
}
+
}
diff --git a/zmsentities/schema/availability.json b/zmsentities/schema/availability.json
index d71c1fdfc..be0038f99 100644
--- a/zmsentities/schema/availability.json
+++ b/zmsentities/schema/availability.json
@@ -18,7 +18,7 @@
"scope": {
"id": 141
},
- "slotTimeInMinutes": 12,
+ "slotTimeInMinutes": 10,
"startDate": 1447919543,
"startTime": "10:00",
"weekday": {
@@ -119,6 +119,10 @@
"type": "string",
"description": "format '0:00' or '17:30'"
},
+ "kind": {
+ "type": "string",
+ "description": "Format or category of the availability"
+ },
"type": {
"type": "string",
"enum": [
diff --git a/zmsentities/schema/dereferenced/appointment.json b/zmsentities/schema/dereferenced/appointment.json
index 520ac2089..9e4ed5154 100644
--- a/zmsentities/schema/dereferenced/appointment.json
+++ b/zmsentities/schema/dereferenced/appointment.json
@@ -35,7 +35,7 @@
"scope": {
"id": 141
},
- "slotTimeInMinutes": 12,
+ "slotTimeInMinutes": 10,
"startDate": 1447919543,
"startTime": "10:00",
"weekday": {
diff --git a/zmsentities/schema/dereferenced/availability.json b/zmsentities/schema/dereferenced/availability.json
index 8d59bccd5..569d0617f 100644
--- a/zmsentities/schema/dereferenced/availability.json
+++ b/zmsentities/schema/dereferenced/availability.json
@@ -18,7 +18,7 @@
"scope": {
"id": 141
},
- "slotTimeInMinutes": 12,
+ "slotTimeInMinutes": 10,
"startDate": 1447919543,
"startTime": "10:00",
"weekday": {
diff --git a/zmsentities/src/Zmsentities/Availability.php b/zmsentities/src/Zmsentities/Availability.php
index c414e18e0..fe5cb01cc 100644
--- a/zmsentities/src/Zmsentities/Availability.php
+++ b/zmsentities/src/Zmsentities/Availability.php
@@ -113,7 +113,7 @@ public function hasBookableDates(\DateTimeInterface $now)
* ATTENTION: Time critical function, keep highly optimized
*
* @param \DateTimeInterface $dateTime
- * @param String $type of "openinghours", "appointment" or false to ignore type
+ * @param string $type of "openinghours", "appointment" or false to ignore type
*
* @return Bool
*/
@@ -138,7 +138,7 @@ public function isOpenedOnDate(\DateTimeInterface $dateTime, $type = false)
* Compared to hasDate() the time of the day is checked, but not booking time
*
* @param \DateTimeInterface $dateTime
- * @param String $type of "openinghours", "appointment" or false to ignore type
+ * @param string $type of "openinghours", "appointment" or false to ignore type
*
*/
public function isOpened(\DateTimeInterface $dateTime, $type = false)
@@ -249,8 +249,8 @@ public function hasWeek(\DateTimeInterface $dateTime)
$this['repeat']['afterWeeks']
&& ($this['repeat']['afterWeeks'] == 1
|| 0 ===
- $dateTime->modify($monday)->diff($start->modify($monday))->days
- % ($this['repeat']['afterWeeks'] * 7)
+ $dateTime->modify($monday)->diff($start->modify($monday))->days
+ % ($this['repeat']['afterWeeks'] * 7)
)
) {
return true;
@@ -281,7 +281,7 @@ public function getStartDateTime()
if (!$this->startTimeCache) {
$this->startTimeCache = Helper\DateTime::create()
->setTimestamp($this['startDate'])
- ->modify('today ' . $this['startTime']);
+ ->modify('today ' . $this['startTime']);
}
return $this->startTimeCache;
}
@@ -296,7 +296,7 @@ public function getEndDateTime()
if (!$this->endTimeCache) {
$this->endTimeCache = Helper\DateTime::create()
->setTimestamp($this['endDate'])
- ->modify('today ' . $this['endTime']);
+ ->modify('today ' . $this['endTime']);
}
return $this->endTimeCache;
}
@@ -310,7 +310,7 @@ public function getDuration()
{
$startTime = $this->getStartDateTime();
$endTime = $this->getEndDateTime();
- return (int)$endTime->diff($startTime)->format("%a");
+ return (int) $endTime->diff($startTime)->format("%a");
}
/**
@@ -439,7 +439,7 @@ public function getSlotTimeInMinutes()
*
* @return Array of arrays with the keys time, public, callcenter, intern
*/
- public function hasDateBetween(\DateTimeInterface $startTime, \DateTimeInterface $stopTime, \DateTimeInterface $now)
+ public function hasDateBetween(\DateTimeInterface $startTime, \DateTimeInterface $stopTime, \DateTimeInterface $now): bool
{
if ($startTime->getTimestamp() < $now->getTimestamp()) {
$startTime = $now;
@@ -455,6 +455,159 @@ public function hasDateBetween(\DateTimeInterface $startTime, \DateTimeInterface
} while ($startTime->getTimestamp() <= $stopTime->getTimestamp());
return false;
}
+ public function validateStartTime(\DateTimeInterface $today, \DateTimeInterface $tomorrow, \DateTimeInterface $startDate, \DateTimeInterface $endDate, \DateTimeInterface $selectedDate, string $kind): array
+ {
+ $errorList = [];
+
+ $startTime = (clone $startDate)->setTime(0, 0);
+ $startHour = (int) $startDate->format('H');
+ $endHour = (int) $endDate->format('H');
+ $startMinute = (int) $startDate->format('i');
+ $endMinute = (int) $endDate->format('i');
+ $isFuture = ($kind && $kind === 'future');
+
+ if (
+ !$isFuture &&
+ $selectedDate->getTimestamp() > $today->getTimestamp() &&
+ $startTime->getTimestamp() > (clone $selectedDate)->setTime(0, 0)->getTimestamp()
+ ) {
+ $errorList[] = [
+ 'type' => 'startTimeFuture',
+ 'message' => "Das Startdatum der Öffnungszeit muss vor dem " . $tomorrow->format('d.m.Y') . " liegen."
+ ];
+ }
+
+ if (
+ ($startHour === 22 && $startMinute > 0) ||
+ $startHour === 23 ||
+ $startHour === 0 ||
+ ($endHour === 22 && $endMinute > 0) ||
+ $endHour === 23 ||
+ $endHour === 0 ||
+ ($startHour === 1 && $startMinute > 0) ||
+ ($endHour === 1 && $endMinute > 0)
+ ) {
+ $errorList[] = [
+ 'type' => 'startOfDay',
+ 'message' => 'Die Uhrzeit darf nicht zwischen 22:00 und 01:00 liegen, da in diesem Zeitraum der tägliche Cronjob ausgeführt wird.'
+ ];
+ }
+
+ return $errorList;
+ }
+
+ public function validateEndTime(\DateTimeInterface $startDate, \DateTimeInterface $endDate): array
+ {
+ $errorList = [];
+
+ $startHour = (int) $startDate->format('H');
+ $endHour = (int) $endDate->format('H');
+ $startMinute = (int) $startDate->format('i');
+ $endMinute = (int) $endDate->format('i');
+ $dayMinutesStart = ($startHour * 60) + $startMinute;
+ $dayMinutesEnd = ($endHour * 60) + $endMinute;
+ $startTimestamp = $startDate->getTimestamp();
+ $endTimestamp = $endDate->getTimestamp();
+
+ if ($dayMinutesEnd <= $dayMinutesStart) {
+ $errorList[] = [
+ 'type' => 'endTime',
+ 'message' => 'Die Endzeit darf nicht vor der Startzeit liegen.'
+ ];
+ } elseif ($startTimestamp >= $endTimestamp) {
+ $errorList[] = [
+ 'type' => 'endTime',
+ 'message' => 'Das Enddatum darf nicht vor dem Startdatum liegen.'
+ ];
+ }
+
+ return $errorList;
+ }
+
+ public function validateOriginEndTime(\DateTimeInterface $today, \DateTimeInterface $yesterday, \DateTimeInterface $endDate, \DateTimeInterface $selectedDate, string $kind): array
+ {
+ $errorList = [];
+ $endHour = (int) $endDate->format('H');
+ $endMinute = (int) $endDate->format('i');
+ $endDateTime = (clone $endDate)->setTime($endHour, $endMinute);
+ $endTimestamp = $endDateTime->getTimestamp();
+ $isOrigin = ($kind && $kind === 'origin');
+
+ if (!$isOrigin && $selectedDate->getTimestamp() > $today->getTimestamp() && $endDate < (clone $selectedDate)->setTime(0, 0)) {
+ $errorList[] = [
+ 'type' => 'endTimeFuture',
+ 'message' => "Das Enddatum der Öffnungszeit muss nach dem " . $yesterday->format('d.m.Y') . " liegen."
+ ];
+ }
+
+ if (!$isOrigin && $endTimestamp < $today->getTimestamp()) {
+ $errorList[] = [
+ 'type' => 'endTimePast',
+ 'message' => 'Öffnungszeiten in der Vergangenheit lassen sich nicht bearbeiten '
+ . '(Die aktuelle Zeit "' . $today->format('d.m.Y H:i') . ' Uhr" liegt nach dem Terminende am "'
+ . $endDateTime->format('d.m.Y H:i') . ' Uhr").'
+ ];
+ }
+
+ return $errorList;
+ }
+
+ public function validateType(string $kind): array
+ {
+ $errorList = [];
+ if (empty($kind)) {
+ $errorList[] = [
+ 'type' => 'type',
+ 'message' => 'Typ erforderlich'
+ ];
+ }
+ return $errorList;
+ }
+
+ public function validateSlotTime(\DateTimeInterface $startDate, \DateTimeInterface $endDate): array
+ {
+ $errorList = [];
+ $slotTime = $this['slotTimeInMinutes'];
+
+ // Extract time components
+ $startHour = (int)$startDate->format('H');
+ $startMinute = (int)$startDate->format('i');
+ $endHour = (int)$endDate->format('H');
+ $endMinute = (int)$endDate->format('i');
+
+ // Calculate total minutes
+ $totalMinutes = (($endHour - $startHour) * 60) + ($endMinute - $startMinute);
+
+ if ($slotTime === 0) {
+ $errorList[] = [
+ 'type' => 'slotTime',
+ 'message' => 'Die Slot-Zeit darf nicht 0 sein.'
+ ];
+ return $errorList;
+ }
+
+ if ($totalMinutes % $slotTime > 0) {
+ $errorList[] = [
+ 'type' => 'slotCount',
+ 'message' => 'Zeitschlitze müssen sich gleichmäßig in der Öffnungszeit aufteilen lassen.'
+ ];
+ }
+
+ return $errorList;
+ }
+
+ public function validateBookableDayRange(int $startInDays, int $endInDays): array
+ {
+ $errorList = [];
+ if ($startInDays > $endInDays) {
+ $errorList[] = [
+ 'type' => 'bookableDayRange',
+ 'message' => 'Bitte geben Sie im Feld \'von\' eine kleinere Zahl ein als im Feld \'bis\', wenn Sie bei \'Buchbar\' sind.'
+ ];
+ }
+
+ return $errorList;
+ }
/**
* Get problems on configuration of this availability
@@ -493,29 +646,96 @@ public function isMatchOf(Availability $availability)
|| $this->endDate != $availability->endDate
|| $this->repeat['afterWeeks'] != $availability->repeat['afterWeeks']
|| $this->repeat['weekOfMonth'] != $availability->repeat['weekOfMonth']
- || (bool)$this->weekday['monday'] != (bool)$availability->weekday['monday']
- || (bool)$this->weekday['tuesday'] != (bool)$availability->weekday['tuesday']
- || (bool)$this->weekday['wednesday'] != (bool)$availability->weekday['wednesday']
- || (bool)$this->weekday['thursday'] != (bool)$availability->weekday['thursday']
- || (bool)$this->weekday['friday'] != (bool)$availability->weekday['friday']
- || (bool)$this->weekday['saturday'] != (bool)$availability->weekday['saturday']
- || (bool)$this->weekday['sunday'] != (bool)$availability->weekday['sunday']
+ || (bool) $this->weekday['monday'] != (bool) $availability->weekday['monday']
+ || (bool) $this->weekday['tuesday'] != (bool) $availability->weekday['tuesday']
+ || (bool) $this->weekday['wednesday'] != (bool) $availability->weekday['wednesday']
+ || (bool) $this->weekday['thursday'] != (bool) $availability->weekday['thursday']
+ || (bool) $this->weekday['friday'] != (bool) $availability->weekday['friday']
+ || (bool) $this->weekday['saturday'] != (bool) $availability->weekday['saturday']
+ || (bool) $this->weekday['sunday'] != (bool) $availability->weekday['sunday']
) ? false : true;
}
public function hasSharedWeekdayWith(Availability $availability)
{
return ($this->type == $availability->type
- && (bool)$this->weekday['monday'] != (bool)$availability->weekday['monday']
- && (bool)$this->weekday['tuesday'] != (bool)$availability->weekday['tuesday']
- && (bool)$this->weekday['wednesday'] != (bool)$availability->weekday['wednesday']
- && (bool)$this->weekday['thursday'] != (bool)$availability->weekday['thursday']
- && (bool)$this->weekday['friday'] != (bool)$availability->weekday['friday']
- && (bool)$this->weekday['saturday'] != (bool)$availability->weekday['saturday']
- && (bool)$this->weekday['sunday'] != (bool)$availability->weekday['sunday']
+ && (bool) $this->weekday['monday'] != (bool) $availability->weekday['monday']
+ && (bool) $this->weekday['tuesday'] != (bool) $availability->weekday['tuesday']
+ && (bool) $this->weekday['wednesday'] != (bool) $availability->weekday['wednesday']
+ && (bool) $this->weekday['thursday'] != (bool) $availability->weekday['thursday']
+ && (bool) $this->weekday['friday'] != (bool) $availability->weekday['friday']
+ && (bool) $this->weekday['saturday'] != (bool) $availability->weekday['saturday']
+ && (bool) $this->weekday['sunday'] != (bool) $availability->weekday['sunday']
) ? false : true;
}
+ public function validateWeekdays(\DateTimeInterface $startDate, \DateTimeInterface $endDate, array $weekday): array
+ {
+ $errorList = [];
+
+ // Check if at least one weekday is selected
+ $hasSelectedDay = false;
+ foreach (self::$weekdayNameList as $day) {
+ if ((int)$weekday[$day] > 0) {
+ $hasSelectedDay = true;
+ break;
+ }
+ }
+
+ if (!$hasSelectedDay) {
+ $errorList[] = [
+ 'type' => 'weekdayRequired',
+ 'message' => 'Mindestens ein Wochentag muss ausgewählt sein.'
+ ];
+ return $errorList;
+ }
+
+ // Map weekday names to German
+ $germanWeekdays = [
+ 'sunday' => 'Sonntag',
+ 'monday' => 'Montag',
+ 'tuesday' => 'Dienstag',
+ 'wednesday' => 'Mittwoch',
+ 'thursday' => 'Donnerstag',
+ 'friday' => 'Freitag',
+ 'saturday' => 'Samstag'
+ ];
+
+ // Track which selected weekdays appear in the range
+ $selectedWeekdays = array_filter(self::$weekdayNameList, function ($day) use ($weekday) {
+ return (int)$weekday[$day] > 0;
+ });
+ $foundWeekdays = [];
+
+ // Check if dates fall on selected weekdays
+ $currentDate = clone $startDate;
+ while ($currentDate <= $endDate) {
+ $weekDayName = self::$weekdayNameList[$currentDate->format('w')];
+ if (in_array($weekDayName, $selectedWeekdays)) {
+ $foundWeekdays[] = $weekDayName;
+ }
+ $currentDate = $currentDate->modify('+1 day');
+ }
+
+ // Check if any selected weekday doesn't appear in the range
+ $missingWeekdays = array_diff($selectedWeekdays, array_unique($foundWeekdays));
+ if (!empty($missingWeekdays)) {
+ $germanMissingWeekdays = array_map(function ($day) use ($germanWeekdays) {
+ return $germanWeekdays[$day];
+ }, $missingWeekdays);
+
+ $errorList[] = [
+ 'type' => 'invalidWeekday',
+ 'message' => sprintf(
+ 'Die ausgewählten Wochentage (%s) kommen im gewählten Zeitraum nicht vor.',
+ implode(', ', $germanMissingWeekdays)
+ )
+ ];
+ }
+
+ return $errorList;
+ }
+
/**
* Get overlaps on daytime
* This functions does not check, if two availabilities are openend on the same day!
@@ -629,52 +849,25 @@ public function hasSharedWeekdayWith(Availability $availability)
Case 16 | 09:00-09:00 09:00-09:00 | No | Yes
*/
- public function getTimeOverlaps(Availability $availability, \DateTimeInterface $currentDate)
+ public function getWeekdayNames(): string
{
- $processList = new Collection\ProcessList();
- if (
- $availability->id != $this->id
- && $availability->type == $this->type
- && $this->hasSharedWeekdayWith($availability)
- ) {
- $processTemplate = new Process();
- $processTemplate->amendment = "Zwei Öffnungszeiten überschneiden sich.";
- $processTemplate->status = 'conflict';
- $appointment = $processTemplate->getFirstAppointment();
- $appointment->availability = $this;
- $appointment->date = $this->getStartDateTime()->getTimestamp();
- $thisStart = $this->getStartDateTime()->getSecondsOfDay();
- $thisEnd = $this->getEndDateTime()->getSecondsOfDay();
- $availabilityStart = $availability->getStartDateTime()->getSecondsOfDay();
- $availabilityEnd = $availability->getEndDateTime()->getSecondsOfDay();
-
- $isEqual = ($availabilityStart == $thisStart && $availabilityEnd == $thisEnd);
-
- if ($availabilityStart < $thisEnd && $thisStart < $availabilityEnd && ! $isEqual) {
- $process = clone $processTemplate;
- $process->getFirstAppointment()->date = $this
- ->getStartDateTime()
- ->modify($currentDate->format("Y-m-d"))
- ->getTimestamp();
- $processList->addEntity($process);
- } elseif ($thisEnd < $availabilityStart && $availabilityEnd < $thisStart && ! $isEqual) {
- $process = clone $processTemplate;
- $process->getFirstAppointment()->date = $availability
- ->getStartDateTime()
- ->modify($currentDate->format("Y-m-d"))
- ->getTimestamp();
- $processList->addEntity($process);
- } elseif ($isEqual) {
- $process = clone $processTemplate;
- $process->amendment = "Zwei Öffnungszeiten sind gleich.";
- $process->getFirstAppointment()->date = $availability
- ->getStartDateTime()
- ->modify($currentDate->format("Y-m-d"))
- ->getTimestamp();
- $processList->addEntity($process);
- }
- }
- return $processList;
+ $germanWeekdays = [
+ 'sunday' => 'Sonntag',
+ 'monday' => 'Montag',
+ 'tuesday' => 'Dienstag',
+ 'wednesday' => 'Mittwoch',
+ 'thursday' => 'Donnerstag',
+ 'friday' => 'Freitag',
+ 'saturday' => 'Samstag'
+ ];
+
+ $selectedDays = array_filter(self::$weekdayNameList, function ($day) {
+ return isset($this->weekday[$day]) && (int)$this->weekday[$day] > 0;
+ });
+
+ return implode(' ', array_map(function ($day) use ($germanWeekdays) {
+ return $germanWeekdays[$day];
+ }, $selectedDays));
}
/**
@@ -767,28 +960,28 @@ public function isNewerThan(\DateTimeInterface $dateTime)
public function withLessData(array $keepArray = [])
{
$entity = clone $this;
- if (! in_array('repeat', $keepArray)) {
+ if (!in_array('repeat', $keepArray)) {
unset($entity['repeat']);
}
- if (! in_array('id', $keepArray)) {
+ if (!in_array('id', $keepArray)) {
unset($entity['id']);
}
- if (! in_array('bookable', $keepArray)) {
+ if (!in_array('bookable', $keepArray)) {
unset($entity['bookable']);
}
- if (! in_array('workstationCount', $keepArray)) {
+ if (!in_array('workstationCount', $keepArray)) {
unset($entity['workstationCount']);
}
- if (! in_array('multipleSlotsAllowed', $keepArray)) {
+ if (!in_array('multipleSlotsAllowed', $keepArray)) {
unset($entity['multipleSlotsAllowed']);
}
- if (! in_array('lastChange', $keepArray)) {
+ if (!in_array('lastChange', $keepArray)) {
unset($entity['lastChange']);
}
- if (! in_array('slotTimeInMinutes', $keepArray)) {
+ if (!in_array('slotTimeInMinutes', $keepArray)) {
unset($entity['slotTimeInMinutes']);
}
- if (! in_array('description', $keepArray)) {
+ if (!in_array('description', $keepArray)) {
unset($entity['description']);
}
diff --git a/zmsentities/src/Zmsentities/Collection/AvailabilityList.php b/zmsentities/src/Zmsentities/Collection/AvailabilityList.php
index a5ae6883a..ffd2700f9 100644
--- a/zmsentities/src/Zmsentities/Collection/AvailabilityList.php
+++ b/zmsentities/src/Zmsentities/Collection/AvailabilityList.php
@@ -7,6 +7,7 @@
namespace BO\Zmsentities\Collection;
use BO\Zmsentities\Availability;
+use BO\Zmsentities\Collection\ProcessList;
/**
* @SuppressWarnings(Complexity)
@@ -19,7 +20,7 @@ public function getMaxWorkstationCount()
{
$max = 0;
foreach ($this as $availability) {
- if ($availability['workstationCount']['intern'] > $max) {
+ if ($availability['workstationCount']['intern'] > $max) {
$max = $availability['workstationCount']['intern'];
}
}
@@ -162,48 +163,58 @@ public function getSlotListByType($type)
return $slotList;
}
- public function getConflicts($startDate, $endDate)
- {
- $processList = new ProcessList();
+ public function validateInputs(
+ \DateTimeImmutable $startDate,
+ \DateTimeImmutable $endDate,
+ \DateTimeImmutable $selectedDate,
+ string $kind,
+ $startInDays,
+ $endInDays,
+ array $weekday
+ ): array {
+ $errorList = [];
+
+ $today = new \DateTimeImmutable();
+ $yesterday = $selectedDate->modify('-1 day');
+ $tomorrow = $selectedDate->modify('+1 day');
+
foreach ($this as $availability) {
- $conflict = $availability->getConflict();
- $currentDate = $startDate;
- while ($currentDate <= $endDate) {
- if ($availability->isOpenedOnDate($currentDate)) {
- if ($conflict) {
- $conflictOnDay = clone $conflict;
- // to avoid overwrite time settings from availability getConflict lets modify
- $appointmentTime = $conflictOnDay->getFirstAppointment()->getStartTime()->format('H:i');
- $newDate = clone $currentDate;
- $conflictOnDay->getFirstAppointment()->setDateTime($newDate->modify($appointmentTime));
- $processList->addEntity($conflictOnDay);
- }
- $overlapList = $this->hasOverlapWith($availability, $currentDate);
- if ($overlapList->count()) {
- $processList->addList($overlapList);
- }
- }
- $currentDate = $currentDate->modify('+1day');
- }
+ $errorList = array_merge(
+ $errorList,
+ $availability->validateWeekdays($startDate, $endDate, $weekday),
+ $availability->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, $kind),
+ $availability->validateEndTime($startDate, $endDate),
+ $availability->validateOriginEndTime($today, $yesterday, $endDate, $selectedDate, $kind),
+ $availability->validateType($kind),
+ $availability->validateSlotTime($startDate, $endDate),
+ $availability->validateBookableDayRange((int) $startInDays, (int) $endInDays)
+ );
}
- return $processList;
+ return $errorList;
}
- public function hasOverlapWith(Availability $availability, \DateTimeInterface $currentDate)
+ public function getDateTimeRangeFromList(): array
{
- $processList = new ProcessList();
- foreach ($this as $availabilityCompare) {
- if ($availabilityCompare->isOpenedOnDate($currentDate)) {
- $overlaps = $availability->getTimeOverlaps($availabilityCompare, $currentDate);
- $processList->addList($overlaps);
+ $startDateTime = null;
+ $endDateTime = null;
+
+ foreach ($this as $availability) {
+ $availabilityStartDateTime = (new \DateTimeImmutable())
+ ->setTimestamp($availability->startDate);
+ $availabilityEndDateTime = (new \DateTimeImmutable())
+ ->setTimestamp($availability->endDate);
+
+ if ($startDateTime === null || $availabilityStartDateTime < $startDateTime) {
+ $startDateTime = $availabilityStartDateTime;
+ }
+ if ($endDateTime === null || $availabilityEndDateTime > $endDateTime) {
+ $endDateTime = $availabilityEndDateTime;
}
}
- return $processList;
+
+ return [$startDateTime, $endDateTime];
}
- /**
- * @return integer
- */
public function getSummerizedSlotCount()
{
return array_reduce($this->getArrayCopy(), function ($carry, $item) {
@@ -214,10 +225,7 @@ public function getSummerizedSlotCount()
}, []);
}
- /**
- * @return integer
- */
- public function getCalculatedSlotCount(\BO\Zmsentities\Collection\ProcessList $processList)
+ public function getCalculatedSlotCount(ProcessList $processList)
{
return array_reduce($this->getArrayCopy(), function ($carry, $item) use ($processList) {
$itemId = $item->id;
@@ -246,4 +254,232 @@ public function withLessData(array $keepArray = [])
}
return $list;
}
+
+ public function checkForConflictsBetweenNewAvailabilities(): ProcessList
+ {
+ $conflicts = new ProcessList();
+
+ $newAvailabilities = array_filter(iterator_to_array($this), function ($availability) {
+ return isset($availability->tempId) || isset($availability->kind);
+ });
+
+ foreach ($newAvailabilities as $availability1) {
+ foreach ($newAvailabilities as $availability2) {
+ if ($availability1 === $availability2) {
+ continue;
+ }
+
+ if (!$this->shouldCompareForConflicts($availability1, $availability2)) {
+ continue;
+ }
+
+ if ($this->doAvailabilitiesOverlap($availability1, $availability2)) {
+ $isEqual = $this->areAvailabilityTimesEqual($availability1, $availability2);
+
+ $conflict1 = new \BO\Zmsentities\Process();
+ $conflict1->status = 'conflict';
+ $appointment1 = new \BO\Zmsentities\Appointment();
+ $appointment1->date = $availability1->startDate;
+ $appointment1->availability = $availability1;
+ $conflict1->addAppointment($appointment1);
+ $conflict1->amendment = $this->createConflictMessage(
+ $availability1,
+ $availability2,
+ true,
+ $isEqual
+ );
+ $conflicts->addEntity($conflict1);
+
+ $conflict2 = new \BO\Zmsentities\Process();
+ $conflict2->status = 'conflict';
+ $appointment2 = new \BO\Zmsentities\Appointment();
+ $appointment2->date = $availability2->startDate;
+ $appointment2->availability = $availability2;
+ $conflict2->addAppointment($appointment2);
+ $conflict2->amendment = $this->createConflictMessage(
+ $availability2,
+ $availability1,
+ true,
+ $isEqual
+ );
+ $conflicts->addEntity($conflict2);
+ }
+ }
+ }
+
+ return $conflicts;
+ }
+
+ private function createConflictMessage(
+ Availability $availability1,
+ Availability $availability2,
+ bool $bothAreNew,
+ bool $isEqual
+ ): string {
+ $dateRange1 = date('d.m.Y', $availability1->startDate) . ' - ' . date('d.m.Y', $availability1->endDate);
+ $dateRange2 = date('d.m.Y', $availability2->startDate) . ' - ' . date('d.m.Y', $availability2->endDate);
+ $timeRange1 = date('H:i', strtotime($availability1->startTime)) . ' - ' . date('H:i', strtotime($availability1->endTime));
+ $timeRange2 = date('H:i', strtotime($availability2->startTime)) . ' - ' . date('H:i', strtotime($availability2->endTime));
+
+ if ($isEqual) {
+ $message = "Konflikt: Zwei Öffnungszeiten sind gleich.\n";
+ } else {
+ $message = "Konflikt: Zwei Öffnungszeiten überschneiden sich.\n";
+ }
+
+ if ($bothAreNew) {
+ $message .= "Neue Öffnungszeit: [$dateRange1, $timeRange1, Wochentag(e): " . $availability1->getWeekdayNames() . "]\n"
+ . "Neue Öffnungszeit: [$dateRange2, $timeRange2, Wochentag(e): " . $availability2->getWeekdayNames() . "]";
+ } else {
+ $message .= "Bestehende Öffnungszeit: [$dateRange2, $timeRange2, Wochentag(e): " . $availability2->getWeekdayNames() . "]\n"
+ . "Neue Öffnungszeit: [$dateRange1, $timeRange1, Wochentag(e): " . $availability1->getWeekdayNames() . "]";
+ }
+
+ return $message;
+ }
+
+ public function checkForConflictsWithExistingAvailabilities(
+ \DateTimeInterface $startDate,
+ \DateTimeInterface $endDate
+ ): ProcessList {
+ $processList = new ProcessList();
+ foreach ($this as $availability) {
+ $currentDate = clone $startDate;
+ while ($currentDate <= $endDate) {
+ if ($availability->isOpenedOnDate($currentDate)) {
+ $conflict = $availability->getConflict();
+ if ($conflict) {
+ $conflictOnDay = clone $conflict;
+ $appointmentTime = $conflictOnDay->getFirstAppointment()->getStartTime()->format('H:i');
+ $newDate = clone $currentDate;
+ $conflictOnDay->getFirstAppointment()->setDateTime($newDate->modify($appointmentTime));
+ $processList->addEntity($conflictOnDay);
+ }
+
+ // Check for overlaps with other availabilities on this date
+ $overlapList = $this->findOverlapsOnDate($availability, $currentDate);
+ if ($overlapList->count()) {
+ $processList->addList($overlapList);
+ }
+ }
+ $currentDate = $currentDate->modify('+1day');
+ }
+ }
+
+ return $processList;
+ }
+
+ public function findOverlapsOnDate(
+ Availability $availability,
+ \DateTimeInterface $currentDate
+ ): ProcessList {
+ $processList = new ProcessList();
+
+ foreach ($this as $availabilityCompare) {
+ if ($availability === $availabilityCompare) {
+ continue;
+ }
+
+ if ($availabilityCompare->isOpenedOnDate($currentDate)) {
+ if (!$this->shouldCompareForConflicts($availability, $availabilityCompare)) {
+ continue;
+ }
+
+ if ($this->doAvailabilitiesOverlap($availability, $availabilityCompare)) {
+ $isEqual = $this->areAvailabilityTimesEqual($availability, $availabilityCompare);
+
+ $conflict = new \BO\Zmsentities\Process();
+ $conflict->status = 'conflict';
+
+ $appointment = new \BO\Zmsentities\Appointment();
+ $appointment->date = $availability->startDate;
+ $appointment->availability = $availability;
+ $conflict->addAppointment($appointment);
+
+ $conflict->amendment = $this->createConflictMessage(
+ $availability,
+ $availabilityCompare,
+ false,
+ $isEqual
+ );
+
+ $conflict->getFirstAppointment()->date = $availability
+ ->getStartDateTime()
+ ->modify($currentDate->format("Y-m-d"))
+ ->getTimestamp();
+
+ $processList->addEntity($conflict);
+ }
+ }
+ }
+
+ return $processList;
+ }
+
+ protected function shouldCompareForConflicts(
+ Availability $availability1,
+ Availability $availability2
+ ): bool {
+ // Skip if they're not the same type
+ if (isset($availability1->type) && isset($availability2->type) && $availability1->type != $availability2->type) {
+ return false;
+ }
+
+ // Skip if they're not for the same scope (only if both have scope defined)
+ if (isset($availability1->scope) && isset($availability2->scope)) {
+ $scope1Id = is_array($availability1->scope) ? ($availability1->scope['id'] ?? null) : ($availability1->scope->id ?? null);
+ $scope2Id = is_array($availability2->scope) ? ($availability2->scope['id'] ?? null) : ($availability2->scope->id ?? null);
+
+ if ($scope1Id != $scope2Id) {
+ return false;
+ }
+ }
+
+ // Skip if they're part of the same series
+ if (
+ (isset($availability1->id) && isset($availability2->id) &&
+ $availability1->id === $availability2->id) ||
+ (isset($availability1->tempId) && isset($availability2->tempId) &&
+ $availability1->tempId === $availability2->tempId)
+ ) {
+ return false;
+ }
+
+ return true;
+ }
+
+ protected function doAvailabilitiesOverlap(
+ Availability $availability1,
+ Availability $availability2
+ ): bool {
+ // Check date overlap
+ $date1Start = (new \DateTimeImmutable())->setTimestamp($availability1->startDate);
+ $date1End = (new \DateTimeImmutable())->setTimestamp($availability1->endDate);
+ $date2Start = (new \DateTimeImmutable())->setTimestamp($availability2->startDate);
+ $date2End = (new \DateTimeImmutable())->setTimestamp($availability2->endDate);
+
+ if (!($date1Start <= $date2End && $date2Start <= $date1End)) {
+ return false;
+ }
+
+ // Check time overlap
+ $time1Start = strtotime($availability1->startTime);
+ $time1End = strtotime($availability1->endTime);
+ $time2Start = strtotime($availability2->startTime);
+ $time2End = strtotime($availability2->endTime);
+
+ return ($time1Start < $time2End && $time2Start < $time1End);
+ }
+
+ protected function areAvailabilityTimesEqual(
+ Availability $availability1,
+ Availability $availability2
+ ): bool {
+ $time1Start = strtotime($availability1->startTime);
+ $time1End = strtotime($availability1->endTime);
+ $time2Start = strtotime($availability2->startTime);
+ $time2End = strtotime($availability2->endTime);
+
+ return ($time1Start === $time2Start && $time1End === $time2End);
+ }
}
diff --git a/zmsentities/tests/Zmsentities/AvailabilityTest.php b/zmsentities/tests/Zmsentities/AvailabilityTest.php
index 79a6fcf59..ecb6008c8 100644
--- a/zmsentities/tests/Zmsentities/AvailabilityTest.php
+++ b/zmsentities/tests/Zmsentities/AvailabilityTest.php
@@ -179,7 +179,7 @@ public function testGetAvailableSecondsPerDay()
{
$entity = (new $this->entityclass())->getExample();
$withCalculatedSlots = $entity->withCalculatedSlots();
- $this->assertEquals(5346000, $withCalculatedSlots->getAvailableSecondsPerDay());
+ $this->assertEquals(6534000, $withCalculatedSlots->getAvailableSecondsPerDay());
}
public function testGetAvailableSecondsOnDateTime()
@@ -196,7 +196,7 @@ public function testGetAvailableSecondsOnDateTime()
$collection = new $this->collectionclass();
$collection->addEntity($entity);
$collection = $collection->withCalculatedSlots();
- $this->assertEquals(5346000, $collection->getAvailableSecondsOnDateTime($time));
+ $this->assertEquals(6534000, $collection->getAvailableSecondsOnDateTime($time));
}
public function testDayOff()
@@ -347,7 +347,6 @@ public function testIsBookableByScopeEnd()
$entity['startDate'] = $time->modify("-60 day")->getTimestamp();
$entity['endDate'] = $time->modify("+200 day")->getTimestamp();
$entity['scope'] = (new \BO\Zmsentities\Scope())->getExample();
- //error_log(__METHOD__ . ": $entity ". $time->format('c'));
$this->assertTrue(
$entity->isBookable($time->modify("+1month"), $time),
'Availability endInDays is before startInDays'
@@ -498,7 +497,7 @@ public function testWithCalculatedSlots()
{
$entity = (new $this->entityclass())->getExample();
$withCalculatedSlots = $entity->withCalculatedSlots();
- $this->assertTrue(81 == $withCalculatedSlots['workstationCount']['public'], $withCalculatedSlots);
+ $this->assertTrue(99 == $withCalculatedSlots['workstationCount']['public'], $withCalculatedSlots);
}
public function testGetSlotList()
@@ -507,9 +506,9 @@ public function testGetSlotList()
$entity = (new $this->entityclass())->getExample();
$collection->addEntity($entity);
$slotList = $collection->getSlotList();
- $this->assertTrue(28 == count($slotList));
+ $this->assertTrue(33 == count($slotList));
$this->assertEquals('10:00', $slotList->getFirst()['time']);
- $this->assertEquals('10:12', $slotList[1]['time']);
+ $this->assertEquals('10:10', $slotList[1]['time']);
}
public function testToString()
@@ -541,7 +540,7 @@ public function testCollection()
$this->assertTrue(
2 == count($collection),
'Amount of entities in collection failed, 2 expected (' .
- count($collection) . ' found)'
+ count($collection) . ' found)'
);
$this->assertTrue(
@@ -550,7 +549,7 @@ public function testCollection()
);
$this->assertTrue(
- 81 == $collection->withCalculatedSlots()[0]['workstationCount']['public'],
+ 99 == $collection->withCalculatedSlots()[0]['workstationCount']['public'],
'Failed to get list with calculated slots'
);
$collection->addEntity($entity);
@@ -867,47 +866,239 @@ public function testConflicts()
]);
$startDate = new \DateTimeImmutable('2016-04-19 09:00');
$endDate = new \DateTimeImmutable('2016-04-19 16:00');
- $conflicts = $availabilityList->getConflicts($startDate, $startDate);
+ $conflicts = $availabilityList->checkForConflictsWithExistingAvailabilities($startDate, $startDate);
$list = [];
foreach ($conflicts as $conflict) {
- /*error_log(
- "\n$conflict " .
- $conflict->amendment .
- "(ID: ". $conflict->getFirstAppointment()->getAvailability()->getId() ." ". $conflict->getFirstAppointment()->getAvailability()->getStartDateTime() ." - ". $conflict->getFirstAppointment()->getAvailability()->getEndDateTime() .")"
- );
- */
-
$id = $conflict->getFirstAppointment()->getAvailability()->getId();
- if (! isset($list[$conflict->amendment])) {
+ if (!isset($list[$conflict->amendment])) {
$list[$conflict->amendment] = [];
}
- if (! isset($list[$conflict->amendment][$id])) {
+ if (!isset($list[$conflict->amendment][$id])) {
$list[$conflict->amendment][$id] = 1;
} else {
$list[$conflict->amendment][$id] += 1;
}
}
-
- // Availability 1 und 5 überschneiden sich jeweils 3 mal
- $this->assertEquals(3, $list['Zwei Öffnungszeiten überschneiden sich.'][1]);
- $this->assertEquals(3, $list['Zwei Öffnungszeiten überschneiden sich.'][5]);
- // Availability 2, 4 und 6 überschneiden sich jeweils 2 mal
- $this->assertEquals(2, $list['Zwei Öffnungszeiten überschneiden sich.'][2]);
- $this->assertEquals(2, $list['Zwei Öffnungszeiten überschneiden sich.'][4]);
- $this->assertEquals(2, $list['Zwei Öffnungszeiten überschneiden sich.'][6]);
+ // Assertion for overlapping availabilities - Availability 1 and 5
+ $this->assertEquals(
+ 1,
+ $list[
+ "Konflikt: Zwei Öffnungszeiten überschneiden sich.\n" .
+ "Bestehende Öffnungszeit: [19.04.2016 - 19.04.2016, 10:00 - 13:00, Wochentag(e): Dienstag]\n" .
+ "Neue Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]"
+ ][1]
+ );
+
+ $this->assertEquals(
+ 1,
+ $list[
+ "Konflikt: Zwei Öffnungszeiten überschneiden sich.\n" .
+ "Bestehende Öffnungszeit: [19.04.2016 - 19.04.2016, 10:00 - 13:00, Wochentag(e): Dienstag]\n" .
+ "Neue Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]"
+ ][5]
+ );
+
+ // Assertions for overlapping availabilities - Availability 2, 4
+ $this->assertEquals(
+ 2,
+ $list[
+ "Konflikt: Zwei Öffnungszeiten überschneiden sich.\n" .
+ "Bestehende Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]\n" .
+ "Neue Öffnungszeit: [19.04.2016 - 19.04.2016, 10:00 - 13:00, Wochentag(e): Dienstag]"
+ ][2]
+ );
- // Availability 1 und 5 sind sich jeweils gleich
- $this->assertEquals(1, $list['Zwei Öffnungszeiten sind gleich.'][1]);
- $this->assertEquals(1, $list['Zwei Öffnungszeiten sind gleich.'][5]);
+ $this->assertEquals(
+ 2,
+ $list[
+ "Konflikt: Zwei Öffnungszeiten überschneiden sich.\n" .
+ "Bestehende Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]\n" .
+ "Neue Öffnungszeit: [19.04.2016 - 19.04.2016, 15:00 - 17:00, Wochentag(e): Dienstag]"
+ ][4]
+ );
- // Availability 3 hat eine falsche Slotgröße
+ // Assertions for exact matches - Availability 1 and 5
$this->assertEquals(
1,
- $list['Der eingestellte Zeitschlitz von 25 Minuten sollte in die eingestellte Uhrzeit passen.'][3]
+ $list[
+ "Konflikt: Zwei Öffnungszeiten sind gleich.\n" .
+ "Bestehende Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]\n" .
+ "Neue Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]"
+ ][1]
+ );
+
+ $this->assertEquals(
+ 1,
+ $list[
+ "Konflikt: Zwei Öffnungszeiten sind gleich.\n" .
+ "Bestehende Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]\n" .
+ "Neue Öffnungszeit: [19.04.2016 - 19.04.2016, 12:00 - 16:00, Wochentag(e): Dienstag]"
+ ][5]
+ );
+
+ // Assertion for slot size conflict remains unchanged
+ $this->assertEquals(
+ 1,
+ $list[
+ 'Der eingestellte Zeitschlitz von 25 Minuten sollte in die eingestellte Uhrzeit passen.'
+ ][3]
+ );
+
+
+ }
+
+ public function testPartialOverlaps()
+ {
+ $entity1 = new Availability([
+ 'id' => '1',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '08:00:00',
+ 'endTime' => '12:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ // Test overlap at start
+ $entity2 = new Availability([
+ 'id' => '2',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '07:00:00',
+ 'endTime' => '09:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ // Test overlap at end
+ $entity3 = new Availability([
+ 'id' => '3',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '11:00:00',
+ 'endTime' => '13:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ // Test completely contained
+ $entity4 = new Availability([
+ 'id' => '4',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '09:00:00',
+ 'endTime' => '11:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $list = new AvailabilityList([$entity1, $entity2, $entity3, $entity4]);
+ $conflicts = $list->checkForConflictsWithExistingAvailabilities(
+ new \DateTimeImmutable('2024-01-15 00:00:00'),
+ new \DateTimeImmutable('2024-01-15 23:59:59')
);
+
+ $this->assertEquals(6, $conflicts->count(), "Should detect all overlaps bidirectionally");
}
+ public function testEdgeCaseOverlaps()
+ {
+ // Test back-to-back times
+ $entity1 = new Availability([
+ 'id' => '1',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '08:00:00',
+ 'endTime' => '12:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $entity2 = new Availability([
+ 'id' => '2',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '12:00:00',
+ 'endTime' => '16:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ // Test overlap across midnight
+ $entity3 = new Availability([
+ 'id' => '3',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-16'),
+ 'startTime' => '23:00:00',
+ 'endTime' => '01:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $list = new AvailabilityList([$entity1, $entity2, $entity3]);
+ $conflicts = $list->checkForConflictsWithExistingAvailabilities(
+ new \DateTimeImmutable('2024-01-15 00:00:00'),
+ new \DateTimeImmutable('2024-01-16 23:59:59')
+ );
+
+ $this->assertEquals(0, $conflicts->count(), "Back-to-back times should not be considered overlapping");
+ }
+
+ public function testWeekdayOverlaps()
+ {
+ // Test same weekday, different weeks
+ $entity1 = new Availability([
+ 'id' => '1',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '08:00:00',
+ 'endTime' => '12:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []],
+ 'repeat' => ['afterWeeks' => '1']
+ ]);
+
+ $entity2 = new Availability([
+ 'id' => '2',
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-22'),
+ 'endDate' => strtotime('2024-01-22'),
+ 'startTime' => '08:00:00',
+ 'endTime' => '12:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []],
+ 'repeat' => ['afterWeeks' => '2']
+ ]);
+
+ // Test different weekdays, same times
+ $entity3 = new Availability([
+ 'id' => '3',
+ 'weekday' => ['tuesday' => '3'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'startTime' => '08:00:00',
+ 'endTime' => '12:00:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $list = new AvailabilityList([$entity1, $entity2, $entity3]);
+ $conflicts = $list->checkForConflictsWithExistingAvailabilities(
+ new \DateTimeImmutable('2024-01-15 00:00:00'),
+ new \DateTimeImmutable('2024-01-22 23:59:59')
+ );
+
+ $this->assertEquals(0, $conflicts->count(), "Different weeks or weekdays should not conflict");
+ }
protected function getExampleWithTypeOpeningHours(\DateTimeImmutable $time)
{
@@ -947,4 +1138,505 @@ protected function getExampleWithTypeOpeningHours(\DateTimeImmutable $time)
]
);
}
+
+ public function testValidateStartTime()
+ {
+ $entity = new Availability();
+ $today = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $tomorrow = new \DateTimeImmutable('2024-01-16 12:00:00');
+ $selectedDate = new \DateTimeImmutable('2024-01-16 12:00:00');
+
+ $startDate = new \DateTimeImmutable('2024-01-17 12:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-17 16:00:00');
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'current');
+ $this->assertCount(1, $errors);
+ $this->assertEquals('startTimeFuture', $errors[0]['type']);
+
+ $startDate = new \DateTimeImmutable('2024-01-15 23:30:00');
+ $endDate = new \DateTimeImmutable('2024-01-16 00:30:00');
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'current');
+ $this->assertCount(1, $errors);
+ $this->assertEquals('startOfDay', $errors[0]['type']);
+
+ $startDate = new \DateTimeImmutable('2024-01-15 10:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 16:00:00');
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'current');
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateEndTime()
+ {
+ $entity = new Availability();
+
+ $startDate = new \DateTimeImmutable('2024-01-15 14:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $errors = $entity->validateEndTime($startDate, $endDate);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('endTime', $errors[0]['type']);
+
+ $startDate = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-14 14:00:00');
+ $errors = $entity->validateEndTime($startDate, $endDate);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('endTime', $errors[0]['type']);
+
+ $startDate = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 16:00:00');
+ $errors = $entity->validateEndTime($startDate, $endDate);
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateOriginEndTimeWithPastAndFuture()
+ {
+ $entity = new Availability();
+ $today = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $yesterday = new \DateTimeImmutable('2024-01-14 12:00:00');
+ $selectedDate = new \DateTimeImmutable('2024-01-16 12:00:00');
+
+ $endDate = new \DateTimeImmutable('2024-01-14 10:00:00');
+ $errors = $entity->validateOriginEndTime($today, $yesterday, $endDate, $selectedDate, 'current');
+ $this->assertCount(2, $errors);
+ $this->assertEquals('endTimeFuture', $errors[0]['type']);
+ $this->assertEquals('endTimePast', $errors[1]['type']);
+
+ $errors = $entity->validateOriginEndTime($today, $yesterday, $endDate, $selectedDate, 'origin');
+ $this->assertCount(0, $errors);
+
+ $endDate = new \DateTimeImmutable('2024-01-16 16:00:00');
+ $errors = $entity->validateOriginEndTime($today, $yesterday, $endDate, $selectedDate, 'current');
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateType()
+ {
+ $entity = new Availability();
+
+ $errors = $entity->validateType('');
+ $this->assertCount(1, $errors);
+ $this->assertEquals('type', $errors[0]['type']);
+
+ $errors = $entity->validateType('appointment');
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateSlotTime()
+ {
+ $entity = new Availability();
+ $startDate = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 14:00:00');
+
+ $entity['slotTimeInMinutes'] = 0;
+ $errors = $entity->validateSlotTime($startDate, $endDate);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('slotTime', $errors[0]['type']);
+
+ $entity['slotTimeInMinutes'] = 25;
+ $errors = $entity->validateSlotTime($startDate, $endDate);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('slotCount', $errors[0]['type']);
+
+ $entity['slotTimeInMinutes'] = 30;
+ $errors = $entity->validateSlotTime($startDate, $endDate);
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateBookableDayRange()
+ {
+ $entity = new Availability();
+
+ $errors = $entity->validateBookableDayRange(10, 5);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('bookableDayRange', $errors[0]['type']);
+
+ $errors = $entity->validateBookableDayRange(5, 10);
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateStartTimeMaintenanceWindow()
+ {
+ $entity = new Availability([
+ 'scope' => ['id' => 141],
+ 'type' => 'appointment',
+ 'weekday' => ['monday' => true],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-16'),
+ 'startTime' => '23:00',
+ 'endTime' => '01:00'
+ ]);
+
+ $today = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $tomorrow = new \DateTimeImmutable('2024-01-16 12:00:00');
+ $selectedDate = new \DateTimeImmutable('2024-01-15 12:00:00');
+
+ $startDate = new \DateTimeImmutable('2024-01-15 23:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-16 01:00:00');
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'current');
+ $this->assertCount(1, $errors);
+ $this->assertEquals('startOfDay', $errors[0]['type']);
+
+ $entity['startTime'] = '22:00';
+ $entity['endTime'] = '00:30';
+ $startDate = new \DateTimeImmutable('2024-01-15 22:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-16 00:30:00');
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'current');
+ $this->assertCount(1, $errors);
+ $this->assertEquals('startOfDay', $errors[0]['type']);
+
+ $entity['startTime'] = '10:00';
+ $entity['endTime'] = '16:00';
+ $startDate = new \DateTimeImmutable('2024-01-15 10:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 16:00:00');
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'current');
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateStartTimeFutureDate()
+ {
+ $entity = new Availability([
+ 'scope' => ['id' => 141],
+ 'type' => 'appointment',
+ 'weekday' => ['monday' => true],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-16'),
+ 'startTime' => '10:00',
+ 'endTime' => '16:00'
+ ]);
+
+ $today = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $tomorrow = new \DateTimeImmutable('2024-01-16 12:00:00');
+ $selectedDate = new \DateTimeImmutable('2024-01-16 12:00:00'); // Set to tomorrow
+
+ $startDate = new \DateTimeImmutable('2024-01-17 10:00:00'); // Day after tomorrow
+ $endDate = new \DateTimeImmutable('2024-01-17 16:00:00');
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'current');
+ $this->assertCount(1, $errors);
+ $this->assertEquals('startTimeFuture', $errors[0]['type']);
+
+ $errors = $entity->validateStartTime($today, $tomorrow, $startDate, $endDate, $selectedDate, 'future');
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateEndTimeMinutePrecision()
+ {
+ $entity = new Availability();
+
+ $startDate = new \DateTimeImmutable('2024-01-15 14:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 14:00:00');
+ $errors = $entity->validateEndTime($startDate, $endDate);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('endTime', $errors[0]['type']);
+
+ $startDate = new \DateTimeImmutable('2024-01-15 14:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 14:01:00');
+ $errors = $entity->validateEndTime($startDate, $endDate);
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateSlotTimeDivisibility()
+ {
+ $entity = new Availability();
+ $startDate = new \DateTimeImmutable('2024-01-15 12:00:00');
+ $endDate = new \DateTimeImmutable('2024-01-15 13:00:00');
+
+ $entity['slotTimeInMinutes'] = 0;
+ $errors = $entity->validateSlotTime($startDate, $endDate);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('slotTime', $errors[0]['type']);
+
+ $entity['slotTimeInMinutes'] = 25;
+ $errors = $entity->validateSlotTime($startDate, $endDate);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('slotCount', $errors[0]['type']);
+
+ $entity['slotTimeInMinutes'] = 15;
+ $errors = $entity->validateSlotTime($startDate, $endDate);
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateBookableDayRangeOrder()
+ {
+ $entity = new Availability();
+
+ $errors = $entity->validateBookableDayRange(10, 5);
+ $this->assertCount(1, $errors);
+ $this->assertEquals('bookableDayRange', $errors[0]['type']);
+
+ $errors = $entity->validateBookableDayRange(5, 5);
+ $this->assertCount(0, $errors);
+
+ $errors = $entity->validateBookableDayRange(-5, -2);
+ $this->assertCount(0, $errors);
+ }
+
+ public function testValidateTypeAllowedValues()
+ {
+ $entity = new Availability();
+
+ $errors = $entity->validateType('');
+ $this->assertCount(1, $errors);
+ $this->assertEquals('type', $errors[0]['type']);
+
+ $validTypes = ['appointment', 'openinghours', 'intern', 'callcenter'];
+ foreach ($validTypes as $type) {
+ $errors = $entity->validateType($type);
+ $this->assertCount(0, $errors, "Type '$type' should be valid");
+ }
+ }
+
+ public function testGetSummerizedSlotCount()
+ {
+ $availability1 = new Availability([
+ 'id' => '1',
+ 'type' => 'appointment',
+ 'startTime' => '09:00:00',
+ 'endTime' => '10:00:00',
+ 'slotTimeInMinutes' => 10,
+ 'workstationCount' => ['intern' => 1, 'public' => 1],
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $availability2 = new Availability([
+ 'id' => '2',
+ 'type' => 'appointment',
+ 'startTime' => '10:00:00',
+ 'endTime' => '11:00:00',
+ 'slotTimeInMinutes' => 10,
+ 'workstationCount' => ['intern' => 1, 'public' => 1],
+ 'weekday' => ['monday' => '2'],
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $list = new AvailabilityList([$availability1, $availability2]);
+ $slotCounts = $list->getSummerizedSlotCount();
+
+ $this->assertEquals(6, $slotCounts['1'], "First availability should have 6 slots");
+ $this->assertEquals(6, $slotCounts['2'], "Second availability should have 6 slots");
+ }
+
+ public function testGetDefaults()
+ {
+ $entity = new Availability();
+ $defaults = $entity->getDefaults();
+
+ $this->assertEquals(0, $defaults['id']);
+ $this->assertEquals(1, $defaults['repeat']['afterWeeks']);
+ $this->assertEquals(0, $defaults['repeat']['weekOfMonth']);
+ $this->assertEquals(1, $defaults['bookable']['startInDays']);
+ $this->assertEquals(60, $defaults['bookable']['endInDays']);
+ $this->assertEquals(10, $defaults['slotTimeInMinutes']);
+ $this->assertEquals('appointment', $defaults['type']);
+
+ // Check all weekdays are initialized to 0
+ foreach (['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'] as $day) {
+ $this->assertEquals(0, $defaults['weekday'][$day]);
+ }
+ }
+
+ public function testIsMatchOf()
+ {
+ $entity1 = new Availability([
+ 'type' => 'appointment',
+ 'startTime' => '09:00:00',
+ 'endTime' => '17:00:00',
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15'),
+ 'weekday' => ['monday' => '2'],
+ 'repeat' => ['afterWeeks' => 1, 'weekOfMonth' => 0],
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ // Exact match
+ $entity2 = clone $entity1;
+ $this->assertTrue($entity1->isMatchOf($entity2));
+
+ // Different type
+ $entity2['type'] = 'openinghours';
+ $this->assertFalse($entity1->isMatchOf($entity2));
+
+ // Different time
+ $entity2 = clone $entity1;
+ $entity2['startTime'] = '10:00:00';
+ $this->assertFalse($entity1->isMatchOf($entity2));
+
+ // Different weekday
+ $entity2 = clone $entity1;
+ $entity2['weekday']['tuesday'] = '2';
+ $entity2['weekday']['monday'] = '0';
+ $this->assertFalse($entity1->isMatchOf($entity2));
+ }
+
+ public function testCacheClearing()
+ {
+ $entity = new Availability([
+ 'startTime' => '09:00:00',
+ 'endTime' => '17:00:00',
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15')
+ ]);
+
+ // Access times to populate cache
+ $startTime1 = $entity->getStartDateTime();
+ $endTime1 = $entity->getEndDateTime();
+
+ // Modify times
+ $entity['startTime'] = '10:00:00';
+ $entity['endTime'] = '18:00:00';
+
+ // Get new times
+ $startTime2 = $entity->getStartDateTime();
+ $endTime2 = $entity->getEndDateTime();
+
+ // Verify cache was cleared
+ $this->assertNotEquals($startTime1->format('H:i'), $startTime2->format('H:i'));
+ $this->assertNotEquals($endTime1->format('H:i'), $endTime2->format('H:i'));
+ }
+
+ public function testHasTimeEdgeCases()
+ {
+ $entity = new Availability([
+ 'startTime' => '09:00:00',
+ 'endTime' => '17:00:00',
+ 'startDate' => strtotime('2024-01-15'),
+ 'endDate' => strtotime('2024-01-15')
+ ]);
+
+ // Exactly at start time
+ $this->assertTrue($entity->hasTime(new \DateTimeImmutable('2024-01-15 09:00:00')));
+
+ // Just before start time
+ $this->assertFalse($entity->hasTime(new \DateTimeImmutable('2024-01-15 08:59:59')));
+
+ // Just before end time
+ $this->assertTrue($entity->hasTime(new \DateTimeImmutable('2024-01-15 16:59:59')));
+
+ // Exactly at end time
+ $this->assertFalse($entity->hasTime(new \DateTimeImmutable('2024-01-15 17:00:00')));
+ }
+
+ public function testGetAvailableSecondsPerDayWithTypes()
+ {
+ $entity = new Availability([
+ 'startTime' => '09:00:00',
+ 'endTime' => '17:00:00',
+ 'workstationCount' => [
+ 'intern' => 3,
+ 'public' => 2,
+ 'callcenter' => 1
+ ]
+ ]);
+
+ // 8 hours = 28800 seconds
+ $this->assertEquals(86400, $entity->getAvailableSecondsPerDay('intern')); // 28800 * 3
+ $this->assertEquals(57600, $entity->getAvailableSecondsPerDay('public')); // 28800 * 2
+ $this->assertEquals(28800, $entity->getAvailableSecondsPerDay('callcenter')); // 28800 * 1
+ }
+
+ public function testNoConflictsOnWednesday()
+ {
+ // Create two availabilities that overlap but only on Tuesdays
+ $availability1 = new Availability([
+ 'id' => '1',
+ 'weekday' => [
+ 'sunday' => '0',
+ 'monday' => '0',
+ 'tuesday' => '4', // Only active on Tuesday
+ 'wednesday' => '0',
+ 'thursday' => '0',
+ 'friday' => '0',
+ 'saturday' => '0'
+ ],
+ 'startDate' => strtotime('2025-02-04'), // A Tuesday
+ 'endDate' => strtotime('2025-06-30'),
+ 'startTime' => '14:00:00',
+ 'endTime' => '17:40:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $availability2 = new Availability([
+ 'id' => '2',
+ 'weekday' => [
+ 'sunday' => '0',
+ 'monday' => '0',
+ 'tuesday' => '4', // Only active on Tuesday
+ 'wednesday' => '0',
+ 'thursday' => '0',
+ 'friday' => '0',
+ 'saturday' => '0'
+ ],
+ 'startDate' => strtotime('2025-02-04'), // A Tuesday
+ 'endDate' => strtotime('2025-06-30'),
+ 'startTime' => '14:00:00',
+ 'endTime' => '17:40:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $list = new AvailabilityList([$availability1, $availability2]);
+ $conflicts = $list->checkForConflictsWithExistingAvailabilities(
+ new \DateTimeImmutable('2025-02-05 00:00:00'), // A Wednesday
+ new \DateTimeImmutable('2025-02-05 23:59:59')
+ );
+
+ $this->assertEquals(0, $conflicts->count(), "Should not detect conflicts on Wednesday for Tuesday-only availabilities");
+ }
+
+ public function testConflictsOnTuesday()
+ {
+ // Create two availabilities that overlap on Tuesdays
+ $availability1 = new Availability([
+ 'id' => '1',
+ 'weekday' => [
+ 'sunday' => '0',
+ 'monday' => '0',
+ 'tuesday' => '4', // Only active on Tuesday
+ 'wednesday' => '0',
+ 'thursday' => '0',
+ 'friday' => '0',
+ 'saturday' => '0'
+ ],
+ 'startDate' => strtotime('2025-02-04'), // A Tuesday
+ 'endDate' => strtotime('2025-06-30'),
+ 'startTime' => '14:00:00',
+ 'endTime' => '17:40:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $availability2 = new Availability([
+ 'id' => '2',
+ 'weekday' => [
+ 'sunday' => '0',
+ 'monday' => '0',
+ 'tuesday' => '4', // Only active on Tuesday
+ 'wednesday' => '0',
+ 'thursday' => '0',
+ 'friday' => '0',
+ 'saturday' => '0'
+ ],
+ 'startDate' => strtotime('2025-02-04'), // A Tuesday
+ 'endDate' => strtotime('2025-06-30'),
+ 'startTime' => '14:00:00',
+ 'endTime' => '17:40:00',
+ 'type' => 'appointment',
+ 'scope' => ['id' => '141', 'dayoff' => []]
+ ]);
+
+ $list = new AvailabilityList([$availability1, $availability2]);
+ $conflicts = $list->checkForConflictsWithExistingAvailabilities(
+ new \DateTimeImmutable('2025-02-04 00:00:00'), // A Tuesday
+ new \DateTimeImmutable('2025-02-04 23:59:59')
+ );
+
+ $this->assertGreaterThan(0, $conflicts->count(), "Should detect conflicts on Tuesday for overlapping Tuesday availabilities");
+ foreach ($conflicts as $conflict) {
+ $this->assertStringContainsString('Konflikt: Zwei Öffnungszeiten', $conflict->amendment);
+ }
+ }
+
}
diff --git a/zmsentities/tests/Zmsentities/ProcessTest.php b/zmsentities/tests/Zmsentities/ProcessTest.php
index b6f04dfae..aed0e503d 100644
--- a/zmsentities/tests/Zmsentities/ProcessTest.php
+++ b/zmsentities/tests/Zmsentities/ProcessTest.php
@@ -491,7 +491,7 @@ public function testToConflictListByDay()
//$this->assertEquals('Beispiel Termin', $list['2015-11-18'][0]['message']);
$this->assertEquals('18:52', $list['2015-11-18'][0]['appointments'][0]['startTime']);
// endTime = slotTimeInMinutes * slotCount 12X2 = 24
- $this->assertEquals('19:16', $list['2015-11-18'][0]['appointments'][0]['endTime']);
+ $this->assertEquals('19:12', $list['2015-11-18'][0]['appointments'][0]['endTime']);
}
public function testToQueue()