openapi: 3.0.0
info:
  title: Public Api
  description: >-
    # Descripción general


    La API pública de PGICS proporciona a los desarrolladores la capacidad de
    integrar y utilizar las funcionalidades de nuestro servicio web dentro de
    sus propias aplicaciones. A través de endpoints RESTful, se puede acceder a
    diversas operaciones, desde la gestión de datos hasta la ejecución de tareas
    especí­ficas en el entorno del servicio.


    Esta documentación detalla el uso de cada uno de los endpoints disponibles,
    proporcionando información sobre solicitudes y respuestas, parámetros
    requeridos y ejemplos prácticos.


    Para garantizar la seguridad de las solicitudes, la API utiliza **OAuth
    2.0** como mecanismo de autenticación. Antes de realizar solicitudes a los
    endpoints, los clientes deben autenticarse y obtener un token de acceso.
    Asegúrate de seguir el flujo adecuado de OAuth 2.0 (por ejemplo, el flujo de
    credenciales de cliente o de autorización) para obtener y renovar los
    tokens.


    Cada sección de la documentación incluye detalles sobre los métodos HTTP
    soportados (`GET`, `POST`, `PUT`, `DELETE`) y la estructura de los datos
    esperados, tanto en las solicitudes como en las respuestas.


    # Configuración inicial


    Para empezar a usar la API pública de PGICS, debes **solicitar**:


    1. Un **client_id de tipo open010_client**. Para incluir en todas las
    peticiones.
        

    Para ello debes hacer una solicitud a radmas@radmas.com, explicando el caso
    de uso que quieres resolver.


    En el caso de la aplicación pública solamente se necesita el client_id ya
    que no hace falta tener un usuario para crear avisos.


    Por ejemplo:


    > Solicito un client_id para el uso de la api de PGICS 
      

    Una vez que tengas el client_id podrás empezar a hacer uso de la API pública
    de PGICS.


    Todas las peticiones deben adjuntar como cabecera (_header_) este client_id.


    ``` bash

    -H "X-CLIENT-ID: YOUR_CLIENT_ID"

     ```

    ## Entornos disponibles


    PGICS cuenta con diferentes entornos para garantizar la calidad del
    desarrollo y la estabilidad del sistema en producción. Puedes acceder a los
    siguientes entornos:


    - Producción:
    [https://api-pgics.sevilla.org/](https://api-pgics.sevilla.org/)

     

     

     

    ## Autenticar usuario


    ### Obtener token


    Para obtener un Token con OAuth 2.0 puedes consultar como hacer login en el
    `POST` [de Security/Login](#tag/Security-greater-Security/operation/login).


    Una vez obtenido el token deberás mandarlo en las siguientes peticiones de
    esta forma:


    ```

    Authorization: Bearer YOUR_ACCESS_TOKEN

     ```

    ### Ejemplo de solicitud a la API pública usando el Token


    ``` bash

    curl -X GET \
      /recurso \
      -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
      -H "X-CLIENT-ID: YOUR_CLIENT_ID"

     ```

    ## Renovar token con refresh_token


    Cuando el `access_token` expire, se puede utilizar el `refresh_token`
    devuelto en la respuesta para obtener un nuevo `access_token` sin necesidad
    de volver a enviar las credenciales del usuario.


    Puedes consultar la peción en el `POST` [de Security/Refresh
    token](#tag/Security-greater-Security/operation/refreshToken).


    ### Prueba de autenticación


    Puedes comprobar si la autenticación ha ido conrrectamente haciendo la
    siguiente petición después de haber hecho login:


    ``` bash

    curl -X GET \
      /check_auth\
      -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
      -H "X-CLIENT-ID: YOUR_CLIENT_ID"

     ```

    Si todo ha ido bien recibrás un `true` por respuesta.


    Si no estás autenticado correctamente la respuesta será:


    ``` json

    {
      "message": "Authentication Required"
    }

     ```

    {{c360PublicLogin}}


    # Casos de uso


    ## Listar avisos


    Para listar avisos de PGICS, puedes utilizar el endpoint de
    [/requests](#tag/Request-greater-Request/operation/cgetRequests). Este
    endpoint es ideal para consultar y explorar los avisos gestionados en PGICS,
    permitiendo filtrar por categorías, ordenar según distintos criterios, y
    limitar la cantidad de datos retornados según las necesidades de la
    aplicación o usuario.


    ### Ejemplo de uso


    Obtener 30 avisos ordenados por la fecha más reciente


    ``` bash

    curl '/requests' \
         -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
         -H "X-CLIENT-ID: YOUR_CLIENT_ID" \
         -H 'Content-Type: application/json' \
         --data-raw '{
             "order": "newest_date_desc",
             "page": 1,
             "limit": 30,
             "timezone": "Europe/Madrid"
         }'

     ```

    Obtener los 10 avisos creados más recientemente filtrando por 2 categorías


    ``` bash

    curl '/requests' \
         -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
         -H "X-CLIENT-ID: YOUR_CLIENT_ID" \
         -H 'Content-Type: application/json' \
         --data-raw '{
             "fields": {
                "services": "591b33494e4ea840018b462c,591b33da4e4ea83a018b464f"
             }
             "order": "date_desc",
             "page": 1,
             "limit": 10,
             "timezone": "Europe/Madrid"
         }'

     ```

    ## Crear aviso


    La funcionalidad principal de la plataforma de PGICS es crear avisos y por
    lo tanto la API pública dispone de un
    [endpoint](#tag/Request-greater-Request/operation/createRequest) específico.
    Para ello será necesario obtener algunos datos como la categoría para la
    cual la API pública ofrece un [listado de
    categorías](#tag/Service-greater-Service/operation/listService)
    seleccionables disponibles. Si no se dispone de todos los datos completos
    sobre la ubicación del aviso, se pueden proporcionar una dirección o
    coordenadas iniciales, y [seleccionar un
    subproyecto](#tag/JurisdictionElement-greater-JurisdictionElement/operation/listJurisdictionElementsByJurisdiction)
    que permita completar automáticamente los [datos de localización
    ](#tag/Location-greater-Location/operation/listLocationAdditionalData)
    necesarios.


    En el proceso de creación del aviso, existe un campo denominado
    `additionalData` que podría requerir información adicional obligatoria. Para
    identificar qué datos específicos deben enviarse en este campo, se debe
    consultar previamente la información [detallada de la
    categoría](#tag/Service-greater-Service/operation/serviceDetail)
    seleccionada (service). Esta información se encuentra en:


    ```

    additionalData.configurable_questions[].required

     ```

    Ejemplo de estructura:


    ``` json

    "additionalData": {
      "requiredVariables": [],
      "configurable_questions": [
        {
          "editable": true,
          "hidden_in_detail": false,
          "hidden_in_form": false,
          "hidden_in_open010_detail": false,
          "hidden_in_open010_form": false,
          "question": {},
          "required": false
        }
      ]
    }

     ```

    ### Ejemplo de uso


    Crear un aviso con datos de localización


    ``` bash

    curl '/requests?jurisdiction_id=org.sevilla&return_data=false' \
              -H 'Content-Type: application/json' \
              -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
              -H 'X-CLIENT-ID: YOUR_CLIENT_ID' \
              --data-raw '{
                   "service_id":"591b33494e4ea840018b462c",
                   "description":"prueba",
                   "position":{
                      "lat":40.368926273981,
                      "lng":-3.742779151412
                   },
                   "address_string":"Calle Aguacate, 41",
                   "internal":true,
                   "jurisdiction_element":"5e5a3f17179796a7cbb93934"
                }'

     ```
  version: 1.0.0
servers:
  - url: https://api-pgics.sevilla.org
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    noauthAuth:
      type: http
      scheme: noauth
tags:
  - name: AdditionalData
    description: >-
      Representan información complementaria del ticket, relevante según el
      contexto.
  - name: AdditionalData > AdditionalData
    description: >-
      Representan información complementaria del ticket, relevante según el
      contexto.
  - name: AppConfiguration
  - name: AppConfiguration > AppConfiguration
  - name: Application
  - name: Application > Application
  - name: Channel
  - name: Channel > Channel
  - name: Jurisdiction
    description: >-
      El presente apartado permite la gestión de los proyectos que son la
      columna vertebral del sistema y en donde se clasifican los grupos,
      servicios, tipologias, etc. Usualmente son la representación de ciudades
      aunque también pueden incluirse edificios según sea el caso.
  - name: Jurisdiction > Jurisdiction
    description: ' '
  - name: Jurisdiction > JurisdictionOpen010User
  - name: JurisdictionElement
  - name: LegalTerms
    description: >-
      Conjunto de endpoints que permiten observar los términos legales del
      entorno según el tipo de cliente (api pública o privada).
  - name: LegalTerms > LegalTerms
  - name: Location
    description: ' '
  - name: Location > Location
    description: ' '
  - name: Management
  - name: Management > UpdatedVersion
  - name: MapLayer
  - name: MapLayer > MapLayer
  - name: Notification
    description: ' '
  - name: Notification > Unsubscribe
    description: ' '
  - name: POI
  - name: POI > PoiRoute
  - name: PoiExtraData
    description: ' '
  - name: PoiExtraData > PoiExtraData
    description: ' '
  - name: Release
  - name: Release > Release
  - name: Request
    description: >-
      Un ticket en es una solicitud digital para gestionar incidencias, tareas o
      requerimientos. Incluye información clave como descripción, prioridad,
      estado y asignación.
  - name: Request > Request Complaint
  - name: Request > Request
    description: ' '
  - name: Request > Request Evaluation
  - name: Request > Request File
    description: ' '
  - name: Request > Request Reiteration
  - name: RequestComment
  - name: RequestComment > Comment
  - name: SearchEngine
  - name: SearchEngine > SearchEngine
  - name: Security
    description: >-
      El apartado de seguridad incluye endpoints para gestionar el acceso y la
      sesión de usuarios, como login, logout, registro y restablecimiento de
      contraseña, garantizando control y seguridad en la plataforma
  - name: Security > Security
    description: ' '
  - name: Service
    description: >-
      Las categorías de servicio permiten la creación de tickets para órdenes de
      trabajo o solicitudes.
  - name: Service > Service
    description: ' '
  - name: SocialMedia
  - name: SocialMedia > SocialMedia
  - name: Translations
    description: Endpoints de traducción
  - name: Translations > Translate
  - name: Typology
    description: ' '
  - name: Typology > Typology
    description: ' '
  - name: User
    description: >-
      Los usuarios externos de PGICS interactúan mediante aplicaciones para
      crear y consultar el avance de sus solicitudes, recibir información
      oficial y acceder a servicios específicos del proyecto.
  - name: User > User
    description: ' '
  - name: User > User Custom Configuration
    description: ' '
  - name: User > User Public
  - name: WebHook
    description: Endpoints relacionados con webhooks
  - name: Widget
  - name: Widget > Widget
  - name: Zone
    description: >-
      Gestión de zonas geográficas y polígonos asociados a servicios. Permite
      obtener la configuración WMS necesaria para visualizar las zonas de un
      servicio en mapas interactivos.
  - name: Zone > Zone
    description: Endpoints relacionados con zonas geográficas y polígonos de servicios.
  - name: Default
  - name: Documentos
    description: ' '
  - name: Documentos > AdditionalData
    description: |
      | **Campo** | **Tipo** | **Descripción** |
      | --- | --- | --- |
      | question | String | [required]. ID o código de la pregunta adicional. |
      | answer | Object | [required]. Respuesta asociada a la pregunta. |
      | answer.value | Mixed | [required]. Valor según el tipo de pregunta. |
  - name: Documentos > Address
    description: |
      | **Campo** | **Tipo** | **Descripción** |
      | --- | --- | --- |
      | label | String | [optional]. Etiqueta de dirección. |
      | address_string | String | [optional]. Dirección textual. |
      | zipCode | String | [optional]. Código postal. |
      | country_code | String | [optional]. Código de país. |
      | state_or_province | String | [optional]. Estado o provincia. |
      | city | String | [optional]. Ciudad. |
      | district | String | [optional]. Distrito. |
  - name: Documentos > IdDocument
    description: |
      | **Campo** | **Tipo** | **Descripción** |
      | --- | --- | --- |
      | type | String | [required]. Tipo de documento según la jurisdicción. |
      | number | String | [required]. Número del documento. |
  - name: Documentos > NotificationConfiguration
    description: |
      | **Campo** | **Tipo** | **Descripción** |
      | --- | --- | --- |
      | alerts | Boolean | [optional]. Notificaciones de alertas. |
      | comments | Boolean | [optional]. Notificaciones de comentarios. |
      | follows | Boolean | [optional]. Notificaciones de seguimientos. |
      | requests | Boolean | [optional]. Notificaciones de solicitudes. |
  - name: Documentos > Phone
    description: |
      | **Campo** | **Tipo** | **Descripción** |
      | --- | --- | --- |
      | number | String | [required]. Número de teléfono. |
      | label | String | [optional]. Etiqueta. Valores según PhoneLabel. |
  - name: Documentos > SecurityAppConfiguration
    description: >
      | **Campo** | **Tipo** | **Descripción** |

      | --- | --- | --- |

      | app_notification | NotificationConfiguration | [optional]. Preferencias
      de notificaciones app. |

      | email_notification | NotificationConfiguration | [optional].
      Preferencias de notificaciones email. |
  - name: Documentos > UserDevice
    description: >-
      | **Campo** | **Tipo** | **Descripcion** |

      | --- | --- | --- |

      | app_key | Int | \[required\]. Permite identificar la validez de la
      solicitud controlando que el dispositivo que cierra sesión se encuentre
      dentro de los autorizados |

      | app_version | String | \[required\]. Permite verificar la versión de la
      aplicación de la plataforma que se encuentra en uso en el dispositivo
      (permite verificación de actualizaciones si están disponibles) |

      | brand | String | \[required\]. Valor que permite identificar la marca
      del dispositivo (Ej: Samsung, Huawei, etc). |

      | device_id | String | \[required\]. Identificador único del dispositivo.
      Se obtiene a partir de las cabeceras de la petición |

      | model | String | \[required\]. Permite identificar el modelo del
      dispositivo |

      | os_version | String | \[required\]. Permite identificar la versión en
      uso del sistema operativo del dispositivo |

      | registration_id | String | \[required\]. Identificador único que se
      utiliza principalmente en sistemas de mensajería y notificaciones push.
      Este id es esencial para identificar y gestionar dispositivos o instancias
      de aplicaciones específicas que están registradas para recibir
      notificaciones |

      | type | String | \[required\]. Permite identificar el tipo de sistema
      operativo que usa el dispositivo(\[Ej: Android, IOS) |
paths:
  /question/{questionId}/answers:
    get:
      tags:
        - AdditionalData > AdditionalData
      summary: List MassiveSingleListQuestion
      operationId: listMassiveSingleListQuestion
      description: >-
        Este endpoint permite listar las respuestas de una pregunta
        especificada.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | questionId | String | \[requiered\]. Identificador mongo de la lista
        masiva de preguntas a la cual se le desean consultar las respuestas. |
      security:
        - bearerAuth: []
      parameters:
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite limitar el número de resultados por
            página (por defecto 10)
          example: '{{limit}}'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados. Por
            defecto el valor es 1
          example: '{{page}}'
        - name: questionId
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso questionId.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: List MassiveSingleListQuestion OK
                  value:
                    type: massiveSingleValueList
                    active: true
                    code: '10'
                    help_text: ''
                    id: 6939de4e85416775c007e5d9
                    question: ¿How mock?
                    tags: []
                    archived: false
                    possible_answers:
                      - value: 1
                        archived: false
                      - value: 2
                        archived: false
                      - value: 1
                        archived: false
                    answers_count: 3
                example-1:
                  summary: List MassiveSingleListQuestion Question not found
                  value: 'null'
  /question/{questionId}/answers/search:
    get:
      tags:
        - AdditionalData > AdditionalData
      summary: Search MassiveSingleListQuestion
      operationId: searchMassiveSingleListQuestion
      description: >-
        Este endpoint permite realizar búsqueda de listas masivas de preguntas a
        partir de las respuestas relacionadas.


        | Campo | **Tipo** | **Descripción** |

        | --- | --- | --- |

        | questionId | String | \[required\]. Identificador mongo de la pregunta
        a la que se le realizará la búsqueda a partir de las respuestas
        relacionadas. |
      security:
        - bearerAuth: []
      parameters:
        - name: q
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Permite buscar preguntas de listas masivas a partir de sus
            respuestas.
          example: '{{searchQuery}}'
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite limitar el número de resultados por
            página (por defecto 10)
          example: '{{limit}}'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados. Por
            defecto el valor es 1
          example: '{{page}}'
        - name: questionId
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso questionId.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Search MassiveSingleListQuestion OK
                  value:
                    - value: mock 1
                      value_translations:
                        es: mock 1
                      archived: false
                    - value: mock 1
                      value_translations:
                        es: mock 2
                      archived: false
                    - value: mock 1
                      value_translations:
                        es: mock 3
                      archived: false
                example-1:
                  summary: Search MassiveSingleListQuestion without results
                  value: []
  /additional-data/external/question-list/{id}:
    get:
      tags:
        - AdditionalData > AdditionalData
      summary: Get External Data
      operationId: getExternalData
      description: >-
        Este endpoint permite obtener respuestas externas para la lista de
        preguntas especificada.  


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | questionId | String | \[required\]. Identificador mongo de la lista de
        preguntas a la que se le quieren dar respuestas externas. |
      security:
        - bearerAuth: []
      parameters:
        - name: id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso questionListId.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                data:
                  - question:
                      type: datetime
                      active: true
                      code: '1'
                      help_text: Indicar una fecha aproximada
                      help_text_translations:
                        es: Indicar una fecha aproximada
                      id: 6939e5ed8303d81a590dbf69
                      question: ¿Cuando ha sucedido?
                      question_translations:
                        es: ¿Cuando ha sucedido?
                      tags: []
                      archived: false
                    value: externalValue
                    editable: true
                    response_attribute: responseAttribute
                    required: false
                    hidden_in_form: false
                    hidden_in_detail: false
                    visibility: public
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: 'Error setting a value for one or more questions '
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Object not found
  /additional-data/external-data-question/{id}/answers:
    get:
      tags:
        - AdditionalData > AdditionalData
      summary: Get External Data Question Answers
      operationId: getExternalDataQuestionAnswers
      description: >-
        Este endpoint permite obtener el listado de posibles respuestas de la
        lista masiva de preguntas especificada.
      security:
        - bearerAuth: []
      parameters:
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite limitar el número de resultados por
            página (por defecto 90)
          example: '{{limit}}'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados. Por
            defecto el valor es 1
          example: '{{page}}'
        - name: q
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Permite buscar posibles respuestas de listas
            masivas a partir del texto especificado.
          example: '{{searchQuery}}'
        - name: id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso questionId.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get External Data Question Answers OK
                  value:
                    - value:
                        - externalValue
                      archived: false
                example-1:
                  summary: Get External Data Question Answers without results
                  value: []
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get External Data Question Answers with wrong question
                  value:
                    - code: 404
                      description: >-
                        Question must be either ExternalSingleListQuestion or
                        ExternalMultiListQuestion
                example-1:
                  summary: Get External Data Question Answers Not found
                  value:
                    - code: 404
                      description: Object not found
  /additional-data/use-case/question-list:
    post:
      tags:
        - AdditionalData > AdditionalData
      summary: Get Question List By Use Case
      operationId: getQuestionListByUseCase
      description: >-
        Este endpoint permite obtener la lista de preguntas configurables para
        un caso de uso y jurisdicción específica.


        | Campo | Tipo | Descripción |

        | --- | --- | --- |

        | jurisdiction | String | [required]. Identificador de jurisdicción
        (`jurisdiction_id`), por ejemplo `{{jurisdictionId}}`. |

        | use_case_type | String | [required]. Tipo de caso de uso válido
        (validado por `AssertUseCaseTypeConstraint`). |

        | config | Object | [optional]. Configuración adicional dependiente de
        `use_case_type`. |


        Headers recomendados: `X-CLIENT-ID` (requerido cuando
        `mandatory_client_header=true`) y `Authorization: Bearer
        {{token_public}}` (opcional).


        Error funcional adicional posible: `510` cuando `X-CLIENT-ID` es
        inválido o ausente y `mandatory_client_header=true`.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                jurisdiction: '{{jurisdictionId}}'
                use_case_type: broadcast
                config: {}
      security:
        - bearerAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          example: '{{clientId}}'
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                configurable_questions:
                  - id: 694bf7662b8cf47f930a1234
                    type: text
                    question: Describe el incidente
                    required: true
                configurable_questions_with_permissions: []
                requiredVariables: []
                tags: []
                use_cases: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: error.invalid_form
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: error.use_case.empty_question_list
  /app-element/{id}:
    get:
      tags:
        - AppConfiguration > AppConfiguration
      summary: Get App Element
      operationId: getAppElement
      description: >-
        **Request Params**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_element_id | String | \[requerido\] ID del elemento de aplicación
        que se desea consultar. |


        Este endpoint permite **obtener el detalle de un elemento de
        aplicación** a partir de su ID, siempre que el elemento exista y no se
        encuentre en la papelera.
      parameters:
        - name: id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso app element id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 693fdefe6feb6a72250a8a2a
                filter_configuration:
                  service_filter_configuration:
                    included: true
                    services:
                      - visible_name: Residuos Domésticos (Punto Limpio)
                        id: 68ffbe5983696bee0f0ed091
                        service_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/692deab4b5063296451042.png
                view_types:
                  - mine_poi
                required_strong_identification: false
                required_registered_resident: false
                map_layers:
                  - id: 691eea93a879b737810c4147
                    jurisdiction_element: 5c9b55579650e67d42985e80
                    name: Punto Limpio fijo
                    internal_name: buildings:punto_limpio_fijo_poi
  /appconfiguration:
    get:
      tags:
        - AppConfiguration > AppConfiguration
      summary: App Configurations
      operationId: appConfigurations
      description: >-
        **Description**


        Obtiene la configuración de una aplicación para una jurisdicción
        específica. Devuelve información de apariencia, elementos de la app,
        canales habilitados y onboarding.
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Identificador único de la jurisdicción para la cual se
            solicita la configuración.
          example: '{{jurisdiction_id}}'
        - name: type
          in: query
          schema:
            type: string
          required: true
          description: String.. Tipo de aplicación cliente que solicita la configuración.
          example: cityapp
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                jurisdiction_id: org.alcobendas
                app_icon_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/670655313d52a7.55147536.png
                app_elements:
                  - type: indoor_and_requests_card
                    channels: []
                    id: 68ca5872249a70d7a10b20c3
                    name: Punto Limpio
                    position: 0
                    preset: true
                    required: true
                    filter_configuration:
                      service_filter_configuration:
                        included: true
                        services:
                          - visible_name: Armarios de alumbrado en vía pública (Aviso)
                            id: 5620e94b6aa91814008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png
                    view_types:
                      - mine_poi
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: ''
                  - type: button
                    channels: []
                    id: 67e11f151e0ac394a0057abd
                    name: Reservas Deportivas
                    position: 1
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: >-
                          https://tramitesweb.alcobendas.org/gestiononline/axxxx20_asp_01/axxxx20_asp_01_03/opciones.aspx
                    icon: >-
                      data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAYAAAA8AXHiAAAQAElEQVR4AezdBZg0zVEH8MVCcEvQYMHdNUjQYCG4uwa34O7kC5oAwQnuDgkuwZ3g7u7ukPx/92y9b7/33Xu3ezvTO7vb93Rdy8y01NR0V1dX1T72avwNDMyAgUFYMyB1VLlaDcIaVDALBgZhzYLWUekgrEEDs2BgENYsaB2VDsI6FRroPM5BWJ0RfirNDcI6lTfdeZyDsDoj/FSaG4R1Km+68zgHYXVG+Kk0NwjrVN5053EOwuqM8JvNHXdqENZxv9+9jW4Q1t5Qf9wND8I67ve7t9ENwtob6o+74UFYx/1+9za6QVh7Q/1xNzwI6+b7HakJMTAIa0JkjqpuYmAQ1k1cjNSEGBiENSEyR1U3MTAI6yYu2tTTJ/MCgVcMvH7gHQMfuIZ3SKzMtedP2r2JRmgxcOqE9cxBxv0CHxn4xsDvBB4d+LPALwd+OPDNgS8K3LGGL06szLVfSdq9nvntpL8+8BGB+waeKXCy4dQI68nyps0435H4rwN/GPjWwMcF3jDw7IHrhufIg28c+PjAtwf+KKANbWlT2yk6jbBowproFTxB6vHCvynxPwbMOK+T+O6B88H1H0zh1wY+N4BI3jfx2wTuE3jtgPT7Jf6EgHu+LvEPBf4pcD5oQ1vaVLc+6Is+nb/3qPLHTFhPmTf1sQEzhyXqDZJuw98m872BBwbeLGDG8cyrJP3mgfcIfFTgswJfEXDvwxNLf2Ziy6d7PPvKyT9F4LkCnn1Q4u8P/EOgDfqgL/pklkR47fWjSR8jYd0jb+fTA38QQBjty7P0fUbKXyHw1AGz0IckNuv8bmK8UqJrBc/is8x2H5QaXi1wt8ArBR4S+NNABX1CmL+fAoT7rImPKhwTYZktMNkYcEvVk67fVEtM90zZ+wd+NIAQEs0a/j+1Y/LfO7GNAiJ7cNJFZE+ctGu/lfjLA3aiiQ4/HANheWFfk1fxmwFigbsmFn42/94kYDboSUxp8sJQRPY+ufqMAbzaLyUWHi//3jpgJ/otiZ8ncNDh0Anr/sG+l4PPSfIsYKQx2S+Z3DcElhrwai+SzhF3/FjiCq+XxM8FPiBwsO/nUDtulvqeIP6hgScPCJhlQkuMNCZb2SEA0cTLp6N4Mh9FkqsnzL9PDdihWr6TPKywHWEtY2zvnG78YuDVA8Lf5Z8l0It5ZNKHGnwYPop3zQCIJhKtfCi/kISZOdHhhEMirLsErXZcX5DY1j7R6hH594KBLwkcSzA+Y6rZi2DVzPxVGeDjBw4iHAphISRf9JuusUo+ZOZ6reT/PHBs4U8yIPI0crJ/Tlp4i/yz/CO0JJcdDoGw8Bg/ETTiQxKtyJteOgmihURHG4hDSPZfJiMkk0t0tjQSleAx5RcLSyeslwrmfjLw3AFBGqIJIuVPAX49gzRmO8UkV2RdPrQXl1kqLJmwqKbgM0jI4Y98B3PrKEb+lOCvMliM/HcmFqjqwM1ryCwRlkpY5FDUWOqwlsoK7YP/XCISO/Xp39MOmRdGPskVqT1RBYKTnxJ2rmuJhGVHRJJefaNh8MEZKZ4j0UkH0vt3DwacLyZakdjTmFicpL5enk4uAZ42nTDdP0li4WH55yA50QgNBpyFIihFT5V/cObAO8llhCURlmWPUpxzNNixtX4niQF3woDZm/iBZN5FO+dvS2Ixcq4lEdanBTG10/nppPFU/5d4hIsx8N8pdq5IPTrJ1cvmnxk+0f7DUgjL8cy7rdHxG4kx7/+WeITLMfAvuWxnSDUoyZXDeIJj6b3CEgiL3tSXrrHgK6Rl6fxvXTSiKzDg5IF60P+u77ODxquus/uJlkBYn52hk8skWlElplclPaDBwBVJumcIym20PahOS+8N9k1Yr5uRU3BLtCJZ/hSJAdfCgI/yUesnnanC7TrbP9onYdH7/sL1kP8jMQIjp0lyhGtgABvxtnmulkQrASFqivqHfRLWR2e4dVwjPZbAIGTHYMb6xHUdxDbwus72jfZFWAZNJcRoKe0xl5I+BqD9+RIZyAsFzMqJrh1KULxNBR+Tm38tIDwg/54u0D3si7CYXNVgP6kSBxzblZF+/3HGQEzyM4np4rOEdoD8+ck7QE+0UXjV3EX/jCZDkluHllflc2LrCnZ9YB+ExaeB8y59p3brsFl6V2A+1ftYg58GvhvYJZK9mYnPj8Ny/y4p/IGA3RtxSpJ3CmY6KtaI8vty1WxFPSbJrcNX5olfDQiOf55Boifsg7A+rBngVLMVs3XMv2MNL6RpYpbkPVarFf16B+QlKtHQv+YfO0JGscBHw2YwxWfByYIzvnbcrIkw2uRRlBcto242y4mvCyy861kGtJXuEvcmrGfJqBgLJDoTL0Cy9K7A6FMdjjUsSXPuhpwSmHlKo1W7XiKDWUTNKJUdI0DwlBSd5Tmyci/40PzzERCxOL7Cb7Yqx3+Z6zQ8El07mLWK14IfK8W1K9v2wd6EZUmoPtbupfLXjV8sD75coALz+e9KZg7iotLjcLwk22YjBIZnvEyrlWoxRhpDX1bQ5Ez6nq7eKTDJJ4K504UtC1peq+tRT2/C8gXDDZ8F3AdJ7wotwspsCnFRgnuiXSs/93zpQSnmI8vS1hqbKr8MWDpj4jkFcZ+zPnhgQygPHGep862S4TikZvhktw5mLZsHD9pgiLtAT8K6V0ZU/qfwHslOElizqMisoA2xvCXJcoMplt8V3igV3DsgOPTl8wpPJb8N8C1hydZX56SWQbNX1UG/6keSYSltk0OVKNlrh8L1c6YGuvOJ5g89CatmK6Oa0vS9iBUzzfDAS/t5jQQQHX5oCoSW9kWqXZlFLvKH5domgFGvHZ/drJd+0XPM7N170bVNy4qw3E/7QTw79CSsmoqpxWBapxgchx9VD1s8aYyv5caWXf55889L5Nrouksj3kidqWrFJIuvLOldgT4VpT0yK9ASq4/vy3ZtIM/bpZphkzxTqxHPDr0Ii/l7SYDJfKYaWJ2LrVar1eM2lTLytHvDY1QxeQ6lOMLHKts0Zhhb9+4qBqh6xPgruAEIqXaGlvN2o+PeXaBmLTI1+lu71LXRs70Iq10GebTbqHMb3FSzlFsvEk6SbZn+i1k2w5nJEHfNQJ69Cnj7q3su2/3VPdvGXBu1BIu3qo3ItnVddD+irXKaD5WeLe5FWPUSfYmWwikH5OhEfXgr8XlARJbDVihpWSYJN4NhnukwnX+uzRcPhKimNkGj5NjqT7FI+u628QnSpPl/s67HTL5Ozhf1ICx+PZ9tPYRiqtfZSSKiCxWZjW5nY8cm78Nzk5mHADXJs8BPO6k3XxBUeG4nVyrCsqM7e3DCf2/X1MV9ZCnsNcWTJAv3TgrAJJXerpIehPXCTePOBpvsJEnyqqqI5UqlL4r5feCD3fb+/KzAIsimgtwHw2smISG3dJT1C0b7onqnKEPwPDFPUddFdRRhuWYzIp4NehBWOwgqMlMPhnufmkkQB+HoVW2QDb1mbnqawHsFONpIdBYwuGY+M4nlk+sk8iYXp3bG8VgqXcOUPNW6yluiYhkUvqh/c0IPwnIMUmPg1KPSU8QOcPlQ/+p1ZcZjJ8jt0bro0ohai6UQMTrPc0DevoDzDz9fCq7ix3LLxoEwtG5uRQ1VNmXcrhbtKjJlGzfq8iJuZCZOVHWlU2RWmRp5zgM5iW01Je0Onedxy1192CS2sfjk3MgvqBkKP0Y6zjkJgSiLbHKl4rdy685BO1UJPq/Sc8R4UTI+dberiPzk0IOwinH34qYeQCu7auumekJrgHyoLd807QwPP0awStbEyx4VGcc4dlib1nPVfe3MSvZ21f27Xv+9dQU+mnVynmhuwsJD1NLx9zMM4S8uqdPOh4QcE96+wEse6X7JTrYabWVyVTZ13M6KeMmp679R39yE1ep8O7W/0fBECdqbVZVdDx6Jyoxpv8ox4c4Qr9ox1v09Y+KOao/mQ6Xnitt3MOvHNjdhkWEVktqvpcp2jc2ChJbqsUn4vCT8KJLl12xZ4DipGPzcsphQvA6haw8rJfiqwbcbhyqbLJ6bsNqvoh3UZANIRXVExFdUe3SUS4sPRVhmqx42le07aD/6yRE1N2EVf6Xj7aDkpwIuJKsuut0tMVf5EmPqPsVj/XinDrbvYDrCuqDzcxNW+5Lb9f2Crly7iHyG1FoFlsBD8flOcVCfQfVfek5oCat9N5O3OTdhtUcg+J3JB7Cu0EFyaXPScXLmtr602Mixks45HC4HavJzQrvczvk+VnMTVisQnfMLYShKkOmw2YuhK24W6G1nqO1NwEajtFrtYjd5Zop7WtakfTdT1H1LHXMTVnv+1UqZb+nERBkamIxGa+aSdjzDC8vSnL/6OeAaNtXkSs8dlyKhdtplUX5S6ElY7aAmHURTGb30VoLNAthRDDkWiTn1ZD+tW0xz82i3JNHH269bc3bKX/s6O3vUrhrtRz95wz0Jq52GJx/IukK8Con7OntL5JiHejJ5FgEqudGU6r+3NHZJhnZoXW4V/Kpszrh9B0dDWD1mrKssq23rnfnRaGWh7Axwzhd5vm4z6HuuC51FlgxuXTRVdNt62ncwh8D6RsNzz1jFTGuwHZT8HODnUKjBVN1kXHTezVbsC1lMWxp7Lj/VFzEz+5o1Witl13pAuxQeNGFBFr1yMYGgeG7AR5X1DvN3fAzN0ClM1nfpO11z2qjq0Kd9yNvI+bTvA6TBIT0LzD1j6TQBptgW248ESM8J1HPKLwRxA1P4Ui2es93L6sb3FSH9T27E27UyvhTNHuCidMkQ9qwN9iQsulN+Jm7WAa0rJ2Io+RADCTtCfNX6ctfIGSbeD3+lYe6NyneVfC+gbVtt1cde+cnjHoTV6rnjdSYfxAUVmg041WBe77LZkrkXxT3OzXrMnNoFHH744U5pyofMu6R7Awcm1eZREFY7iHZwNci5YttpRhGtnynSbs7NbCosB4xEHf8U8PUwZX/IzPimUif9evaM0vuAFvd012btQ48Zi09OEnAD6bUUagtg2Cn42eJTTVFWYBbB6zj+AY+TC2a1RJMEKjxkZioDiMrRk/Q+oHDPP1erIDlLX3oQlo7XF8J8qtWadK0HfE4aofvE/+f5bTaHGVwe8Tac2yYJhKCtjIrIg2uiSSq/RiVYkFJF5mLgGlVs90gvwmpnAkjerpe73W3TYPZ4RKrhHKOV5dgxssphoJrLOwe7T8srQlaZHaDDcWb+8vuCFuc2ErP3oxdhsXSp03RLwrYDYwfnZ+bwCZuq1DoPJHZgpGD24GWlxsvaGROvTrzYtv256H5yOp74LK91ndzK2Cu/r1g/tE1Fp3bL8rNBIXq2BtYV43VIwWWZHt3OgYfrFwEejW+rh+ci4Z6TeTs+03rBT+UaZ654CMI/54GMK8pfaC6v2NVxZkZQWHIl5buCGZFIA+GrCzEzgq0xK9sXELOUqKN1RzBrf3oRlkEwVRcDL0K8DVAvYfzKJY/lzEvk66oAc8qrDCQyZK26gG3cFAAAB8ZJREFUqdF4wWwCzSok8zYUdX2XWJvUdcyI+qQuJmf61prtK98X2JlW21iBSs8a9yQs1sm23AZ0neXQc5YwzwKzgrLzYMnVlsNmFjuYVkw7+8KpCIp+F17FLNmKKOwu75MO1TiT3Gu4a1ovFWgz/XlHKLk8T+hJWEZQ229HHO2X5No2YNbycsmfEFL7rGWXxS+GHMMu314/S1/jnyWVCrSNCMk5Yq1qLNEcbbSm/nVtnzHHc3Xobdbu1pfehPXQZmRcBDXZrZNmH25/qL+wJ6wKEIDtPgIgr3lwLhCUJtoqWNrMeGY+RMrqmuYEnqXwhq+Sp63anjBs1dCMN7e/o8N36oxN3Vp1IejW0vlyjEstSVrAL9VuRf66gCGnOcoZCGJtPQYiMm6KEIZjHjIrmg5mMl5p+G03yzh2QZxcInFxhEhsEKT9Xk5LmNpz3kfAisfalwrOVfjCU9oouQ9vZQMk3QV6E5ZB8TklBghBPAXYDdJxwsB76WaX8j1a9RPQOpQmenjLFDpuIRi1U+RRhpTeLEW8kcs3ApfY/K7zqUW12M+ZOPe7ccMCEy1uiV26dnEfhEVzkltGAyUNL+ZSfirw0s1UfruHTyu8ka/2KpmV60QWZjQuje6XDpkJ7TS5S+rG/KbdXYLZyg5YHcbddbbS6D4IS7vtF0TWpGwuYEiBvyDiwDf5ISWbBz+qRCxAGRCfRkThuiMn7rf1i9zHTDhX3+aq12/7VN0trqts9nhfhGWJwtMYoCOVlslUNieQa2HE8XvOMEnL/diSzcCc7faq2065eCu75+6zlYHui7C0Tfe85D13rFYr4gPlA66PAbwhWVrV0M5cVdYl3idhObdqz9VYzFBd6TLwI2zEYfvDmnHhMR1rNUX9kvskLKP061y2/dIsaOy2pAdsjwF+7G2GPEkEUhoW8t1h34RlwH7ugyBTmq567WbkB2yGAQRF3uZuPCRLa3I7+b3AEgiLIJJ/dgigi257PLefB20dC9wtA8GkWwqTXNGptzmS3hssgbAMnnyI3Eja1+eAl3WL/IDbY8CH6HSgdoGWQKKV2z/R6cpSCMtw8QilWkMVhtGD8gEXY8C7YyjilMEdBM+7HOyrYzLQudtU1r0YT8DDMRMtjZN0OwCWHnBnDDwkRU4GEq3ssB1TUSuS3zssibAg47/yD7IIL5NcYUgRm/SAmxiw4aHBoQSz7nyTqpD8ImBphAUpFNIgqnyWOlekn+7agNWKA19asHDBWMNZK/Ud+cXAEgkLcvzuDj6LVoHdDn6Lp5al9lef5wbCYz9I9cA0BA+MbvkxpS2bomUFHVxWj272xhkXo4vSryI8JVDljujmXaeRckBOS5XWghGb1X14dtPyi4MlExZkkceQyBdDb4lk+Ol3Bl0/BaCywzCDGyTjdUwDJ1wEyC8Slk5YkEaAymCBCos8VRdaCa3OufJjBI5NjNXhsvHRbL1XErQxEk0T5qjlEAjLuP3WDItiB9XyvmJCVFL6Y5y9aKlyJ05rtcZnpqYiTTUaDhYNh0JYkMj5PfVhlifkNspYMj8qCV92oqMIjrd4QWSgYUA+KjpWfnuRIa6yxcMhEVYhkzaEpaFMxX3RvmzqxJbJuu/QYhJ0Vt3EK+VGgN0ihx6skYgWDmZMh0hYkEsMgZH3ddNTV0byzOyerwRaqcoOARCUjwQzbqenz2whGUNQm2bDqOyg4FAJq5BMrsNbH36rykjuOXvDfzExq/KlxWZXRqQIio599Y8IwYfB4qic9Na1g4kPnbAgmqk96TNLZLOVMoD/4mzNif/9UzDrz6il/k0CFReanfTsza5+UKqeQ1BmKCZmi9/1VadvFx8DYdXYbMXtHPEkdlRVfu8kWGAzoDBDMJKlbpLiLoGXHJsL6i2WcJbZRAbVOMl5ERSCW63qygHHx0RY9RpYOt83Gf5GzQJJnoW75L8ZgmoOybXtu2MiTsnumWtTBS6vGcOylkYodrA2F3jCVseMVxoEhTd031TtL6KeYySsQqwdlWXFi2YjyIi1rjkW4r/KMRGdJpoBZjRHRtSjH5AbGbk6QkF4zuT4aLDlx8Mpc809TNdYxpglWR1Zxuxc/cKXmamdHfVBX/SJV5qjI6jg7SwcM2GdDTD/HGjTTrX74uUP0Xih5GK5fCPw84CAmKU9KKVM9G0OEB6C42TELIOPU+aae+7IveRM5E53T7oN2nAco01t64O+6FN739GlT4Gw2pfGKYjlzxLEvY9Dbio5yhzyut7ev03aL2IQG3Awok5LsTbMjOrfpe5t+rGIe0+NsFqkk2Lb6nMZaUYx45hV/KStIyNiDIy/M0nyMkYKdKEQjU2C4xXiDPd6Bp+Gj7I0qtNSrI22zZNJnzJhXfaS7d4cq2Dw7SQte5Y8SySisRw+MhUQXro3yRFaDAzCarFx2/S4sC0GBmFti7Fx/0YYGIS1EZrGTdtiYBDWthgb92+EgUFYG6Fp3LQtBgZhbYuxcf9GGBiEtRGaxk3bYuBQCWvbcY77O2NgEFZnhJ9Kc4OwTuVNdx7nIKzOCD+V5gZhncqb7jzOQVidEX4qzQ3COpU33XmckxFW536P5haOgUFYC39Bh9q9QViH+uYW3u9BWAt/QYfavUFYh/rmFt7vQVgLf0GH2r1BWIf65vbW780afgwAAAD///SfG+UAAAAGSURBVAMAtRKhWr/Ol5oAAAAASUVORK5CYII=
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11f3514e8b6c26d091155
                    name: Abono Deporte
                    position: 2
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: >-
                          https://www.alcobendas.org/es/temas/deportes/abono-deporte
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11f4c13f805828404fb29
                    name: Cita previa SAC
                    position: 3
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: https://www.alcobendas.org/es/cita-previa
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11f611fec160ca3059aa9
                    name: Actividades de agenda
                    position: 4
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: https://www.alcobendas.org/es/actividades
                    tags: []
                  - type: requests_card
                    channels: []
                    id: 67e11f7d734f7c4a4c07c15a
                    name: Alcobendas Actúa
                    position: 5
                    preset: true
                    required: false
                    filter_configuration:
                      service_filter_configuration:
                        included: false
                        services:
                          - visible_name: Armarios de alumbrado en vía pública (Aviso)
                            id: 5620e94b6aa91814008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png
                    view_types:
                      - mine
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: ''
                  - type: button
                    channels: []
                    id: 67e11fc21e0ac394a0057abe
                    name: Trámites electrónicos
                    position: 6
                    preset: true
                    required: false
                    button_type: urlCollection
                    collection:
                      - name: Todos los trámites
                        value: >-
                          https://www.alcobendas.org/es/tramites/lista-tramites?buscar=&field_tramite_municipal_value=All&field_tipo_de_tramite_target_id=All&field_canales_de_inscripcion_target_id=592&field_area_tematica_target_id=All&field_colectivo_target_id=All&field_etiquetas_busqueda_tramite_target_id=&field_unidad_responsable_target_id=
                      - name: Certificado de Empadronamiento
                        value: >-
                          https://tramitesweb.alcobendas.org/TramitesWeb/A150109_ASP_01/Tramite.ashx?CodTipoTramite=37&amp;AppAlcobendas=True
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11fdf99380b79840d6a38
                    name: Cursos
                    position: 7
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: https://www.alcobendas.org/es/cursos
                    tags: []
                  - type: youtube_card
                    channels: []
                    id: 67e2c537e94ef21c250863c2
                    name: Videos
                    position: 8
                    preset: true
                    required: false
                    view_types: []
                  - type: twitter_card
                    channels: []
                    id: 67e2c568da74be700f0af6e2
                    name: Twitter
                    position: 9
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                  - type: alerts_card
                    channels: []
                    id: 67e2c579f8a5e24548031722
                    name: Comunicados
                    position: 10
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements:
                      - id: 5c9b55579650e67d42985e80
                        visible_name: Alcobendas
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png
                  - type: news_card
                    channels: []
                    id: 67e2c5e5ba0266d459029ec6
                    name: Noticias
                    position: 11
                    preset: true
                    required: false
                    view_types: []
                    sources:
                      - channels: []
                        name: Ayto Alcobendas
                        predetermined: true
                        required: true
                        source_link: https://www.alcobendas.org/es/noticias-rss.xml
                        tags:
                          - name: Alcobendas
                            color: '#0271b8'
                            id: Alcobendas
                        time_source_id: '1742915045'
                  - type: my_requests_work_card
                    channels: []
                    id: 6834b4e723a58ba8ef04d1a2
                    name: prueba
                    position: 12
                    preset: true
                    required: false
                    view_type: ''
                    view_types:
                      - mine
                    typologies:
                      - id: 5850dca2e22c6d9f51b00c0f
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                        name: Aviso
                        visible_name: Aviso
                    button_type: ''
                  - type: alerts_card
                    channels: []
                    id: 68c2e3a486f0e16e890741b2
                    name: Comunicados pruebas S y G
                    position: 13
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements:
                      - id: 65c27852911e73e22d02f413
                        visible_name: prueba S y G
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                  - type: alerts_card
                    channels: []
                    id: 68c2e4ffecc18b72c7065602
                    name: comunicados sin subproyecto
                    position: 14
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements: []
                  - type: charts_card
                    channels: []
                    id: 68c844c7d05aae487b07b903
                    name: dsad
                    position: 15
                    preset: true
                    required: false
                    filter_configuration:
                      service_filter_configuration:
                        included: false
                        services: []
                    view_types:
                      - image
                    widget_url_relations:
                      - url: www.prueba.com
                        widget: {}
                      - url: www.prueba.com
                        widget: {}
                  - type: charts_card
                    channels: []
                    id: 68c8452dd05aae487b07b904
                    name: sadsa
                    position: 16
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - image
                    widget_url_relations:
                      - url: www.prueba.com
                        widget: {}
                  - type: twitter_card
                    channels: []
                    id: 68cc22b8cd026c8dc70ae857
                    name: PRUEBA TWITTER
                    position: 17
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                  - type: indoor_card
                    channels: []
                    id: 68d3a0a00d21637d990d3cf2
                    name: pois
                    position: 18
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - layers
                    gis_features: []
                  - type: requests_card
                    channels: []
                    id: 68da3c7002a78a6c060941ca
                    name: Boton tods
                    position: 20
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - button
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: all_map
                  - type: indoor_and_requests_card
                    channels: []
                    id: 68dab635684ec8a99308d4d2
                    name: sdasdas
                    position: 21
                    preset: true
                    required: false
                    filter_configuration:
                      service_filter_configuration:
                        included: true
                        services:
                          - visible_name: Armarios de alumbrado en vía pública (Aviso)
                            id: 5620e94b6aa91814008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png
                          - visible_name: Arquetas de alumbrado (Aviso)
                            id: 5620ec856aa918b1008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png
                          - visible_name: Cableado aéreo de alumbrado público (Aviso)
                            id: 5620ed7e6aa918b1008b456e
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                    view_types:
                      - mine_poi
                    required_strong_identification: true
                    required_registered_resident: true
                    button_type: ''
                  - type: alerts_card
                    channels: []
                    id: 68e52c4d0226f0138505d88d
                    name: prueba
                    position: 22
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements:
                      - id: 5c9b55579650e67d42985e80
                        visible_name: Alcobendas
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png
                  - type: requests_card
                    channels: []
                    id: 68e957dbd593d785fc0eda3a
                    name: Mi Prueba
                    position: 25
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - mine
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: ''
                  - type: my_requests_work_card
                    channels: []
                    id: 68e95c3fd593d785fc0eda3b
                    name: prueba
                    position: 26
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_type: ''
                    view_types:
                      - mine
                    typologies:
                      - id: 5850dca2e22c6d9f51b00c0f
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                        name: Aviso
                        visible_name: Aviso
                    button_type: ''
                  - type: indoor_card
                    channels: []
                    id: 6925850b8174d7d7060ca3a4
                    name: p
                    position: 27
                    preset: true
                    required: false
                    filter_configuration: {}
                    configuration:
                      content_image: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/692584fc14e5c3.80953306.png
                    view_types:
                      - layers
                    gis_features: []
                  - type: indoor_card
                    channels: []
                    id: 6926e08cced3313a34078494
                    name: p
                    position: 28
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer: {}
                        poi_id: alcobendas_poi_aparcamientos_pmr.234
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                  - type: indoor_card
                    channels: []
                    id: 69271151b65902cca40f572d
                    name: p
                    position: 29
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.4
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                  - type: indoor_card
                    channels: []
                    id: 692836bd3a1d9f7e01082b52
                    name: p
                    position: 30
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer: {}
                        poi_id: alcobendas_poi_aparcamientos_pmr.234
                  - type: indoor_card
                    channels: []
                    id: 692836cbd355ca5aae071d22
                    name: p
                    position: 31
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                channels:
                  - external: true
                    id: 5e2f5d97e8833f980e8b456a
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/570cae1c27eee.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/57d00b07b2dc9.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/569fbfcab7d8a.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/593e82201d727.png
                    name: Atención Ciudadana 02
                  - external: true
                    id: 6707a3e935d16ea8ba023692
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Taxista
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a3e98842b164282160.png
                  - external: true
                    id: 6707a490ff6dc1826d02d533
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Bombero
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a48fd858c053337675.png
                  - external: true
                    id: 6707a4d16fb710a4340702e3
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Turista
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a4d187a0c993521356.png
                  - external: true
                    id: 6707a53ce360bb733d012834
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Vida sana
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a53ca4399383615631.png
                  - external: true
                    id: 6707a56935d16ea8ba023693
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Turismo
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a56939566420847797.png
                  - external: true
                    id: 6707a59be360bb733d012835
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Ocio
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a59b3f6c2140711695.png
                  - external: true
                    id: 6707a5be6fb710a4340702e4
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Danza
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/6707a5bebb80d269611437.png
                  - external: true
                    id: 6707a5e435d16ea8ba023694
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56c1a52c13749.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/570cae1c27eee.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56968dfe929a7.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/57d00b07b2dc9.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/569fbfcab7d8a.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5f0f2d3adc0fb.png
                      - {}
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/66c5d56569743605092528.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/683db6687f3fe479045025.png
                    name: Arte
                  - external: true
                    id: 670e83a2be3d8d43720fc222
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: externo prueba
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670e83a2792b7028834372.png
                  - external: true
                    id: 670e90553ae05dcb6f088352
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: interno de prueba sin icono
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670e9054b45c5661002792.png
                  - external: true
                    id: 671173ec2395a6b7df0bf935
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: prueba231213232
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/671173ebd396c793603818.png
                  - external: true
                    id: 671ffea1405a78e44f089123
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: buenas
                  - external: true
                    id: 672cbeb8b52e10d5900e6042
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Canal_obligatorio
                  - external: true
                    id: 672cc15beb6d0d86b20b80b2
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: canal_obligatorio
                  - external: true
                    id: 672cde444b419fd019011795
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Prueba Global Channels
                  - external: true
                    id: 672d084c1daef4e30c09b762
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: CANAL_OBLIGATORIO
                  - external: true
                    id: 6738a3b069ce60555305a215
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: global channel
                  - external: true
                    id: 6738ab9a69ce60555305a217
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: canal global 3
                  - external: true
                    id: 6738ac474d2e5d4fa405a573
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: canal global 4
                  - external: true
                    id: 673b2f790800c3a3200781c2
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: asdasd
                  - external: true
                    id: 673db80cff77ca803d07e126
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Test 1
                  - external: true
                    id: 673db84068b70779b5011b8e
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: Test 2
                  - external: true
                    id: 673db8696b60131e9c0210a7
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png
                    name: Global Externo
                  - external: true
                    id: 682201462e7c5fccfd005939
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: prueba1
                  - external: true
                    id: 6822018233b2a2d5910ba782
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: prueba1 epg
                  - external: true
                    id: 68c00ca5a50dbd22a304a205
                    jurisdictions:
                      - icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                    name: empadronado
                default_language: es
                font_color: '#ffffff'
                headboard:
                  images:
                    - image_metadata:
                        type: URL
                        extra_data:
                          url: tel:+3434545645
                      image_url: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/67862a00974c58.00278616.png
                  type: images
                login_background_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/68e38acdc58910.05431754.jpg
                login_logo_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706550cc629b4.21210239.png
                main_color: '#006629'
                managers_icon_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706551b8a5748.76715535.jpg
                name: Alcobendas
                type: cityapp
                onboarding:
                  steps:
                    - image: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/679103bbda3984.14458606.png
                      title: '1'
                      description: f
                    - image: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/675997ee0c3475.46372102.png
                      title: '2'
                      description: '2'
                    - image: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/67bc290de2a813.33911649.png
                      title: '3'
                      description: test
                    - image: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/onboarding/67bda76e371489.86056488.png
                      title: '4'
                      description: '4'
                buttons:
                  - type: button
                    channels: []
                    id: 67e11f151e0ac394a0057abd
                    name: Reservas Deportivas
                    position: 1
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: >-
                          https://tramitesweb.alcobendas.org/gestiononline/axxxx20_asp_01/axxxx20_asp_01_03/opciones.aspx
                    icon: >-
                      data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAYAAAA8AXHiAAAQAElEQVR4AezdBZg0zVEH8MVCcEvQYMHdNUjQYCG4uwa34O7kC5oAwQnuDgkuwZ3g7u7ukPx/92y9b7/33Xu3ezvTO7vb93Rdy8y01NR0V1dX1T72avwNDMyAgUFYMyB1VLlaDcIaVDALBgZhzYLWUekgrEEDs2BgENYsaB2VDsI6FRroPM5BWJ0RfirNDcI6lTfdeZyDsDoj/FSaG4R1Km+68zgHYXVG+Kk0NwjrVN5053EOwuqM8JvNHXdqENZxv9+9jW4Q1t5Qf9wND8I67ve7t9ENwtob6o+74UFYx/1+9za6QVh7Q/1xNzwI6+b7HakJMTAIa0JkjqpuYmAQ1k1cjNSEGBiENSEyR1U3MTAI6yYu2tTTJ/MCgVcMvH7gHQMfuIZ3SKzMtedP2r2JRmgxcOqE9cxBxv0CHxn4xsDvBB4d+LPALwd+OPDNgS8K3LGGL06szLVfSdq9nvntpL8+8BGB+waeKXCy4dQI68nyps0435H4rwN/GPjWwMcF3jDw7IHrhufIg28c+PjAtwf+KKANbWlT2yk6jbBowproFTxB6vHCvynxPwbMOK+T+O6B88H1H0zh1wY+N4BI3jfx2wTuE3jtgPT7Jf6EgHu+LvEPBf4pcD5oQ1vaVLc+6Is+nb/3qPLHTFhPmTf1sQEzhyXqDZJuw98m872BBwbeLGDG8cyrJP3mgfcIfFTgswJfEXDvwxNLf2Ziy6d7PPvKyT9F4LkCnn1Q4u8P/EOgDfqgL/pklkR47fWjSR8jYd0jb+fTA38QQBjty7P0fUbKXyHw1AGz0IckNuv8bmK8UqJrBc/is8x2H5QaXi1wt8ArBR4S+NNABX1CmL+fAoT7rImPKhwTYZktMNkYcEvVk67fVEtM90zZ+wd+NIAQEs0a/j+1Y/LfO7GNAiJ7cNJFZE+ctGu/lfjLA3aiiQ4/HANheWFfk1fxmwFigbsmFn42/94kYDboSUxp8sJQRPY+ufqMAbzaLyUWHi//3jpgJ/otiZ8ncNDh0Anr/sG+l4PPSfIsYKQx2S+Z3DcElhrwai+SzhF3/FjiCq+XxM8FPiBwsO/nUDtulvqeIP6hgScPCJhlQkuMNCZb2SEA0cTLp6N4Mh9FkqsnzL9PDdihWr6TPKywHWEtY2zvnG78YuDVA8Lf5Z8l0It5ZNKHGnwYPop3zQCIJhKtfCi/kISZOdHhhEMirLsErXZcX5DY1j7R6hH594KBLwkcSzA+Y6rZi2DVzPxVGeDjBw4iHAphISRf9JuusUo+ZOZ6reT/PHBs4U8yIPI0crJ/Tlp4i/yz/CO0JJcdDoGw8Bg/ETTiQxKtyJteOgmihURHG4hDSPZfJiMkk0t0tjQSleAx5RcLSyeslwrmfjLw3AFBGqIJIuVPAX49gzRmO8UkV2RdPrQXl1kqLJmwqKbgM0jI4Y98B3PrKEb+lOCvMliM/HcmFqjqwM1ryCwRlkpY5FDUWOqwlsoK7YP/XCISO/Xp39MOmRdGPskVqT1RBYKTnxJ2rmuJhGVHRJJefaNh8MEZKZ4j0UkH0vt3DwacLyZakdjTmFicpL5enk4uAZ42nTDdP0li4WH55yA50QgNBpyFIihFT5V/cObAO8llhCURlmWPUpxzNNixtX4niQF3woDZm/iBZN5FO+dvS2Ixcq4lEdanBTG10/nppPFU/5d4hIsx8N8pdq5IPTrJ1cvmnxk+0f7DUgjL8cy7rdHxG4kx7/+WeITLMfAvuWxnSDUoyZXDeIJj6b3CEgiL3tSXrrHgK6Rl6fxvXTSiKzDg5IF60P+u77ODxquus/uJlkBYn52hk8skWlElplclPaDBwBVJumcIym20PahOS+8N9k1Yr5uRU3BLtCJZ/hSJAdfCgI/yUesnnanC7TrbP9onYdH7/sL1kP8jMQIjp0lyhGtgABvxtnmulkQrASFqivqHfRLWR2e4dVwjPZbAIGTHYMb6xHUdxDbwus72jfZFWAZNJcRoKe0xl5I+BqD9+RIZyAsFzMqJrh1KULxNBR+Tm38tIDwg/54u0D3si7CYXNVgP6kSBxzblZF+/3HGQEzyM4np4rOEdoD8+ck7QE+0UXjV3EX/jCZDkluHllflc2LrCnZ9YB+ExaeB8y59p3brsFl6V2A+1ftYg58GvhvYJZK9mYnPj8Ny/y4p/IGA3RtxSpJ3CmY6KtaI8vty1WxFPSbJrcNX5olfDQiOf55Boifsg7A+rBngVLMVs3XMv2MNL6RpYpbkPVarFf16B+QlKtHQv+YfO0JGscBHw2YwxWfByYIzvnbcrIkw2uRRlBcto242y4mvCyy861kGtJXuEvcmrGfJqBgLJDoTL0Cy9K7A6FMdjjUsSXPuhpwSmHlKo1W7XiKDWUTNKJUdI0DwlBSd5Tmyci/40PzzERCxOL7Cb7Yqx3+Z6zQ8El07mLWK14IfK8W1K9v2wd6EZUmoPtbupfLXjV8sD75coALz+e9KZg7iotLjcLwk22YjBIZnvEyrlWoxRhpDX1bQ5Ez6nq7eKTDJJ4K504UtC1peq+tRT2/C8gXDDZ8F3AdJ7wotwspsCnFRgnuiXSs/93zpQSnmI8vS1hqbKr8MWDpj4jkFcZ+zPnhgQygPHGep862S4TikZvhktw5mLZsHD9pgiLtAT8K6V0ZU/qfwHslOElizqMisoA2xvCXJcoMplt8V3igV3DsgOPTl8wpPJb8N8C1hydZX56SWQbNX1UG/6keSYSltk0OVKNlrh8L1c6YGuvOJ5g89CatmK6Oa0vS9iBUzzfDAS/t5jQQQHX5oCoSW9kWqXZlFLvKH5domgFGvHZ/drJd+0XPM7N170bVNy4qw3E/7QTw79CSsmoqpxWBapxgchx9VD1s8aYyv5caWXf55889L5Nrouksj3kidqWrFJIuvLOldgT4VpT0yK9ASq4/vy3ZtIM/bpZphkzxTqxHPDr0Ii/l7SYDJfKYaWJ2LrVar1eM2lTLytHvDY1QxeQ6lOMLHKts0Zhhb9+4qBqh6xPgruAEIqXaGlvN2o+PeXaBmLTI1+lu71LXRs70Iq10GebTbqHMb3FSzlFsvEk6SbZn+i1k2w5nJEHfNQJ69Cnj7q3su2/3VPdvGXBu1BIu3qo3ItnVddD+irXKaD5WeLe5FWPUSfYmWwikH5OhEfXgr8XlARJbDVihpWSYJN4NhnukwnX+uzRcPhKimNkGj5NjqT7FI+u628QnSpPl/s67HTL5Ozhf1ICx+PZ9tPYRiqtfZSSKiCxWZjW5nY8cm78Nzk5mHADXJs8BPO6k3XxBUeG4nVyrCsqM7e3DCf2/X1MV9ZCnsNcWTJAv3TgrAJJXerpIehPXCTePOBpvsJEnyqqqI5UqlL4r5feCD3fb+/KzAIsimgtwHw2smISG3dJT1C0b7onqnKEPwPDFPUddFdRRhuWYzIp4NehBWOwgqMlMPhnufmkkQB+HoVW2QDb1mbnqawHsFONpIdBYwuGY+M4nlk+sk8iYXp3bG8VgqXcOUPNW6yluiYhkUvqh/c0IPwnIMUmPg1KPSU8QOcPlQ/+p1ZcZjJ8jt0bro0ohai6UQMTrPc0DevoDzDz9fCq7ix3LLxoEwtG5uRQ1VNmXcrhbtKjJlGzfq8iJuZCZOVHWlU2RWmRp5zgM5iW01Je0Onedxy1192CS2sfjk3MgvqBkKP0Y6zjkJgSiLbHKl4rdy685BO1UJPq/Sc8R4UTI+dberiPzk0IOwinH34qYeQCu7auumekJrgHyoLd807QwPP0awStbEyx4VGcc4dlib1nPVfe3MSvZ21f27Xv+9dQU+mnVynmhuwsJD1NLx9zMM4S8uqdPOh4QcE96+wEse6X7JTrYabWVyVTZ13M6KeMmp679R39yE1ep8O7W/0fBECdqbVZVdDx6Jyoxpv8ox4c4Qr9ox1v09Y+KOao/mQ6Xnitt3MOvHNjdhkWEVktqvpcp2jc2ChJbqsUn4vCT8KJLl12xZ4DipGPzcsphQvA6haw8rJfiqwbcbhyqbLJ6bsNqvoh3UZANIRXVExFdUe3SUS4sPRVhmqx42le07aD/6yRE1N2EVf6Xj7aDkpwIuJKsuut0tMVf5EmPqPsVj/XinDrbvYDrCuqDzcxNW+5Lb9f2Crly7iHyG1FoFlsBD8flOcVCfQfVfek5oCat9N5O3OTdhtUcg+J3JB7Cu0EFyaXPScXLmtr602Mixks45HC4HavJzQrvczvk+VnMTVisQnfMLYShKkOmw2YuhK24W6G1nqO1NwEajtFrtYjd5Zop7WtakfTdT1H1LHXMTVnv+1UqZb+nERBkamIxGa+aSdjzDC8vSnL/6OeAaNtXkSs8dlyKhdtplUX5S6ElY7aAmHURTGb30VoLNAthRDDkWiTn1ZD+tW0xz82i3JNHH269bc3bKX/s6O3vUrhrtRz95wz0Jq52GJx/IukK8Con7OntL5JiHejJ5FgEqudGU6r+3NHZJhnZoXW4V/Kpszrh9B0dDWD1mrKssq23rnfnRaGWh7Axwzhd5vm4z6HuuC51FlgxuXTRVdNt62ncwh8D6RsNzz1jFTGuwHZT8HODnUKjBVN1kXHTezVbsC1lMWxp7Lj/VFzEz+5o1Witl13pAuxQeNGFBFr1yMYGgeG7AR5X1DvN3fAzN0ClM1nfpO11z2qjq0Kd9yNvI+bTvA6TBIT0LzD1j6TQBptgW248ESM8J1HPKLwRxA1P4Ui2es93L6sb3FSH9T27E27UyvhTNHuCidMkQ9qwN9iQsulN+Jm7WAa0rJ2Io+RADCTtCfNX6ctfIGSbeD3+lYe6NyneVfC+gbVtt1cde+cnjHoTV6rnjdSYfxAUVmg041WBe77LZkrkXxT3OzXrMnNoFHH744U5pyofMu6R7Awcm1eZREFY7iHZwNci5YttpRhGtnynSbs7NbCosB4xEHf8U8PUwZX/IzPimUif9evaM0vuAFvd012btQ48Zi09OEnAD6bUUagtg2Cn42eJTTVFWYBbB6zj+AY+TC2a1RJMEKjxkZioDiMrRk/Q+oHDPP1erIDlLX3oQlo7XF8J8qtWadK0HfE4aofvE/+f5bTaHGVwe8Tac2yYJhKCtjIrIg2uiSSq/RiVYkFJF5mLgGlVs90gvwmpnAkjerpe73W3TYPZ4RKrhHKOV5dgxssphoJrLOwe7T8srQlaZHaDDcWb+8vuCFuc2ErP3oxdhsXSp03RLwrYDYwfnZ+bwCZuq1DoPJHZgpGD24GWlxsvaGROvTrzYtv256H5yOp74LK91ndzK2Cu/r1g/tE1Fp3bL8rNBIXq2BtYV43VIwWWZHt3OgYfrFwEejW+rh+ci4Z6TeTs+03rBT+UaZ654CMI/54GMK8pfaC6v2NVxZkZQWHIl5buCGZFIA+GrCzEzgq0xK9sXELOUqKN1RzBrf3oRlkEwVRcDL0K8DVAvYfzKJY/lzEvk66oAc8qrDCQyZK26gG3cFAAAB8ZJREFUqdF4wWwCzSok8zYUdX2XWJvUdcyI+qQuJmf61prtK98X2JlW21iBSs8a9yQs1sm23AZ0neXQc5YwzwKzgrLzYMnVlsNmFjuYVkw7+8KpCIp+F17FLNmKKOwu75MO1TiT3Gu4a1ovFWgz/XlHKLk8T+hJWEZQ229HHO2X5No2YNbycsmfEFL7rGWXxS+GHMMu314/S1/jnyWVCrSNCMk5Yq1qLNEcbbSm/nVtnzHHc3Xobdbu1pfehPXQZmRcBDXZrZNmH25/qL+wJ6wKEIDtPgIgr3lwLhCUJtoqWNrMeGY+RMrqmuYEnqXwhq+Sp63anjBs1dCMN7e/o8N36oxN3Vp1IejW0vlyjEstSVrAL9VuRf66gCGnOcoZCGJtPQYiMm6KEIZjHjIrmg5mMl5p+G03yzh2QZxcInFxhEhsEKT9Xk5LmNpz3kfAisfalwrOVfjCU9oouQ9vZQMk3QV6E5ZB8TklBghBPAXYDdJxwsB76WaX8j1a9RPQOpQmenjLFDpuIRi1U+RRhpTeLEW8kcs3ApfY/K7zqUW12M+ZOPe7ccMCEy1uiV26dnEfhEVzkltGAyUNL+ZSfirw0s1UfruHTyu8ka/2KpmV60QWZjQuje6XDpkJ7TS5S+rG/KbdXYLZyg5YHcbddbbS6D4IS7vtF0TWpGwuYEiBvyDiwDf5ISWbBz+qRCxAGRCfRkThuiMn7rf1i9zHTDhX3+aq12/7VN0trqts9nhfhGWJwtMYoCOVlslUNieQa2HE8XvOMEnL/diSzcCc7faq2065eCu75+6zlYHui7C0Tfe85D13rFYr4gPlA66PAbwhWVrV0M5cVdYl3idhObdqz9VYzFBd6TLwI2zEYfvDmnHhMR1rNUX9kvskLKP061y2/dIsaOy2pAdsjwF+7G2GPEkEUhoW8t1h34RlwH7ugyBTmq567WbkB2yGAQRF3uZuPCRLa3I7+b3AEgiLIJJ/dgigi257PLefB20dC9wtA8GkWwqTXNGptzmS3hssgbAMnnyI3Eja1+eAl3WL/IDbY8CH6HSgdoGWQKKV2z/R6cpSCMtw8QilWkMVhtGD8gEXY8C7YyjilMEdBM+7HOyrYzLQudtU1r0YT8DDMRMtjZN0OwCWHnBnDDwkRU4GEq3ssB1TUSuS3zssibAg47/yD7IIL5NcYUgRm/SAmxiw4aHBoQSz7nyTqpD8ImBphAUpFNIgqnyWOlekn+7agNWKA19asHDBWMNZK/Ud+cXAEgkLcvzuDj6LVoHdDn6Lp5al9lef5wbCYz9I9cA0BA+MbvkxpS2bomUFHVxWj272xhkXo4vSryI8JVDljujmXaeRckBOS5XWghGb1X14dtPyi4MlExZkkceQyBdDb4lk+Ol3Bl0/BaCywzCDGyTjdUwDJ1wEyC8Slk5YkEaAymCBCos8VRdaCa3OufJjBI5NjNXhsvHRbL1XErQxEk0T5qjlEAjLuP3WDItiB9XyvmJCVFL6Y5y9aKlyJ05rtcZnpqYiTTUaDhYNh0JYkMj5PfVhlifkNspYMj8qCV92oqMIjrd4QWSgYUA+KjpWfnuRIa6yxcMhEVYhkzaEpaFMxX3RvmzqxJbJuu/QYhJ0Vt3EK+VGgN0ihx6skYgWDmZMh0hYkEsMgZH3ddNTV0byzOyerwRaqcoOARCUjwQzbqenz2whGUNQm2bDqOyg4FAJq5BMrsNbH36rykjuOXvDfzExq/KlxWZXRqQIio599Y8IwYfB4qic9Na1g4kPnbAgmqk96TNLZLOVMoD/4mzNif/9UzDrz6il/k0CFReanfTsza5+UKqeQ1BmKCZmi9/1VadvFx8DYdXYbMXtHPEkdlRVfu8kWGAzoDBDMJKlbpLiLoGXHJsL6i2WcJbZRAbVOMl5ERSCW63qygHHx0RY9RpYOt83Gf5GzQJJnoW75L8ZgmoOybXtu2MiTsnumWtTBS6vGcOylkYodrA2F3jCVseMVxoEhTd031TtL6KeYySsQqwdlWXFi2YjyIi1rjkW4r/KMRGdJpoBZjRHRtSjH5AbGbk6QkF4zuT4aLDlx8Mpc809TNdYxpglWR1Zxuxc/cKXmamdHfVBX/SJV5qjI6jg7SwcM2GdDTD/HGjTTrX74uUP0Xih5GK5fCPw84CAmKU9KKVM9G0OEB6C42TELIOPU+aae+7IveRM5E53T7oN2nAco01t64O+6FN739GlT4Gw2pfGKYjlzxLEvY9Dbio5yhzyut7ev03aL2IQG3Awok5LsTbMjOrfpe5t+rGIe0+NsFqkk2Lb6nMZaUYx45hV/KStIyNiDIy/M0nyMkYKdKEQjU2C4xXiDPd6Bp+Gj7I0qtNSrI22zZNJnzJhXfaS7d4cq2Dw7SQte5Y8SySisRw+MhUQXro3yRFaDAzCarFx2/S4sC0GBmFti7Fx/0YYGIS1EZrGTdtiYBDWthgb92+EgUFYG6Fp3LQtBgZhbYuxcf9GGBiEtRGaxk3bYuBQCWvbcY77O2NgEFZnhJ9Kc4OwTuVNdx7nIKzOCD+V5gZhncqb7jzOQVidEX4qzQ3COpU33XmckxFW536P5haOgUFYC39Bh9q9QViH+uYW3u9BWAt/QYfavUFYh/rmFt7vQVgLf0GH2r1BWIf65vbW780afgwAAAD///SfG+UAAAAGSURBVAMAtRKhWr/Ol5oAAAAASUVORK5CYII=
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11f3514e8b6c26d091155
                    name: Abono Deporte
                    position: 2
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: >-
                          https://www.alcobendas.org/es/temas/deportes/abono-deporte
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11f4c13f805828404fb29
                    name: Cita previa SAC
                    position: 3
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: https://www.alcobendas.org/es/cita-previa
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11f611fec160ca3059aa9
                    name: Actividades de agenda
                    position: 4
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: https://www.alcobendas.org/es/actividades
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11fc21e0ac394a0057abe
                    name: Trámites electrónicos
                    position: 6
                    preset: true
                    required: false
                    button_type: urlCollection
                    collection:
                      - name: Todos los trámites
                        value: >-
                          https://www.alcobendas.org/es/tramites/lista-tramites?buscar=&field_tramite_municipal_value=All&field_tipo_de_tramite_target_id=All&field_canales_de_inscripcion_target_id=592&field_area_tematica_target_id=All&field_colectivo_target_id=All&field_etiquetas_busqueda_tramite_target_id=&field_unidad_responsable_target_id=
                      - name: Certificado de Empadronamiento
                        value: >-
                          https://tramitesweb.alcobendas.org/TramitesWeb/A150109_ASP_01/Tramite.ashx?CodTipoTramite=37&amp;AppAlcobendas=True
                    tags: []
                  - type: button
                    channels: []
                    id: 67e11fdf99380b79840d6a38
                    name: Cursos
                    position: 7
                    preset: true
                    required: false
                    button_type: url
                    collection:
                      - value: https://www.alcobendas.org/es/cursos
                    tags: []
                cards:
                  - type: indoor_and_requests_card
                    channels: []
                    id: 68ca5872249a70d7a10b20c3
                    name: Punto Limpio
                    position: 0
                    preset: true
                    required: true
                    filter_configuration:
                      service_filter_configuration:
                        included: true
                        services:
                          - visible_name: Armarios de alumbrado en vía pública (Aviso)
                            id: 5620e94b6aa91814008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png
                    view_types:
                      - mine_poi
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: ''
                  - type: requests_card
                    channels: []
                    id: 67e11f7d734f7c4a4c07c15a
                    name: Alcobendas Actúa
                    position: 5
                    preset: true
                    required: false
                    filter_configuration:
                      service_filter_configuration:
                        included: false
                        services:
                          - visible_name: Armarios de alumbrado en vía pública (Aviso)
                            id: 5620e94b6aa91814008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png
                    view_types:
                      - mine
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: ''
                  - type: youtube_card
                    channels: []
                    id: 67e2c537e94ef21c250863c2
                    name: Videos
                    position: 8
                    preset: true
                    required: false
                    view_types: []
                  - type: twitter_card
                    channels: []
                    id: 67e2c568da74be700f0af6e2
                    name: Twitter
                    position: 9
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                  - type: alerts_card
                    channels: []
                    id: 67e2c579f8a5e24548031722
                    name: Comunicados
                    position: 10
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements:
                      - id: 5c9b55579650e67d42985e80
                        visible_name: Alcobendas
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png
                  - type: news_card
                    channels: []
                    id: 67e2c5e5ba0266d459029ec6
                    name: Noticias
                    position: 11
                    preset: true
                    required: false
                    view_types: []
                    sources:
                      - channels: []
                        name: Ayto Alcobendas
                        predetermined: true
                        required: true
                        source_link: https://www.alcobendas.org/es/noticias-rss.xml
                        tags:
                          - name: Alcobendas
                            color: '#0271b8'
                            id: Alcobendas
                        time_source_id: '1742915045'
                  - type: my_requests_work_card
                    channels: []
                    id: 6834b4e723a58ba8ef04d1a2
                    name: prueba
                    position: 12
                    preset: true
                    required: false
                    view_type: ''
                    view_types:
                      - mine
                    typologies:
                      - id: 5850dca2e22c6d9f51b00c0f
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                        name: Aviso
                        visible_name: Aviso
                    button_type: ''
                  - type: alerts_card
                    channels: []
                    id: 68c2e3a486f0e16e890741b2
                    name: Comunicados pruebas S y G
                    position: 13
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements:
                      - id: 65c27852911e73e22d02f413
                        visible_name: prueba S y G
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                  - type: alerts_card
                    channels: []
                    id: 68c2e4ffecc18b72c7065602
                    name: comunicados sin subproyecto
                    position: 14
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements: []
                  - type: charts_card
                    channels: []
                    id: 68c844c7d05aae487b07b903
                    name: dsad
                    position: 15
                    preset: true
                    required: false
                    filter_configuration:
                      service_filter_configuration:
                        included: false
                        services: []
                    view_types:
                      - image
                    widget_url_relations:
                      - url: www.prueba.com
                        widget: {}
                      - url: www.prueba.com
                        widget: {}
                  - type: charts_card
                    channels: []
                    id: 68c8452dd05aae487b07b904
                    name: sadsa
                    position: 16
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - image
                    widget_url_relations:
                      - url: www.prueba.com
                        widget: {}
                  - type: twitter_card
                    channels: []
                    id: 68cc22b8cd026c8dc70ae857
                    name: PRUEBA TWITTER
                    position: 17
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                  - type: indoor_card
                    channels: []
                    id: 68d3a0a00d21637d990d3cf2
                    name: pois
                    position: 18
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - layers
                    gis_features: []
                  - type: requests_card
                    channels: []
                    id: 68da3c7002a78a6c060941ca
                    name: Boton tods
                    position: 20
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - button
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: all_map
                  - type: indoor_and_requests_card
                    channels: []
                    id: 68dab635684ec8a99308d4d2
                    name: sdasdas
                    position: 21
                    preset: true
                    required: false
                    filter_configuration:
                      service_filter_configuration:
                        included: true
                        services:
                          - visible_name: Armarios de alumbrado en vía pública (Aviso)
                            id: 5620e94b6aa91814008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19417dba90.png
                          - visible_name: Arquetas de alumbrado (Aviso)
                            id: 5620ec856aa918b1008b4567
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png
                          - visible_name: Cableado aéreo de alumbrado público (Aviso)
                            id: 5620ed7e6aa918b1008b456e
                            service_icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                    view_types:
                      - mine_poi
                    required_strong_identification: true
                    required_registered_resident: true
                    button_type: ''
                  - type: alerts_card
                    channels: []
                    id: 68e52c4d0226f0138505d88d
                    name: prueba
                    position: 22
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types: []
                    jurisdiction_elements:
                      - id: 5c9b55579650e67d42985e80
                        visible_name: Alcobendas
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png
                  - type: requests_card
                    channels: []
                    id: 68e957dbd593d785fc0eda3a
                    name: Mi Prueba
                    position: 25
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - mine
                    required_strong_identification: false
                    required_registered_resident: false
                    button_type: ''
                  - type: my_requests_work_card
                    channels: []
                    id: 68e95c3fd593d785fc0eda3b
                    name: prueba
                    position: 26
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_type: ''
                    view_types:
                      - mine
                    typologies:
                      - id: 5850dca2e22c6d9f51b00c0f
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                        name: Aviso
                        visible_name: Aviso
                    button_type: ''
                  - type: indoor_card
                    channels: []
                    id: 6925850b8174d7d7060ca3a4
                    name: p
                    position: 27
                    preset: true
                    required: false
                    filter_configuration: {}
                    configuration:
                      content_image: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/692584fc14e5c3.80953306.png
                    view_types:
                      - layers
                    gis_features: []
                  - type: indoor_card
                    channels: []
                    id: 6926e08cced3313a34078494
                    name: p
                    position: 28
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer: {}
                        poi_id: alcobendas_poi_aparcamientos_pmr.234
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                  - type: indoor_card
                    channels: []
                    id: 69271151b65902cca40f572d
                    name: p
                    position: 29
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.4
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                  - type: indoor_card
                    channels: []
                    id: 692836bd3a1d9f7e01082b52
                    name: p
                    position: 30
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer: {}
                        poi_id: alcobendas_poi_aparcamientos_pmr.234
                  - type: indoor_card
                    channels: []
                    id: 692836cbd355ca5aae071d22
                    name: p
                    position: 31
                    preset: true
                    required: false
                    filter_configuration: {}
                    view_types:
                      - individual_poi
                    gis_features:
                      - map_layer:
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        poi_id: alcobendas_poi_aparcabicicletas.1
                preset_external_services: []
                non_preset_external_services: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: >-
                    Parameter "jurisdiction_id" of value "NULL" violated a
                    constraint "Este valor no debería ser nulo."
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Application Not Found App Configurations
                  value:
                    - code: 404
                      description: Application was not found
                example-1:
                  summary: Not Fount Jurisdiction App Configurations
                  value:
                    - code: 404
                      description: jurisdiction_id was not found
  /appconfigurationcommon:
    get:
      tags:
        - AppConfiguration > AppConfiguration
      summary: App Configuration Common
      operationId: appConfigurationCommon
      description: >-
        **Description**


        Obtiene la configuración común de una aplicación para una jurisdicción
        específica. Devuelve un objeto Configuration serializado con el grupo
        app_configuration_common_open010.
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. ID de la jurisdicción. Se usa para buscar la jurisdicción
            (excluyendo las que están en papelera de reciclaje)
          example: '{{jurisdiction_id}}'
        - name: type
          in: query
          schema:
            type: string
          required: true
          description: String.. Tipo de aplicación a buscar
          example: cityapp
        - name: ignore_channels
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Si es true o no hay usuario autenticado, usa el
            grupo de serialización app_configuration_channels. Si es false y hay
            usuario, usa app_configuration_user_channels
          example: 'true'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                app_icon_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/670655313d52a7.55147536.png
                app_elements:
                  - type: indoor_and_requests_card
                    channels: []
                    id: 68ca5872249a70d7a10b20c3
                    name: Punto Limpio
                    preset: true
                    required: true
                    button_type: ''
                default_language: es
                font_color: '#ffffff'
                headboard:
                  images:
                    - image_metadata:
                        type: URL
                        extra_data:
                          url: tel:+3434545645
                      image_url: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/67862a00974c58.00278616.png
                  type: images
                login_background_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/68e38acdc58910.05431754.jpg
                login_logo_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706550cc629b4.21210239.png
                main_color: '#006629'
                managers_icon_url: >-
                  https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706551b8a5748.76715535.jpg
                name: Alcobendas
                type: cityapp
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Not Found App Configuration Common
                  value:
                    - code: 404
                      description: Object not found
                example-1:
                  summary: Jurisdiction Not Found App Configuration Common
                  value:
                    - code: 404
                      description: jurisdiction_id was not found
                example-2:
                  summary: Application Not Found App Configuration Common
                  value:
                    - code: 404
                      description: Application was not found
  /external-service/{id}:
    get:
      tags:
        - AppConfiguration > AppConfiguration
      summary: Get External Service
      operationId: getExternalService
      description: >-
        **Description**


        Obtiene los datos de un servicio externo (ExternalService) específico
        por su ID. Los servicios externos representan integraciones con SDKs y
        servicios de terceros utilizados por la aplicación.


        **Request Param**


        | **Campo** | Tipo | **Descripcion** |

        | --- | --- | --- |

        | external_service_id | String | ID único del ExternalService (MongoDB
        ObjectId) |
      parameters:
        - name: id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso external service id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                botConfiguration:
                  id: 6893757b270bdcf65a056f77
                  hostUrl: http://localhost:5200/
                  position:
                    right: 1rem
                    bottom: 1rem
                id: 6893757b270bdcf65a056f76
                name: Test
                provider: bot_web
                type: bot_web
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: External Service was not found
  /applications/{app_key}:
    get:
      tags:
        - Application > Application
      summary: Get Application
      operationId: getApplication
      description: >-
        **Description**


        Obtiene los detalles de una aplicación específica a través de su
        app_key. Solo devuelve aplicaciones que estén activas y no estén en la
        papelera de reciclaje.}


        **Request Param**


        | Campo | **Tipo** | Description |

        | --- | --- | --- |

        | app_key | int | Clave única numérica de la aplicación |
      parameters:
        - name: app_key
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso app key.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                default_jurisdiction_id: org.alcobendas
                active: true
                logo: http://www.radmas.com/clientes/ayto/img/logo.png
                name: Alcobendas_CanaryBOT
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: app_key does not exist or is not allowed
  /channel/list/category/{category}:
    get:
      tags:
        - Channel > Channel
      summary: List Channel By Category
      operationId: listChannelByCategory
      description: >-
        **Description**


        Lista los canales (Channels) que son externos y auto-asignables
        filtrados por una categoría específica.


        **Request Param**


        | Campo | **Tipo** | **Description** |

        | --- | --- | --- |

        | category | String | Categoría del canal a filtrar |
      parameters:
        - name: category
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso category.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - category: interest
                  description: Beta Tester - Icono
                  external: true
                  external_name: pruebatester
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670ccd7f9c833279214538.png
                  id: 5cc6a0b08d7a6a0b0b8b45ad
                  jurisdiction_elements:
                    - id: 5c9b557e9650e67d42985e8d
                      name: Ciudad BBVA
                      is_main: false
                  jurisdictions:
                    - id: 5be19ecb9a35c4850a8b45b1
                      jurisdiction_id: bbva
                      name: BBVA
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png
                  name: Beta Tester
                  order: 3
                  self_assignable: true
                  visible: true
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Category mock was not found
  /jurisdictions:
    get:
      tags:
        - Jurisdiction > Jurisdiction
      summary: Jurisdictions List
      operationId: jurisdictionsList
      description: >-
        El endpoint devuelve un listado de jurisdicciones. Opcionalmente, acepta
        los query params `lat` y `long` para priorizar los resultados por
        proximidad al punto indicado, y `app_key` para limitar el listado a las
        jurisdicciones asociadas a esa aplicación
      security:
        - bearerAuth: []
      parameters:
        - name: app_Key
          in: query
          schema:
            type: integer
          description: >-
            Int. [optional]. (1234555). Permite limita el resultado a las
            jurisdicciones asociadas a esa aplicación (incluida su jurisdicción
            por defecto). Si no se envía, no aplica filtro por aplicación.
          example: '1234555'
        - name: lat
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. (40.35497). Permite estableces coordenadas
            geográficas (latitud) para un filtrado más exacto de los resultados
            (formato decimal)
          example: '{{latitude}}'
        - name: long
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. (-3.54806).  Permite estableces coordenadas
            geográficas (longitud) para un filtrado más exacto de los resultados
            (formato decimal)
          example: '{{longitude}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Response OK Jurisdictions List with results
                  value:
                    only_registered_users: true
                    max_upload_files: 5
                    automatic_typology: false
                    map_layers:
                      - backend: OWS
                        endpoint: https://gis.mejoratuciudad.org/geoserver
                        id: 5d9ee7d1de2efef4018b4582
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Riv_Barrios
                        name: Barrios
                        description: Barrios
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                    accepted_id_documents: []
                    buttons: []
                    channels:
                      - external: false
                        id: 5e2f5cb6e8833f960e8b457a
                        name: Gestores Avisos
                    company_emails:
                      - comentarios.rivas@mejoratuciudad.org
                    geo_bound:
                      - lat: 40.411038646944
                        long: -3.4700083830236
                    geo_perimeter:
                      - lat: 40.327458668663
                        long: -3.4704022742792
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png
                    id: 59bf9b3e76e456ac018b4569
                    jurisdiction_elements:
                      - map_layers:
                          - backend: OWS
                            endpoint: https://gis.mejoratuciudad.org/geoserver
                            id: 5d9ee7d1de2efef4018b4582
                            is_default: false
                            color: '#000000'
                            internal_name: zones_prod:Riv_Barrios
                            name: Barrios
                            description: Barrios
                            preset: false
                            public: true
                            tags: []
                            token: 489780ae-39e0-40bf-93e3-57565431454a
                            type: ADMINISTRATIVE
                        extent:
                          - -3.5850750207097
                          - 40.287119395069
                          - -3.4700083830236
                          - 40.411038646944
                        id: 5c9b557c9650e67d42985e8b
                        name: es.madrid
                        type: city
                        visible_name: es.madrid
                        is_main: true
                    jurisdiction_id: es.madrid
                    key_name: Rivas-Vaciamadrid
                    locales:
                      - es
                    name: Madrid
                    origin_devices:
                      - id: 5850de88e22c6d9f51b17715
                        options: []
                    lat: 40.35497
                    long: -3.54806
                    tags:
                      - name: Poda
                        color: '#000000'
                        id: Poda
                    third_emails:
                      - comentarios.rivas@mejoratuciudad.org
                    timezone: Europe/Madrid
                    typologies:
                      - id: 59bfadfe566d72b8018b45c6
                        color: '#ebc113'
                        description_legend: 'Ej: farola fundida'
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                        location_type: geolocation
                        order: 1
                        public: true
                        typology_description: Tengo un problema con un elemento en la calle
                        visible_name: Aviso
                        with_authorized_users: false
                        with_description: true
                        with_files: true
                        with_geolocation_data: true
                        with_medias: true
                        with_temporality_data: true
                    typology_nodes:
                      - id: 59bfaf21d2bf39b8018b457d
                        color: '#f1c40f'
                        order: 1
                        typology:
                          id: 59bfadfe566d72b8018b45c6
                          color: '#ebc113'
                          description_legend: 'Ej: farola fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: Tengo un problema con un elemento en la calle
                          visible_name: Aviso
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: true
                          with_medias: true
                          with_temporality_data: true
                        visible_name: Nuevo
                    user_info:
                      - available: true
                        field: first_name
                    modules:
                      requests: true
                      requests_process: true
                      requests_comments: true
                      requests_worknotes: true
                      requests_reiterations: true
                      requests_complaints: true
                      user_evaluation: true
                      service_survey: false
                      alerts: false
                      inventory: false
                      dashboard: true
                      news: false
                      backoffice_admin: true
                      app_configuration: true
                      notifications: true
                      planned_requests: true
                      planning: false
                      users: false
                      predetermined_response: true
                      predetermined_response_external_source: true
                      company_enquiry: false
                      layer: false
                      jurisdiction_element: false
                      webhook: false
                      user_guide: true
                      worklog: false
                    app_urls:
                      web_url: https://mapa.mejoratuciudad.org
                      google_play_manager: >-
                        https://play.google.com/store/apps/details?id=com.radmas.iycp.production&hl=es
                      google_play_citizens: >-
                        https://play.google.com/store/apps/details?id=com.radmas.iyc.rivas
                      app_store: >-
                        https://itunes.apple.com/us/app/rivas-ciudad/id1353778065?l=es&ls=1&mt=8
                example-1:
                  summary: Response OK Jurisdictions List
                  value:
                    - only_registered_users: true
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers: []
                      accepted_id_documents: []
                      buttons:
                        - design:
                            icon:
                              color: '#000000'
                            background:
                              color: transparent
                            size: 70
                            color: '#000000'
                            format: transparent
                            char: e801
                          icon: >-
                            data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAYAAAA9zQYyAAAWvklEQVR4Xu2dCfR91RTHvyEZMpZknhcyZyhJiohlJjMpQ4YyD6HMRcmUEGVKUspM5krGUDI0GKLIkKwIyVCG9fmvc+p0uu+9+949953h7bPWb/2H3x3O2ed799ln732+ey1ZMwk0JIG1GhqLDcUkIAO0gaApCRigm5pOG4wB2jDQlAQM0E1Npw3GAG0YaEoCBuimptMGY4A2DDQlAQN0U9NpgzFAGwaakoABuqnptMEYoA0DTUnAAN3UdNpgDNCGgaYkYIBuajptMAZow0BTEjBANzWdNhgDtGGgKQkYoJuaThuMAdow0JQEDNBNTacNxgBtGGhKAgbopqbTBmOANgw0JQEDdFPTaYMxQBsGmpKAAbqp6bTBGKANA01JwADd1HTaYAzQhoGmJGCAbmo6bTAGaMNAUxIwQDc1nTYYA7RhoCkJGKCbmk4bjAHaMNCUBAzQTU2nDcYAnQYDl5F0JUk3kLSepJu7f/P32wWvOF/SDyT9zf38VNJfJZ0u6S+S/p2mO6v7FAP0/HO/rqSbSrqjpM0dYO8w/2M67zhB0g8lfU/SdyQB+HMTPXslHmOAnj3Nl5V0e0nbSLq/pE1m35L0CoB9hKQvOu1uWnyKeA3Q3cK5vAPudpIeLOnqPSB6rDMdfizpHKdd/+Pu+5X7E5OEdmlnllxV0m0k3VDSpj3e8ScH7g9J+qakv/e4Z6UuMUBfNN2XkrSRpKdIesIUEAPOr0r6uqQfSfqlpD9L+u9A5PD+q0m6saTbSrq7pC2dXd71aMB9kKT3SDo5wfsHdr+M2w3Q0jqStpL0XGdWxDPDBu5ISYc7IJ+5RPAA8g0dsB8h6V5usxn3kY9rL0lHSfpHGdDK04tVBjRAfoCkXSTdORI/IP6spA8UtrRfUdLdJG3v+o5nJWyYO3tK+sSqAnsVAY3Wu6ek13UAGUDsL+kwSWfl0TG937qBpEdK2tHZ4eGNeEnQ2HyU/+r9xAYuXCVAM1bca6922i2cPjwIe0s6RtIFlc0rPvB7SHpRh8kEoF8pCXfg/yob10LdXRVAs1Q/3016uEwz4Wiyby3RLl5oonrcxMqzmTOhMKV8w3x6p6Q3SGIj2XRrHdCMjwDIW53t6SeTJXlXSUdXqJFnARKNzSZ3j8ikYswvcWNuVlu3DGh8yc90S67Xymio3Z2d3LoPl1UJ+3q3wAWJtsa0enOrPuxWAY2riyUWf7JvmBcvd9G2WVqupd8T5XxttG/AC/I8ST7g08x4WwT0xpLeFpgYaCU2gtiRq+qj7VqtyBnZye0fmjFBWgI0Y3moW059iLnJSVtQnSIfNo3vCDIAMcGeJenQBjbFa8TSCqDZCD1R0luCSFqzy+qCgPa38bEjJz5+GivYyyS9q4UNcguABszYg9jHfvNHtIzACZNl7ZISQE54QdDOvgFqNotVB2JqBzRgfoEL93ptgxdjn9onZglfIaH/5zgviFcEr3Kb6Wr3GjUDugvMaOoDW1g6lwBoXoEMn+5WMw/qqjV1rYCOJwLTwsC82FfQtf8gAPOmGhVDjYCmz49xmxi0ioF5MSCHd8WgRqZo7kNqywGpEdAk4mBWeNdctdpkOA6TPiE24Qi6kP+Ct6gaP3VtgL6lpPcH5/oMzEkxvcamDjfZ+PFZDU9J+5rxnlYToK8p6d3ujB8SIfL34lZzEsab8plPJgeEtAHyYGifkvQ0SX+YeWcBF9QCaDQH2pichOqEXMA8z9uFapVHLYB+tMuQYxOIbbetpOPmnSW7fi4J3EnSR91epZpNYg2Avpk73QwfRjWCnQs6ZV4ce5OqsKdLBzRZYthzO7s5f7uzm6uNZJWJ3Ym9iuV/gPP3F5tLXjqgIXmBewJTA2KVxzsyl8pwUXV34xWSQwNk5xXZSgY0SfqQqEC/halRtCCLnN10nQr3MEUrllIBTb+e7c4CMi3FL3XpsFPkk3DlkXL6VNc78j0wBT3VWTGdLhXQ0NF+xCWir5JXg/m4sksa8iCBYgyq3aFUY2u73IxFo36h14NAC1obKrSiWomAhsiQgAn5zDT+hFuiNr6MvhMNgOGxg+prEpddSNII7dc8m+LrO6alXzsmqL79iq8jFsBRNrQzjeQlTs4XlT9dIqBD7Yyr6FGOyXPRiei6z9vlX0v50Dmf5U9lk5Ps81L6PALO6H0dOCd5G5jXW7hoHyd5IHMkhH1anxdMuab4lbM0QNMf0kD5+mlj2Gp+swlpORvNZYOaMXZxhYQ4gunoj5Jwm3FqO+aw49ovOVIZKgL4xkeyhQNySDZDhBXtOtTmLX71LA3QN3IpiwRRsNNYhk8aqFXC2xkvdLnw19EgE99hick3XQd56QdmBBtfiG9gNw3NK+6BnxqSRvIrIF73jf3FC50JwkrGyhNzWf9e0kMkfTeRHG/lmFhJFBtjjgZ1szRAP9m56hhUKq0SCuhakj4oaevgP0m+4Tj/bwdJcvbNceSNOzAfXirpcz1tUei+oNSFLCas3TLt7TCoEphKFQyJbWmy8/CALLrZnC25Oa4oCdBXcWAmTyO1VvEieZDLHotFtAxQx3nc8E1jXi3yIV3HgYgVbFrDf488MU9StrtI+qQkFMRXJFHpgDnL3koCdCik1FoFQWP/ofXRiDTKOuBd8Bsy6pigqcdgEwqDRLwb84LswSHkiT4jDhubigIfd5s/kvKf4cYIWxTpAteVBAEP5gjvHTpGbHr4PTwz1X0kfTk7mgvi5eDDwgXk00Oxc9+bWECUeyCMjp35c6e50HT7BaAmCkZA5/sJ3x0HifhwGB+28tDGR+o3enFyfvzs1NHW0DzE5OBDyV7QqBQNvb4D231dWbMxXHV4NchBwMMAH/TjnIaEqfN9AajRXnAtfyxBMANQhRvdsUyALvs8BnTqxK7QhcfmOoVbcOgHXgxzEjv4zzv3FKdSsC3nCR70EUQ4AeSI4P89z914V6epw43WG114F/fZkMaHg3lDG8OU4rnx0bS4v2N4c3Apopk5zUIjkezTQwSV4t5SNDQAhrWHRkbdwSkGFz0jBHTXRxNTZHE7Xgh28Xxsi4SeL+d86v4407ImPdyAjplDHn6sr3fsVUN93YOmvgRAhxsMb9uOkSMQAhpbmg1gTBVGX7AFociKmf4XKe1wbfdxEtKmSsBjE2zIZk14vNqMefaS8nOcaiHFlI0pAP/drA6O+fsSAB0CDeGwYSIZJ3ULwTVN+MgEuxp+vLg6FjwVmCJE5/pobMLPFCCiuOakjyjVOPFR3895H7znZuwDrrGr9YGSjk81oEWeUwKgQ98whIuQCI7hpA9XAnyms4TfxYDvZUxkD7ZO3GIUn5/U2Bt8w/1yTE8A3g72BHDT+ZVlTDekH2/snYKcBnMuWysB0PiFfWbdmDZmLPy+ES7KFnMtST5xToUvykn08dvuqH/4MYaAfkXglkw94fEGbUjQZt6+hQppzI+2V79yA/oKjikUM2NM+9kLI/SmkDdBYKBPpA454X7DRz2tbDKbSICNVv6JpPWCyOSYm6YY0Ju7I2u9QDDwotCOZlVAPpSKztJyAzq0awmhsmka6iabJkiCKyyJPmRMOWTKV8xj4pC/TCYbyyuRxr4tdhX2va/PdTkBfQ1JH3b5MRQupRgoH3OWlhvQ4dc9lv/ZC5aNEsEVbGP8wp7jA1OCgpvzNmRH+JmqtGSzkTQUZ7qFzxzTCxACGjOIUPSx8w5owevjjwmX4bJTci/sem5A3ztInBnTxmTA3p49w4Hag4+gAybPiQtOqL+N0DM5E6RX8kPVWkLrPp8ZoOGFILyeuoWgGutQxLQ+s5l/jbsABcGeIkvLDWiytGASpY0VUPGCDTdosbCXUVzosi5BKnUElLFgqxOMIlc6B6DDAMvYimnqh5Ib0OGXPfZSNQ3QCKnmopThXsTnqZy9RBXJKRlvto1tOhYL6HCZ7OMXHjo/mzrzpus4U/hsSgizWcRbMc9mcWj/hty/zABOVz9J+PqMy4/O6unIqaHDQMcylskw2w7Q4t3g/4gGYvOGB1XR1hxEJVpYQyWtUEPm8AWH0d4cK0QRm8LQ7hvTA+AHG4ZpASl1+o4cohYLupeMNyKXtBzRutDkWYZymij6nBp62XZfHClEQ8P/URSvxAIfCZtNVhIyFmlj70W6uph7U1qEhs6xTIXHvFphZAoDGyQGwWh06gIfxpBbQkAv2w9+sX7n1NCz8pOHCHjSvXEQAH8pqaLTEozG6EfKZ4Yf6dgZfX3luszQ+0oDmsGHHG38u/bCQ+HhCA7IsilcdssZel95QJNqycTDnkmruXg7uSkcJmaDuwzXp2noKaoiNDmW7buMKz3RTRL3yYgbQi2wbM0YZg+OeThi1rjCE/Vcu5Imx7K9HPGkkMuBd8BzHvN7ssXg1aPYZOl2dcxgNAb1wywg+9+blyPKP1hG6mg8OSQNsSEkBZQzcWHDDCGJiJxp/oS985zCIochx1xuGoHQ07Kyfugw0JFDCKH92UcT+eR9UiPhostZiDJmAR2DB7CPTPw1ofmYQzld2NecbrtwZ7yM0yrxBDH2kLp30gR6bU1Il8n6WQEMQTEDaG42fcvlcDRkUAPwQ8sR4QqB4QFNYvzpjnYA6gHMjTFSPufRgOG1se1cQoUDy7ZzMxTmIIydD90FoHWc+46zgrQafNKckOHEDcyfOUy1LjmG+dAQq/OTJVMxp8mBYMITw7kSw2sqARzX4F7kTOSiK8O0+8K89hzJUUXY0HQitL1yJYbHgRZyPJ7kPBxZtMwE5MTsorgWWeHGPFTcB/xxlDArtW5uDU0OMieGNwsYQZd50sJPWBxoIbhCqQf6Vko2HkAheDL0cG8fkM5zTeiyy7G5v1hfcwM6TPLPfQQ+Xs4RFMxI2IPwRfeh/poHCPNcG7OLkvYKuWVWYkQ3gPDkflaXHf3JDWjeH3o6xmRO6gMgoof4dD1bqL+HwAUM+figf9EBbrT4uX1esMA18Yc2JvniAt272D6IvsEy9c9FHpTintyAjjeGY3Lb9ZUXno+HS2KTSsBgVmMS4ZQbw5aNTSE+LJiJWNpLaMZt1zEL4ZKVM8Em7hr5Cdu78HhXYcyx7ewYzGxWFyXFGQv88bG2sXhHeve/BA0dCiX7piKSHBS1bMY4rhXme4x9MjxOnCoRzIjK+KE7PrV42coRYIm7hSuKAMYuHfx1Y5oY9COuJACYyd/GTVeSG5G+hgGVHKfNLwGnEjQ0nYIXjgnD6zHk8CpUXETQCF2zSesbskYOaEX84gR7KIAT89ShlSnVfNRIHg/6gPuScmm+1gtgpkTbFwoEcxxlLUERZfdy+C8srPA6JBUSEwHNSn4DfBvYuYSHAUYXIyZ2Mhx0mBOTCsj3KRbf28abcCH2MsBlI+qJcOg3/wfhTYktzLArJQRfDKCJ1uG+w8tBG5qsDkBYpinPNospaRJYPEs/ZR1SlRWO3xV/gP73rFZkAg4tkDnmhxDWKRyyqibtYykmR2x2pCh/xtjQvgRG4HOe1dDmEM/wQ77zb0Zc5gEy5gU2eti3Wvj1UBjUPcQLRMPNiZ8+eysJ0PGBTziXv5tAQth6aHzoXmO7+CwXceMDwo88djRwGlk6UclFKm0lENHcj7Ba3z1FFi5jqU9hYKdTWIcoYGyGEHYnJRM/OBvKlMDmQ0UbUx2XsszxR8W7OZyLhislb2TadMXmYQnBsAv7W5KGplNhGeFTXOmIk3p+DH0vowgQaZeTaqWwCcTsIC+B8m3UYOlbw3pdSdeTBBso9QK3dmZPV9/wmrzV1WAZy0bvK5N5rivttMzF+l4aoOOvHzcZ/BljJOFs4OqB7OjqCE6bVDZnBH3QoIAcWxdOuY0lUfgIUwK63lkNO51NJlwaeHMumHVDYb+PzzIWsxn0cioN0PQr1ADLcAeRZ0w2G8VuKCbUJ39jHpzxMVADG5MCrVyTNo7HGbrqILbhLGO2eipdk1AioHOemfOFgNj0QJaC1vU1UvqAGPDyEaJ9STmlxPOZiW3yPv0Y45p4XnIdyJg6thIBHWvp3CyhyAiTAhMD+xuXlW+YQqe5iCRmSF9bewzAjf3M8Kha7jmZONZSAR3bage4QEPNy/XYgBvz+XzE5Gp4lqkSTpp3jrdUQNNZtCGuNPjb0H5s3g4dc9bs2RMlgK28v3N3LmNfs/BUlAxoBhUKEkouEmDwE1tbngRCxcJbUSxUxS0t82+NREoHdLzUEW7lPF3fLLrlTXubbyKNFrfpzm54h7uT5tlqec8Sc+mApv+41A5xKZWYHvA+8O8iNcQsgVf0e7BBGi3FiPxJ820lHVfyGGoAdJWCLXnSe/YtrnRQtKnhx1QDoOlrvPQRbYNkJScDaE9cVHlZ6SfNq3PbdXW4WiFXBun4cG5Vm/FaNLTHREy4UgO5Yk14junGSj2c24SG9oOAdvfA4MiUgTrNJxODucoNeG0a2rsaw903gue4EiCvLXstDRSHPwUww/lBNBCPBjIlH51/VyXTGgHN9HVpEwP1YsCOwcxTql31agU0QudoFQdhySug1VxvcDEoDr8LMOPXR4b+FA9/56fKvJmaAe3deUQO4ZbzoN5d0j6VHGcaDsnFn4BC4Ejabq2A2duji4ukjDtjTU2v9pW0q9PaZfSyrF6gjfdwvH2+Z1VrZj+I2jW0H0fX0lkDt0UOmMdUY5hqzaxqrQAaYMB1AT/E3oFLj1THnVxFq1XP/WCuYZWiUq6nGuOMI/uQg2vzZkzSBC0B2ptQMT8cGghOjv1q3egkUONdVGOcbuf0O/UXm/nYWwO0n/t4WeX/ayJySYDhNY+YxB6FLKBJ6+L7S/XuLM9pFdDeA0J5BLwg3iXFEou9yOmLKt1Sc6AErUyGHF4MT27DasWGec9WN8wtA9prKAhfIHSBjdQ36ATgvINMpga2ojlwvMY/D8ENtGLhmNlPoJUh0UnJDDVP30a/tnVAewGiodDUMQ0Y9uNeko5pYJLZFJPnAgHkNgFy0MqQtLMZHKMOzOggnecFqwLoafYkvwPYaPGjK9TYaOSt3AYvBPJK7htWCdD+Q5+0JPN7iBOxrw+TBDNpyW0alVltBJDJ5LyKgPbC4xQM3MzYlaGtye9ZprE1ATdUV6VsICG82VLSDq6MRxeLKqYFLKql9DkZWPs8aJUBHWrsSUt2CG5fePOMJdrb2MWwmW4h6WETQEwfqTaA9wJ33EqfiDdAX/TZA56NXOF6wDOp5gqnOOCu+4YjX4SVlGP9Qz0HvB8uaeq9sGLArbfJlH7ggjzIcWScnOD9fRRg8dcYoLunCHMEMG0niXLNMUl5113HOmJGSBqpwHWipPPdhee4P6/q/lxb0q0lwScNJe+Gc9DxHuEYpTjrt5JmxbSvygA9W+dA0ggDKR4Eys/hGltmYzUAxHhi4KZumRBysFwN0POLEO0NTzI1DTELSPShOFGKdoKj48WcOV7SqU7bp3j2SjzDAJ1mmklfxeOA3Y1ZcRNJ60cs/7zpPMcbjZbFk0KC0NmufBv/rur8XhrRpX2KATqtPO1pmSVggM48Afb6tBIwQKeVpz0tswQM0JknwF6fVgIG6LTytKdlloABOvME2OvTSsAAnVae9rTMEjBAZ54Ae31aCRig08rTnpZZAgbozBNgr08rAQN0Wnna0zJLwACdeQLs9WklYIBOK097WmYJGKAzT4C9Pq0EDNBp5WlPyywBA3TmCbDXp5WAATqtPO1pmSVggM48Afb6tBIwQKeVpz0tswQM0JknwF6fVgIG6LTytKdlloABOvME2OvTSsAAnVae9rTMEvg/wiT58U53ZFUAAAAASUVORK5CYII=
                          button_code: 569f8db56aa91886728b4569
                          label: '@emergenciassev'
                          news_collection: []
                          optional: false
                          phone_collection: []
                          sequence: 0
                          social_collection: []
                          url: https://twitter.com/emergenciassev
                          url_collection: []
                      channels:
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      geo_bound:
                        - lat: 37.45287134
                          long: -5.81924238
                        - lat: 37.31390591
                          long: -6.02874052
                      geo_perimeter:
                        - lat: 37.44263269
                          long: -6.02874052
                        - lat: 37.44471434
                          long: -6.0266208
                        - lat: 37.44617039
                          long: -6.02324396
                        - lat: 37.44468107
                          long: -6.02052829
                        - lat: 37.44334048
                          long: -6.01127557
                        - lat: 37.44394835
                          long: -6.00722034
                        - lat: 37.44833631
                          long: -6.00049084
                        - lat: 37.44738129
                          long: -5.99373964
                        - lat: 37.44828804
                          long: -5.98853187
                        - lat: 37.44979688
                          long: -5.97873675
                        - lat: 37.45044898
                          long: -5.97001492
                        - lat: 37.45191785
                          long: -5.9595959
                        - lat: 37.45287134
                          long: -5.94885102
                        - lat: 37.44975443
                          long: -5.93616084
                        - lat: 37.44869065
                          long: -5.92637708
                        - lat: 37.44756814
                          long: -5.91674952
                        - lat: 37.44552261
                          long: -5.91164096
                        - lat: 37.44283256
                          long: -5.90451877
                        - lat: 37.43117066
                          long: -5.89101736
                        - lat: 37.42468057
                          long: -5.88522027
                        - lat: 37.41989201
                          long: -5.88131959
                        - lat: 37.41526361
                          long: -5.87638624
                        - lat: 37.41192759
                          long: -5.87462067
                        - lat: 37.40366506
                          long: -5.86830718
                        - lat: 37.40054771
                          long: -5.86123079
                        - lat: 37.39995769
                          long: -5.85432992
                        - lat: 37.39820594
                          long: -5.85149634
                        - lat: 37.39659709
                          long: -5.84609324
                        - lat: 37.39542879
                          long: -5.84034559
                        - lat: 37.39669771
                          long: -5.83327814
                        - lat: 37.39696469
                          long: -5.82701988
                        - lat: 37.39772026
                          long: -5.82368254
                        - lat: 37.39707835
                          long: -5.81924238
                        - lat: 37.39032518
                          long: -5.82054789
                        - lat: 37.38878024
                          long: -5.83390612
                        - lat: 37.38711157
                          long: -5.84223382
                        - lat: 37.38796998
                          long: -5.84887255
                        - lat: 37.38784809
                          long: -5.85541778
                        - lat: 37.38779943
                          long: -5.87267131
                        - lat: 37.38727521
                          long: -5.88678973
                        - lat: 37.38369473
                          long: -5.89392457
                        - lat: 37.38013832
                          long: -5.89895943
                        - lat: 37.37709426
                          long: -5.90477008
                        - lat: 37.37758176
                          long: -5.90876337
                        - lat: 37.37560202
                          long: -5.91085476
                        - lat: 37.37371041
                          long: -5.92069477
                        - lat: 37.37158886
                          long: -5.92632536
                        - lat: 37.37052755
                          long: -5.92988566
                        - lat: 37.36967028
                          long: -5.93284415
                        - lat: 37.36810321
                          long: -5.94296641
                        - lat: 37.36553449
                          long: -5.94842039
                        - lat: 37.36379231
                          long: -5.93986289
                        - lat: 37.36071364
                          long: -5.93902031
                        - lat: 37.35238423
                          long: -5.9435152
                        - lat: 37.33936534
                          long: -5.95322019
                        - lat: 37.3342432
                          long: -5.95735289
                        - lat: 37.32882156
                          long: -5.95868622
                        - lat: 37.32275138
                          long: -5.96432652
                        - lat: 37.3152295
                          long: -5.96748325
                        - lat: 37.31390591
                          long: -5.9731847
                        - lat: 37.3152691
                          long: -5.97988321
                        - lat: 37.3171503
                          long: -5.98853163
                        - lat: 37.31907786
                          long: -5.99781412
                        - lat: 37.32075359
                          long: -6.00314951
                        - lat: 37.32651945
                          long: -6.00779072
                        - lat: 37.33675173
                          long: -6.02100685
                        - lat: 37.34371395
                          long: -6.02252722
                        - lat: 37.35160525
                          long: -6.02224545
                        - lat: 37.3582875
                          long: -6.02202806
                        - lat: 37.36863344
                          long: -6.02159638
                        - lat: 37.37150527
                          long: -6.01957781
                        - lat: 37.37312088
                          long: -6.0212126
                        - lat: 37.37398299
                          long: -6.0216981
                        - lat: 37.37507542
                          long: -6.02231774
                        - lat: 37.3776378
                          long: -6.02218348
                        - lat: 37.38065052
                          long: -6.022056
                        - lat: 37.38810006
                          long: -6.0249523
                        - lat: 37.39265481
                          long: -6.02442393
                        - lat: 37.39501561
                          long: -6.02195523
                        - lat: 37.39982672
                          long: -6.0180939
                        - lat: 37.40128901
                          long: -6.01552098
                        - lat: 37.40763554
                          long: -6.01504124
                        - lat: 37.41407333
                          long: -6.01239621
                        - lat: 37.41675315
                          long: -6.005172
                        - lat: 37.42004615
                          long: -5.99897717
                        - lat: 37.42187571
                          long: -5.99576257
                        - lat: 37.42468461
                          long: -5.99123105
                        - lat: 37.43107051
                          long: -6.00446771
                        - lat: 37.43679585
                          long: -6.00892277
                        - lat: 37.4426887
                          long: -6.01033409
                        - lat: 37.44205429
                          long: -6.01295299
                        - lat: 37.43480918
                          long: -6.01369068
                        - lat: 37.42339052
                          long: -6.01202393
                        - lat: 37.4202632
                          long: -6.01381916
                        - lat: 37.4198918
                          long: -6.01954324
                        - lat: 37.42168514
                          long: -6.02199903
                        - lat: 37.4255636
                          long: -6.02325087
                        - lat: 37.43073839
                          long: -6.02384322
                        - lat: 37.43538581
                          long: -6.02638055
                        - lat: 37.44026424
                          long: -6.02833991
                        - lat: 37.44263269
                          long: -6.02874052
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56c1a52c13749.png
                      id: 5458f28fe940f65a788b4569
                      jurisdiction_elements:
                        - map_layers: []
                          extent:
                            - -6.02874052
                            - 37.31390591
                            - -5.81924238
                            - 37.45287134
                          id: 5c9b554f9650e67d42985e79
                          name: org.sevilla
                          type: city
                          visible_name: org.sevilla
                          is_main: false
                      jurisdiction_id: org.sevilla
                      key_name: Sevilla, España
                      locales:
                        - es
                      name: Cuenta conmigo
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17716
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b1771f
                          options: []
                        - id: 5850de88e22c6d9f51b17721
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 64ac2034bf32bba9a20013c2
                          options: []
                        - id: 64eba5dd9c0de571c50a3262
                          options: []
                        - id: 651a37a798e2752898061093
                          options: []
                      lat: 37.3889976
                      long: -5.9844443
                      tags: []
                      timezone: Europe/Madrid
                      typologies:
                        - id: 5850dca2e22c6d9f51b00c08
                          color: '#ebc113'
                          description_legend: 'Ej: farola fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: Tengo un problema con un elemento en la calle
                          visible_name: Aviso
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                      typology_nodes:
                        - id: 5850dca2e22c6d9f51b00c3a
                          color: '#efba00'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c08
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 58a2dc126aa91829068b45af
                          color: '#ff0505'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c08
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 5850dca2e22c6d9f51b00c37
                          color: '#FFAB00'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c08
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En progreso
                        - id: 5850dca2e22c6d9f51b00c36
                          color: '#AD1457'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c08
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5850dca2e22c6d9f51b00c38
                          color: '#0277BD'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c08
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 5850dca2e22c6d9f51b00c39
                          color: '#2E7D32'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c08
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68261ca4c.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: false
                        service_survey: false
                        alerts: false
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: false
                        planning: false
                        users: false
                        predetermined_response: false
                        predetermined_response_external_source: false
                        company_enquiry: false
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: null
                        google_play_manager: null
                        google_play_citizens: null
                        app_store: null
                    - only_registered_users: true
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers: []
                      accepted_id_documents: []
                      buttons:
                        - design:
                            icon:
                              color: '#000000'
                            background:
                              color: transparent
                            size: 60
                            color: '#000000'
                            format: transparent
                            char: e81c
                          icon: >-
                            data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAYAAAA9zQYyAAAMoElEQVR4Xu2de+z/1RzHH+USMzaaRYbMNSbm1soo5jZUSBT6/UIuqZRC7sQKRQxdCF1IGcltpDGyYVgosxhD/nBrQmatRuyZ8+Xr9718Pp/3+33OeZ3zeZ7t99f3fW7P1+P3/pz3Oef1em2HixXoSIHtOpqLp2IFMNCGoCsFDHRX5vRkDLQZ6EoBA92VOT0ZA20GulLAQHdlTk/GQJuBrhQw0F2Z05Mx0GagKwUMdFfm9GQMtBnoSgED3ZU5PRkDbQa6UsBAd2VOT8ZAm4GuFDDQXZnTkzHQZqArBQx0V+b0ZAy0GehKAQPdlTk9GQNtBrpSwEB3ZU5PxkCbga4UMNBdmdOTMdBmoCsFDHRX5vRkDLQZ6EoBA92VOT0ZA20GulLAQHdlTk/GQJuBrhQw0F2Z05Mx0GagKwUMdFfm9GQMtBnoSgED3ZU5PRkDbQa6UsBAd2VOT8ZAm4GuFDDQXZnTkzHQZqArBXoCenvgrsAewM+BHwM3dGUtT2amAj0ALZD3Ao4DnrhqxtcAZwKnAb+ZqYQf6EKB1oHeBTge2LKJNf6WoH43cHUXVvMkNlSgVaD1Vt4fOBm4+5z2/RlwLPBl4MY56/ixxhRoEehbJzBfDdx2gN7vAE4E9OZ26UyB1oAWwCcAR460w0XAK4CrRrbj6sEUaAlowfxO4LCJNPwucDhw2UTtuZkACrQC9G2Ak4CXTayZ3tAvAL4O/Gvitt1cBQVaAFowa5lxVCZ9BLXe+hcb6kwKF2w2OtA3Tx+A+pDLWQT1MYDW1n5T51Q6c9uRgdbYDgLOGLibsah0flMvqljA5yMDrdO/cxbYZ55CXkG9Fbh0isbcRnkFogK9K3AWsHt5Sbg8ram/U6FvdzlSgYhA59rRWEQqbek9H7hykUp+tr4C0YAu9RE4j/KfA14C/GGeh/1MDAUiAV36I3AeC+hC0+uB6+d52M/UVyAS0LsBFwBaP0cpuu/xUuB8b+dFMcnm44gC9E7AB4H9Asrm9XRAo2w0pAhAR/gInGWyDwC63XfdrAf997oK1AY64rp5PYto6fF04Gt1zeXeZylQG+hHAucVPjyZpclGfz8bOAL4+9AGXC+/AjWBjrxuXk/53wFPA76X3yzuYagCtYDWfvNrgLcNHXilem9MN/98gamSAWZ1WwvoHdNSY7WX9qyxRvj7p4FDgb9GGIzHsFaBWkDL++RU4ODGjCLvlgOBXzQ27qUZbi2g5ej6nnS03JLYCmDzTOCKlga9TGOtBbT6fXP615LeBjq4tWoBLVl08UeX91sqXnIEt1ZNoB8PXBJcn22H573o4AarCbQuI2nX4N7BNVo9vOel3ZmGhrxcQ60J9B2BTwCPa0Tyj6bgNNc2Mt6lHGZNoG8F6L7x1LE2chjS4cNyqJqhzZpAt/BhqEtJuuD/IV/yz0BfhiZrA/1Q4AvAnTPMbWyTilZ6NPAVX+4fK2W5+rWBFsjnBlxHK+DMK4FfljOFe5pCgdpA3yxdUHrtFJOZoA0tMd4KnO5rohOoWaGJ2kBryvsC8rCuXb6YTi5/6CVGbVMM7z8C0IrAr+27PYdPY1RNrZX1Vr7QH36jdAxROQLQtwS0LaYA5CWLc6+UVLtQXxGArrHsEMza/9Yvg/OtFIKtRDdRgN45HSnvXWLSyVtGhzr/KNSfuymkQBSgtduh66RyccpdPg+8CPhj7o7cfnkFogCtmT8C+GyBQxZFQlJQG5cOFYgEtALOKKDLIRl1luf2Pk4UlFHhyk1HAlpSPCNtn+WS5RvAc4Hf5urA7dZVIBrQuY/CdS9DQP+pruzuPZcC0YDWeLQfrR2IHMVv6ByqBmozGtCS5gHApzKF1bWTayD4cgwlItCKqnQ88LocE04he7V159KhAhGBzr2F9/a03/3PDu259FOKCvQOKRXyyzNY6KvAFkBbeC6dKRAV6Nxv6f2Bz3RmS08HiAx0znBh+uhUoJs/m4K+FIgMtJR+dEoklMPn0DE2+mL5ptlEBzrnWvpbgKD+dYd2XdopRQdahnlYirAkz5api/MQTq1o5fZaAFpv6ROAYzNo5TyEGUSt2WQLQEufnEk5rwK2ApfWNIT7nkaBVoCWA4DyBJ44zbTXtOLkmpmELd1sK0BLl12AjwNKBZejOFl9DlULt9kS0BqrEvYozlyuclr6JXAuwlwKZ263JaAlhULwyn1KWV1zFaWbswNtLnUzt9sa0JLjCWkbT5m0chTtfCh/opIa2Ss8h8IZ22wR6JzbeCtSezsvI3Q5m24RaOlxX+CTwIMyimOoM4qbq+lWgS7xgSjNrwEOT/95nA45F4UTttsq0JLgdsD7093mCSVZ01QrUMuW0uQewC2AXwF/WbbvgJaBFnk573msJjsy1Ipnouy2hwG7b/PfUePW/vpHAB0edf+R2zrQGr+8Wt6b8xWd2o64phbMJ82ZeOn7yVdTHjvXF9CrShetA11y6aG+IkEtBwhdB3jLguQosLtiCP5owXpNPN4D0BJ6V+D8zLseq7f0aofi1d2WY9LbeQhoWoq8Cfhwb2/rXoDWPA5KucNzHbisBkdvagXEOafSunSv1PfYO+JKJqq0db8f8r8iYp1egJa2+gnWevKIQkILasUOOaMw1Po1OmudD8Ch05bnjvwrfzK0gUj1egJauu6U7nrsV1BkQX1KoZ/u26f5HTDx/JRn5sXANydut3hzvQEtAaf6OV7EGCVSJ49dN8+ajxwdtPV3cctZwHoEuvR6egWUjyU3satnkTPw77oHfh4wdt28WfeR99vnkq1HoDVxxceTD6LenCXLJcBRwE8n7jTXUmO9YUbamlxYxl6BlhCLHDosLNwmFbQeVdoL+ShOdf9DMa3lrVOqNAt1z0DX+khUv/rpVq5wpY0beyp3F0DLmceUojn10+Tyo3egZZupt7kW4WrsPq+WTvKgkcNBjdKcR/wyAC0Qaux8rAA4NPXy9sBzAPk5ljgs2ug/TFMe8csCtOb5JOD0zLsEm71FdTlIl6h0l+LaGa9brf+1habj6ZowrwyzGY/4ZQFahqm1nbctu1qbKvrpl4AfpASgNwDKea718r7AC4EH1lhjbNKnUu7pMtR1wcb1f8NZJqBXoH42cCpwh8iGCTg27XzoNPGCgGP775CWDegVqGsvPyIzsdnYtJ4+GFDypZBlGYFeMcQeaU2d09E2pNFHDkrh2JSXPaT3yzIDLbsqhZwC1+QKLzaSnZDVrwQOBK6IOLplB1o2uVO6dqqfUpf5FNC+uFLvhcskZqD/Y0BtjekaqA4xXGYrEDYjr4H+n/F0Kqc7E7rb7B2Q2VDrsCrc/WkDvdZwDwHe53X1TKJDJl0y0OvbTVFO5U0tZ1iXtQooaek+wGXRxDHQG1tES5BnpawBOS/VR2NinvGcnXw3w8XRNtCzzXc/4GTgqbMfXYondGKoHSHd7whXDPR8JpFHuS7tv8EfjJwLHDnHBav5lJ34KQO9mKAPTneTl/VtHfpQRaY00IsBracVcF33lN+1ZG/rJtyyDPTiQK/UUFYunZZtGd5EUzWbyD1joMcxJa+Sx6adkIePayp07WaygxnoaTiSh8kh6WNJ6TJ6KrnjjUyqlYGeVM6b0s4pHogOZCK4To2dXVMw+6NwrLk3rq/1tfwBFVm/VbDPTJe15DLWTPEbOp+ppO1uwHEp1G++nqZvWZf49S/cSeCsqRroWQqN/7s+HLV/rcAzimEduehtrEDqiqEX0iNllngGepZC0/09OtiXpxR2354whNl06s3ZkoGeU6gJH5Pmuh/yqkBr7ItSRgJFSmq6GOi65rsbsDXF4ah1o69EbOtiKhvoYlJv2pESZup+iC5AParQkPQ21q/EhcCNhfrM3o2Bzi7xQh1onX1/4NB0RTOXK5jyqii/oyI3dVUMdFxz6sqq3tY6gdTbe6r9bB1jyxsnV6aBqooa6Kryz925liSCW2HMnjLwlt+UMavnHnjpBw10acXH96egjvcE9gaeDOw5B+BaYhydfACnyiowfiYZWjDQGUQt3KR8H3cE7pMilioa1L1S2OCdU3xp5W9s6gh7qIYGeqhyrhdSAQMd0iwe1FAFDPRQ5VwvpAIGOqRZPKihChjoocq5XkgFDHRIs3hQQxUw0EOVc72QChjokGbxoIYqYKCHKud6IRUw0CHN4kENVcBAD1XO9UIqYKBDmsWDGqqAgR6qnOuFVMBAhzSLBzVUAQM9VDnXC6mAgQ5pFg9qqAIGeqhyrhdSAQMd0iwe1FAFDPRQ5VwvpAIGOqRZPKihChjoocq5XkgFDHRIs3hQQxUw0EOVc72QChjokGbxoIYq8G/hu7DEHcY3VwAAAABJRU5ErkJggg==
                          button_code: 55fbc3b96aa91879728b4567
                          label: Smart Guadalajara
                          news_collection: []
                          optional: false
                          phone_collection: []
                          sequence: 0
                          social_collection: []
                          url: '900700313'
                          url_collection: []
                      channels:
                        - external: false
                          id: 5e2f5cb6e8833f960e8b457a
                          name: Gestores Avisos
                        - external: false
                          id: 5e2f5d2101394ad80d8b45f5
                          name: Técnicos Avisos
                        - external: true
                          id: 5e2f5d97e8833f980e8b456a
                          name: Atención Ciudadana 02
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5e5f8c5e3b5399d7048b45ee
                          name: Gestores de la plataforma
                        - external: false
                          id: 5e73bd8502be88c10f8b4568
                          name: Comunicación
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      company_emails:
                        - comentarios.smartguadalajara@radmas.com
                      geo_bound:
                        - lat: 40.72166022
                          long: -3.06576014
                        - lat: 40.46179945
                          long: -3.2846394922461
                      geo_perimeter:
                        - lat: 40.60580987
                          long: -3.21064863
                        - lat: 40.62133859
                          long: -3.20199572
                        - lat: 40.62822349
                          long: -3.20590651
                        - lat: 40.63684014
                          long: -3.20353236
                        - lat: 40.63906115
                          long: -3.20076
                        - lat: 40.64457771
                          long: -3.1989315
                        - lat: 40.64628357
                          long: -3.1976746
                        - lat: 40.64816686
                          long: -3.19688415
                        - lat: 40.64823377
                          long: -3.19620544
                        - lat: 40.64697052
                          long: -3.19579726
                        - lat: 40.64735081
                          long: -3.19465821
                        - lat: 40.65392723
                          long: -3.19196144
                        - lat: 40.6569694
                          long: -3.19038859
                        - lat: 40.656525
                          long: -3.18889332
                        - lat: 40.65733213
                          long: -3.18670247
                        - lat: 40.65762036
                          long: -3.18334378
                        - lat: 40.66404168
                          long: -3.1758668
                        - lat: 40.6695994
                          long: -3.17514076
                        - lat: 40.68587609
                          long: -3.17359287
                        - lat: 40.68838357
                          long: -3.18673346
                        - lat: 40.68926899
                          long: -3.1884934
                        - lat: 40.68755521
                          long: -3.18813235
                        - lat: 40.68761412
                          long: -3.19285805
                        - lat: 40.68897352
                          long: -3.19979477
                        - lat: 40.6906705
                          long: -3.19942823
                        - lat: 40.69223436
                          long: -3.20103303
                        - lat: 40.69395522
                          long: -3.20299819
                        - lat: 40.69475142
                          long: -3.20309411
                        - lat: 40.69429149
                          long: -3.19974202
                        - lat: 40.69598762
                          long: -3.19934467
                        - lat: 40.712073677311
                          long: -3.2846394922461
                        - lat: 40.720026350367
                          long: -3.2704656231056
                        - lat: 40.70561252
                          long: -3.19023703
                        - lat: 40.70669625
                          long: -3.1869255
                        - lat: 40.70887043
                          long: -3.18716303
                        - lat: 40.70616712
                          long: -3.18477901
                        - lat: 40.7056283
                          long: -3.1779235
                        - lat: 40.70838043
                          long: -3.1688983
                        - lat: 40.71213755
                          long: -3.16544197
                        - lat: 40.71335242
                          long: -3.15663375
                        - lat: 40.71639312
                          long: -3.15306532
                        - lat: 40.71605639
                          long: -3.14875496
                        - lat: 40.71860883
                          long: -3.14641632
                        - lat: 40.71473685
                          long: -3.14499896
                        - lat: 40.7122279
                          long: -3.14858069
                        - lat: 40.711774
                          long: -3.14417565
                        - lat: 40.70991963
                          long: -3.14302332
                        - lat: 40.7067781
                          long: -3.1482016
                        - lat: 40.70377201
                          long: -3.15296539
                        - lat: 40.70142527
                          long: -3.15632172
                        - lat: 40.69735451
                          long: -3.1620291
                        - lat: 40.69202083
                          long: -3.16238307
                        - lat: 40.68818021
                          long: -3.1579354
                        - lat: 40.68871819
                          long: -3.15310848
                        - lat: 40.69017446
                          long: -3.14859086
                        - lat: 40.6896881
                          long: -3.14127584
                        - lat: 40.68862148
                          long: -3.1367409
                        - lat: 40.68921373
                          long: -3.13093124
                        - lat: 40.69039146
                          long: -3.12494501
                        - lat: 40.68883935
                          long: -3.11883535
                        - lat: 40.68780121
                          long: -3.11191025
                        - lat: 40.68711314
                          long: -3.10593268
                        - lat: 40.69123614
                          long: -3.09913396
                        - lat: 40.69556171
                          long: -3.09753068
                        - lat: 40.69742119
                          long: -3.09303559
                        - lat: 40.70045964
                          long: -3.08986755
                        - lat: 40.70626723
                          long: -3.09373451
                        - lat: 40.7092699
                          long: -3.09024639
                        - lat: 40.7137225
                          long: -3.0872571
                        - lat: 40.71736006
                          long: -3.08984294
                        - lat: 40.71863954
                          long: -3.08952498
                        - lat: 40.72166022
                          long: -3.08587028
                        - lat: 40.72140906
                          long: -3.08437805
                        - lat: 40.71912375
                          long: -3.08027847
                        - lat: 40.71720852
                          long: -3.07481801
                        - lat: 40.71641035
                          long: -3.06895641
                        - lat: 40.71390325
                          long: -3.06576014
                        - lat: 40.70913221
                          long: -3.06737437
                        - lat: 40.70440239
                          long: -3.06777208
                        - lat: 40.69685674
                          long: -3.07639309
                        - lat: 40.69336058
                          long: -3.07754898
                        - lat: 40.69191424
                          long: -3.07114435
                        - lat: 40.68640897
                          long: -3.07262963
                        - lat: 40.68083358
                          long: -3.07091954
                        - lat: 40.67237845
                          long: -3.07854216
                        - lat: 40.66682386
                          long: -3.07950688
                        - lat: 40.66290238
                          long: -3.07670921
                        - lat: 40.65951356
                          long: -3.07892933
                        - lat: 40.65476356
                          long: -3.08227134
                        - lat: 40.64935661
                          long: -3.08452387
                        - lat: 40.64008053
                          long: -3.09232937
                        - lat: 40.63100349
                          long: -3.09853669
                        - lat: 40.62424619
                          long: -3.09924805
                        - lat: 40.62304383
                          long: -3.09337017
                        - lat: 40.61683356
                          long: -3.08564179
                        - lat: 40.60960062
                          long: -3.08391861
                        - lat: 40.60025998
                          long: -3.08164943
                        - lat: 40.59185237
                          long: -3.09654128
                        - lat: 40.59268733
                          long: -3.09995783
                        - lat: 40.59644296
                          long: -3.11116736
                        - lat: 40.59282677
                          long: -3.12372376
                        - lat: 40.58805664
                          long: -3.1278155
                        - lat: 40.58279665
                          long: -3.12669481
                        - lat: 40.58094318
                          long: -3.12448176
                        - lat: 40.57586823
                          long: -3.12718981
                        - lat: 40.58034775
                          long: -3.11656414
                        - lat: 40.58244364
                          long: -3.11057703
                        - lat: 40.57697767
                          long: -3.10794509
                        - lat: 40.5707241
                          long: -3.10939998
                        - lat: 40.56318196
                          long: -3.111136
                        - lat: 40.55564166
                          long: -3.11091094
                        - lat: 40.55309238
                          long: -3.11062327
                        - lat: 40.55070285
                          long: -3.11285153
                        - lat: 40.54849189
                          long: -3.1166625
                        - lat: 40.54193963
                          long: -3.11930816
                        - lat: 40.54014635
                          long: -3.11976551
                        - lat: 40.5345164
                          long: -3.11905883
                        - lat: 40.53200802
                          long: -3.1227855
                        - lat: 40.53600044
                          long: -3.12144667
                        - lat: 40.54067392
                          long: -3.1235807
                        - lat: 40.53853636
                          long: -3.12583219
                        - lat: 40.53513114
                          long: -3.12563689
                        - lat: 40.5351257
                          long: -3.13059617
                        - lat: 40.53863683
                          long: -3.13274031
                        - lat: 40.54128345
                          long: -3.13452867
                        - lat: 40.54009837
                          long: -3.13870656
                        - lat: 40.53534855
                          long: -3.14040891
                        - lat: 40.53275646
                          long: -3.13828998
                        - lat: 40.53042036
                          long: -3.14058754
                        - lat: 40.52727064
                          long: -3.13768839
                        - lat: 40.52503581
                          long: -3.13816787
                        - lat: 40.52283846
                          long: -3.13743141
                        - lat: 40.5205898
                          long: -3.14193643
                        - lat: 40.51826816
                          long: -3.13968862
                        - lat: 40.51659509
                          long: -3.13747769
                        - lat: 40.51377486
                          long: -3.13780245
                        - lat: 40.51176763
                          long: -3.13626386
                        - lat: 40.5076867
                          long: -3.13609036
                        - lat: 40.50570013
                          long: -3.13994582
                        - lat: 40.50632877
                          long: -3.14159952
                        - lat: 40.50632419
                          long: -3.14532918
                        - lat: 40.50334451
                          long: -3.1434344
                        - lat: 40.50041212
                          long: -3.14698048
                        - lat: 40.49768287
                          long: -3.14656149
                        - lat: 40.49858339
                          long: -3.1395416
                        - lat: 40.49413864
                          long: -3.13461155
                        - lat: 40.49475407
                          long: -3.13215822
                        - lat: 40.49498425
                          long: -3.12770976
                        - lat: 40.49549398
                          long: -3.12283693
                        - lat: 40.49534912
                          long: -3.11467043
                        - lat: 40.49436298
                          long: -3.10957083
                        - lat: 40.49322043
                          long: -3.1078225
                        - lat: 40.48933899
                          long: -3.10611713
                        - lat: 40.4869092
                          long: -3.10308087
                        - lat: 40.48255674
                          long: -3.10419512
                        - lat: 40.47848483
                          long: -3.10387032
                        - lat: 40.47515318
                          long: -3.10183606
                        - lat: 40.47073732
                          long: -3.1033276
                        - lat: 40.47149594
                          long: -3.11119718
                        - lat: 40.46909176
                          long: -3.11906138
                        - lat: 40.46498512
                          long: -3.12616691
                        - lat: 40.46179945
                          long: -3.13107949
                        - lat: 40.46410762
                          long: -3.1373709
                        - lat: 40.4699191
                          long: -3.14442516
                        - lat: 40.47563263
                          long: -3.15024168
                        - lat: 40.4808
                          long: -3.15326173
                        - lat: 40.49172426
                          long: -3.15621295
                        - lat: 40.49585467
                          long: -3.15976278
                        - lat: 40.50157962
                          long: -3.16328151
                        - lat: 40.50641294
                          long: -3.16652718
                        - lat: 40.50995202
                          long: -3.17372419
                        - lat: 40.51030157
                          long: -3.18083077
                        - lat: 40.51083515
                          long: -3.18525852
                        - lat: 40.5131084
                          long: -3.18901836
                        - lat: 40.51663613
                          long: -3.19674829
                        - lat: 40.517448
                          long: -3.20138982
                        - lat: 40.5225546
                          long: -3.2073904
                        - lat: 40.53143375
                          long: -3.21444283
                        - lat: 40.52969909
                          long: -3.21221767
                        - lat: 40.53170453
                          long: -3.20418342
                        - lat: 40.53527616
                          long: -3.20188327
                        - lat: 40.53979713
                          long: -3.20279093
                        - lat: 40.54485741
                          long: -3.19922794
                        - lat: 40.54829901
                          long: -3.19383694
                        - lat: 40.55048987
                          long: -3.19284343
                        - lat: 40.55107961
                          long: -3.18476682
                        - lat: 40.55004007
                          long: -3.16928055
                        - lat: 40.5528806
                          long: -3.16103188
                        - lat: 40.55840816
                          long: -3.15733614
                        - lat: 40.56748176
                          long: -3.14928871
                        - lat: 40.57224011
                          long: -3.1480233
                        - lat: 40.58386108
                          long: -3.14120718
                        - lat: 40.58944284
                          long: -3.14430317
                        - lat: 40.59279167
                          long: -3.14630754
                        - lat: 40.59394093
                          long: -3.1493709
                        - lat: 40.59549956
                          long: -3.14930344
                        - lat: 40.59645149
                          long: -3.1516456
                        - lat: 40.59676277
                          long: -3.15471911
                        - lat: 40.59163732
                          long: -3.1609116
                        - lat: 40.59394582
                          long: -3.16576248
                        - lat: 40.59904472
                          long: -3.17208629
                        - lat: 40.60334162
                          long: -3.17831436
                        - lat: 40.60566656
                          long: -3.18369862
                        - lat: 40.60880965
                          long: -3.18992477
                        - lat: 40.61292771
                          long: -3.19474764
                        - lat: 40.61001334
                          long: -3.20770656
                        - lat: 40.60580987
                          long: -3.21064863
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/570cae1c27eee.png
                      id: 55a68da46aa918e3048b4568
                      jurisdiction_elements:
                        - map_layers: []
                          extent:
                            - -3.2846394922461
                            - 40.46179945
                            - -3.0657601400001
                            - 40.72166022
                          id: 5c9b55549650e67d42985e7f
                          name: es.guadalajara
                          type: city
                          visible_name: es.guadalajara
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6582ec9c745c3656403237.png
                          id: 6582ec9ce9cfe77a650a6f93
                          name: Prueba
                          type: building
                          visible_name: Prueba Element
                          is_main: false
                      jurisdiction_id: es.guadalajara
                      key_name: Guadalajara, España
                      locales:
                        - es
                      name: Smart Guadalajara
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17715
                          options: []
                        - id: 5850de88e22c6d9f51b17716
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b1771f
                          options: []
                        - id: 5850de88e22c6d9f51b17720
                          options: []
                        - id: 5850de88e22c6d9f51b17721
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 585284106aa9180b008b457a
                          options:
                            - inperson
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                      lat: 40.6332112
                      long: -3.159534
                      tags: []
                      third_emails:
                        - comentarios.smartguadalajara@radmas.com
                      timezone: Europe/Madrid
                      typologies:
                        - id: 5850dca2e22c6d9f51b00c0e
                          color: '#ebc113'
                          description_legend: 'Ej: farola fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: Tengo un problema con un elemento en la calle
                          visible_name: Aviso
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                      typology_nodes:
                        - id: 5850dca2e22c6d9f51b00c57
                          color: '#2e7d32'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c0e
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 5850dca2e22c6d9f51b00c54
                          color: '#ad1457'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c0e
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5850dca2e22c6d9f51b00c56
                          color: '#0277bd'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c0e
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 5850dca2e22c6d9f51b00c55
                          color: '#ffab00'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c0e
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En progreso
                        - id: 5850dca2e22c6d9f51b00c58
                          color: '#d32f2f'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c0e
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c68272fefa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: false
                        service_survey: true
                        alerts: true
                        inventory: false
                        backoffice_admin: true
                        app_configuration: false
                        notifications: true
                        planned_requests: false
                        planning: false
                        users: false
                        predetermined_response: false
                        predetermined_response_external_source: false
                        company_enquiry: false
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: null
                        google_play_manager: null
                        google_play_citizens: null
                        app_store: null
                    - only_registered_users: false
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7bcde2efef4018b4569
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 64cb9cebaddc18074d0e4193
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 64cb9e98addc18074d0e4195
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 64cb9edb24ab2d777a0ca313
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 64df24ef07a26e434d01f893
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 667031dac97737f437009da6
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e93a7fca30a7b0d7e04
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e94a7fca30a7b0d7e0c
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e94a7fca30a7b0d7e0d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletass
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e94a7fca30a7b0d7e0e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e94a7fca30a7b0d7e0f
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e94a7fca30a7b0d7e11
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e9cfc8304ec890065d6
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e9cfc8304ec890065de
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e9cfc8304ec890065df
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e9cfc8304ec890065e0
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e9cfc8304ec890065e1
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55e9cfc8304ec890065e3
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55eb3a7fca30a7b0d7e13
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55eb3a7fca30a7b0d7e1b
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55eb3a7fca30a7b0d7e1c
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55eb3a7fca30a7b0d7e1d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55eb3a7fca30a7b0d7e1e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 66f55eb3a7fca30a7b0d7e20
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 670802e62f9d4a71cd06a755
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 670802e62f9d4a71cd06a75d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 670802e62f9d4a71cd06a75e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 670802e62f9d4a71cd06a75f
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 670802e62f9d4a71cd06a760
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 670802e62f9d4a71cd06a762
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67096bc2ffc05a02a10aeb01
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67096bc2ffc05a02a10aeb09
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67096bc2ffc05a02a10aeb0a
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67096bc2ffc05a02a10aeb0b
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67096bc3ffc05a02a10aeb0c
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67096bc3ffc05a02a10aeb0e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834b8890a3779c2073c94
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834b8890a3779c2073c9c
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834b8890a3779c2073c9d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletass
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834b8890a3779c2073c9e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834b8890a3779c2073c9f
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834b8890a3779c2073ca1
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834e03ccfc90eab0a4843
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834e03ccfc90eab0a484b
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834e03ccfc90eab0a484c
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834e03ccfc90eab0a484d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834e03ccfc90eab0a484e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678834e03ccfc90eab0a4850
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678837b72bdfe4fd820c4af3
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678837b72bdfe4fd820c4afb
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678837b72bdfe4fd820c4afc
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletass
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678837b72bdfe4fd820c4afd
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678837b72bdfe4fd820c4afe
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 678837b72bdfe4fd820c4b00
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fa592bdfe4fd820c4b04
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fa592bdfe4fd820c4b0c
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fa592bdfe4fd820c4b0d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletass
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fa592bdfe4fd820c4b0e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fa592bdfe4fd820c4b0f
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fa592bdfe4fd820c4b11
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fab5deaa23504a049c38
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fab5deaa23504a049c40
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fab5deaa23504a049c41
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletass
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fab5deaa23504a049c42
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fab6deaa23504a049c43
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fab6deaa23504a049c45
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe6867c09c2f2f0909c5
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe6867c09c2f2f0909cd
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe6867c09c2f2f0909ce
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletass
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe6867c09c2f2f0909cf
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe6867c09c2f2f0909d0
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe6867c09c2f2f0909d2
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe7fe05c80a755015855
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe7fe05c80a75501585d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe7fe05c80a75501585e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletass
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe7fe05c80a75501585f
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe7fe05c80a755015860
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788fe7fe05c80a755015862
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788feb7f9371c00d10b1b93
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788feb7f9371c00d10b1b9b
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788feb7f9371c00d10b1b9c
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788feb7f9371c00d10b1b9d
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788feb7f9371c00d10b1b9e
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 6788feb7f9371c00d10b1ba0
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67e7425479962014f00e34e3
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67e7425479962014f00e34eb
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                          name: Aparcapatinetes
                          description: Aparcapatinetes
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67e7425479962014f00e34ec
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcabicicletas
                          level: 8
                          map_layer_icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                          name: Aparcabicicletas
                          description: Aparcabicicletas
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                          mapLayerIcon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67e7425479962014f00e34ed
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                          name: Aparcamientos (PMR)
                          description: Aparcamientos (PMR)
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67e7425479962014f00e34ee
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_puntos_recarga
                          name: Puntos de Recarga
                          description: Puntos de Recarga
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 67e7425479962014f00e34f0
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:alcobendas_poi_aparcapatinetes
                          name: MAINTENANCE PRUEBA
                          description: MAINTENANCE PRUEBA
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: MAINTENANCE ASSET
                      accepted_id_documents:
                        - idSpain
                        - NIE
                        - passportEU
                        - curpMex
                        - quiron_NHC
                        - residenceCard
                      buttons:
                        - design:
                            icon:
                              color: '#000000'
                            background:
                              color: transparent
                            size: 70
                            color: '#000000'
                            format: transparent
                            char: e843
                          icon: >-
                            data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAYAAAA9zQYyAAAXMUlEQVR4Xu2dBfQtNxHGv+KuB3eX4lDcXUpxKK4HLe7W0uJQnFKsuBV3p1hxKO5QpHgpLgfn/GjCS9Pce7OSzW7u5Jx33vv/3252M/l2Mpn5ZrKTrJkEGpLATg2NxYZiEpAB2kDQlAQM0E1Npw3GAG0YaEoCBuimptMGY4A2DDQlAQN0U9NpgzFAGwaakoABuqnptMEYoA0DTUnAAN3UdNpgDNCGgaYkYIBuajptMAZow0BTEjBANzWdNhgDtGGgKQkYoJuaThuMAdow0JQEDNBNTacNxgBtGGhKAgbopqbTBmOANgw0JQEDdFPTaYMxQBsGmpKAAbqp6bTBGKANA01JwADd1HTaYAzQhoGmJGCAbmo6bTAGaMNAUxIwQDc1nTYYA7RhoCkJGKCbmk4bjAHaMNCUBAzQTU2nDcYAbRhoSgIG6Kam0wZjgDYMNCUBA3RT02mDMUAbBpqSgAG6qem0wRigDQNNScAA3dR02mAM0IaBpiRggG5qOm0wBmjDQFMSMEA3NZ02GAN0eQwcX9IJgsf8UdLfyz92O59ggC4z78eSdCVJe0i6mqQTB4/5jaS3SXqupC9J+neZV9jOXg3Q48478ryopL0l7ZrR9Ssk7SXphxnX2iUZEjBAZwgp85JTSHqIpHtGGhkTA038V0knkXTpqD809p6SXizpb5nPsstWSMAAPRwayPAykp4paZfItHiSpJdL+pX7PdeeTdJ9JN1WEh+Bb2+RdH9JPxr+StvbgwF62NwfV9JdJT0+0Mpo5OdJepqkw9d0f1ZnmtwuuObbku4n6X2S/jPs1bbzbgN0/3lHuz7WmRi+ly9LeqCkgzIByebx5pKeIOksrhM+iEdKeqGZIN0nxwDdXWbccV5Jz5J0zeD2Vzob+hc9ukz1h5Z/tCRsbGuZEjBAZwoqsIEvK2k/SRcONOpTnInBxq9vS2l8s6s7StMAnS+wY0jaXdJzgs0cG7gHS3rTSP7klE3+CbeJPCT/Vbf3SgN03tyfUNIDHHh9kOQzku4l6QsbukDGN5B0a6fFP51x/bUl7R/Y1WN/OHmjXuBVBujNk4Z9+9QoUPIuB+YcF9t5JB3oTJSXuejhnzc/9n+uQEDtTRtu2VfSE82uXi09A/Rq2bD830zS4wJN2QdUaOZXucd80/X59QxAcwmej2dIulFw/eckPcJ5UixsHgnSAH10ZK0KX6ONAdLrJf0zE5B8FGwYCaT4dhdJB2Tez2WQm4g+EiIPOSEWNk8I0QC9Qyg+ivcoSTeNwPNOZz9/qwMQuZSo4GslXSq4r4vZ4W/bFI18iaQjOr5bk5cboCW8FwDu7m5pD7Ugkbt9nBejD89iN8esC8FD8OUWkui7a2NzSmSSjy4Mm+Orxi+O1mYl2doo47YCGhCfSdINJd1Z0gUjZOWGr9cB8jiS4HLAz6D9XNLp3L9vI+nVXdEcXJ8Km/v/ZjWhb8Lnvx3wjEXeui2ABsCnlXQJSddyHGW8D3EDyJCJ4GEMpXSe3gHrypLYDGJqoFlZAV7ggD4kEMPcXUjSQyXdcgX6PirpQ24D+TVJv18kSju8dIuARjOeWhKAvbikK0giuhcu0bGIWKbhTrzUadIOIlx56TUkvd/9L2CGr0E4++qShpgd8QPXMfjiazFzPiXpYElfkXSo0+LNeEuWBugTScJzgMZl2cWmPIcktOHFnJsLgn1OA8Rvdz5igiS5noucvo/piEsPdxfj2QDUkJn874aaHan3wCPCB0zf19vwEfv7PV/7+5LY9H7Hgfx3kg5zF/3F8blzxl71mjkDGk17EUnXd+lM/DvcsHUVnNdOH5D0SUk/GRnE4ftgK7NBQxuHvudQa49hdqyTAfLjY7+ipKu6ja9n9HWVHdez8cQHDpPwHW5TOzvNPkdAo4Fv7DRZvFnLnQjA+0UHXCaBn9E4U+3+LyfpPe4DDN10AOo1zgQa0+zIkQur2ikl7exMsUsOBPnHnQcIgM8G2HMDNCYEZPn7rpkhwOlDzt+T9GO3TJIVws/s7MfMqkbTdV0ZCKSQVkULAymx5wMPCwmzuQ3gYCKMaR5hpgB0fOZ4fvhzZknndKbduaJIafiuvAvBpueP/E658jjadXMCNO8CEEhl8u2rLmz8bud1+FPvkfa78TTO9oUs1KelQt2sPrDz+jayxcldHOIh6fps5uZkjldC0Amvit9kA2p+5zfAXfse9fo5ATok8TBIMqchBeUQeUYVStAZXhLsRe8/7vqcVFQwHmfXPqc2VVLvx4Ycr413F75B0t3m4PeeC6B5DwIQ+H9pL3I/1wQz74EJxJLKn64NzwlcaWzNsOEBuaOkBznXYpd+57TEn0ESWTpXcWYQBCp83lXbXAAdegWIqBHB+2xVyex4OJspzARYdz4YA7Ag+hMJ5N9jN4JA7CXuFHSMZoZ/jYdmqs3tpnGxB6D8Ag1aKylj/9p0U8n/nwugQ6/AG91Gam5RrRQvui9padWcMh9xihfXQj4icbZPvmJJ/ITkq4+4JIaflXzgpr7nAmjMjae7lyUzBA7wHBvejodJunfg+ehDK02NLUUTnXsRmtBrw0p1HUmkjFVrcwA0hQxhiuHeolET7mPVJLL5wZggTBz2fsgHGZJNkiLyAwxqdJDiNRcTIyUd6orAf6HBWCRgVK3NAdAhiYfJIxEVf/Lc29ldSlSYTdIVhKs+Djgfj9lQqGYu8qG0GS47Vi9WVlawMeMAncY5B0DDGMNuxoE/V/t5lVAxEygsg1/YB1+6pFmRPIunwN+LiYHJBf1zzOBJJ1B0vDiMflafvzkAOuQ3VP/CO04mlyNDSuY+W9L53P2Xz7Ql8d0SZaN92IGZwo5Laid1ng6CK9V95HMAdLghrG6D9URSuMrgVrtVZtHFMHAzCy9Bj/HH4XyqSUEAq9JqA/p4bnNFEiht7hvCVZMUatouq0yo3fASzCI40QOJ4fgJQuGTrtJqAzrcEMLboHBh10TUKoILHko0EX7FHdzvsIvhWYcNsg8sN7w3cfQzXKEITBBQmbNXIyVvKKpkx9DYExAAKhFw2jjXtQENhfGtjitRfUOxUVrpCwAqXAbs59jciKOMeANImQrt5NDseK+rG/3rnu9S67aatNijjLkmoGP+xlK1Uxj+Dc0N2Ghkp8DZCFscLInNjurBiR5fBd4exo7pQbuJpDf36GfwLTUBfXJXcAW7can2Y8rcgJ2H1oUGS0h/VaNeB9qaNKfQ7MANCDiWZnaEH3bpbJyVQq0J6NAHS9lYBLK0tPuQCgq7DjsaFx61PMKkXKKI+JbxV4cZ2iQrAGCSEyD6Q9JaqukV8jqgA+DG+/xglduxg1qARjvzFVM7jta1PFbHYRa7PKxbB1GJZFI2tr4BWEoXsPySbUJ6GWMNAc/qhA0O+QliEmxD8ig3VTUtNqieHXMaARx2T7WFGgChqk+Bnp6vcGRQYOrGM5lUygbQCChwgM5Pp36Rgc+L7ca4O1Yd7GdKBYSN8W8ySeZM0FonNuqesMKwSaySyVID0AQhXue8Agya0lb8vLS2KvOEMaGp4GOsS5NatWlEDlVdXwMmguQFPkYKVFZRVlMDmhw9TA3sZ1qVZWnAhIW3pnIDyTCHIUcxl5xNXSp5gGd819mgFINZWovnmA+bvcMk2UdTAhqPAF+ujwpSNBzTY26k9RwAxeFe7hlCwk8x90oUoskZ2xjXEPGFUurrgMDAQ3kVJ1xNBWg2DOzmSVmisQu+fRBdGkOIU/fB+5OG9Q9nK1NvY8gGKGTu0SdeAvYXS2zgCm8OxCuYhJhh8HRwVeasXL3HPBWgQxfdZIPrLZW8GzEXzu9cbv6k2Lw7V1/FfHB8Mnl5U5dsGPru8f2xEsOtyeYfc6pYmwLQYXYwAyEiiKYuvvwUk5p1nCuB2D1bfM80BaBDXy3BA8Kjv8yVyIyvCysqUe2UzZBvx5Z0AUlcs6qxUuGnDrOkMcX+4HzWY1dIqiVKOC5UdaWofJfkh17vOwWgQ2oh5Jw9Si87vSRx1JswJ+BYUE7gjA6cRPE4kepUknIrnI7wKuIYOEAOeZ6gC3WeKTRJdjW/L2qTjjCAcINYPGg0BaBJrcKv6s8ZmdtBkpTopY4b9jDcCwpEDq10OgIOsrqA6ATQCTHjKoR6S6H2KcuErXpRsBWft1jchTcFoBlw7MZhqWXXC4d2Sg3DRgWNi4al1C28i1Ql/yw0BRd5YOGd8I3fwfFOFV4hAMGHE/I9MFNYAdYVZs99LyqvftAVNgfsuEanrBCKnPECQbLy+ZKE9yn/UNTcnArQTAQkcMLdHkBTJIQyPmxbeNcEQjgeokuNZD48MtDhL7PE8zPLPFqQTS3FcGKg4H6jNENuw1aOs6QBBEDgb+rIUSgRmxyzh49xXUXQ1HN5b85cwfdP8KckCSxVPo3SbviimfOibUpAMxCq7JNM6mmVTOYYB7+HQgIE53YnvwLi8Ei1VcL0xdCZbLSqr2IP0Dy4+BAoO8sHCdggE5FxA4DHMlFCTe9LBUP2p7o+mg1N6zeL4dEbPL9LvWdq0FEBFUIV9vhYqyR7DuYT95xvFHXkT3ORQj/AVFGVoV8wmziABrGcCNs6MwLQMKEUUSTDBDDj8wWYaEOAijbk42OHPoZJMrZWwqTwRd05lfYbjtzFB8hmlvemXgYHJKE81tW3xj/MSbeQivho+oI7paxg27EqDwk4dZLd1Bravxx2IueN+DA4v8cDQqHzLjmFBCF2dfY4Z4ukGhoNAJPexLKLRuID4LgGlm/KKHCu9tjATdnV/v3G1OrhmAE6m0PsZ/7tx8qKxZ4BWbFvWNXQ2GzcyEDP3ViCIZI0KOXmzTncj1ReZRWY0navQh/1woQbDID9UWf8PqfCJgKETE5xdJa21CbKHwgEDxkzgs2an9QcrRVPeGhLc7QF/lSW0DH9xim/NoEJ3htThw0jgOny4fnViA/af8xoa3jXHP656mAhxkVYH+/UuigocwhbksRevwrkzGEnrdvl4loa2r8jmhIzgcLm/utetVnkWmxFOMapc/m4D64AVFRK8bI52TRxoaz8aVD4fdkEsowzsXMLcAB8zArMI6i4LPX8wcTY1OIPHe3JHoN61WjZ2DRBppiDaG2O/ghbapWFA046mT8yZNP7jP7/tQHtBxTbX/ye8DibCexbTAM0eVhHzt+LLQwJhuUSdxgamOgky+u6BnAh/1BagGAFG64lh+MBOjQDPnrMC8yodQEgPlRkxikDxAa4nwRd3Kmx+eZP1qWoJsERvCyUbqCojG9+vqqUL/AvMRdA8z6pzSLLJGlNMZD9ia9wq/FI7OKWvpSW8WNl84Pbij7xZOTaiKNrkQk7RJMDaoCHx2eVuYImxrygeLmXJ7U14pWQ6w50Kx8mEG1OpwpUtaFT88qSR04aPstUC5dAbFk08T0SZ3V7Qftzr/FmlPS9TojR3o/yPnnOLASoq1Ywv+JRLIcTsdjcQWVNeUrYW5DQgJLo6x3pPaDUjXPS0P79UlEmtADa2POPyRDHVos3hPEyOonvc9QZma4zNpzrzDPAirxx6eFvR8lQC9q3Pl6p4qObI6AZNO/FMslmkQAD55vggmJHnQKy1yocdrntmrgraLzmRgsj3/iwUzZ42M6YI5gZ1BJhgwgNuHjkr89gut5T43p29GiKsHAL2phdNRtC7ONJ/Z2BEPz54/yK1QWiE7yM3MYqQijdv3/Nc7Vxw3GqFfZzbJLM5ui2dYKdq4aO3xkgH+x+6TeEEF9+UNB2C0PeUEaJHuIPxotAQGescPeq+fGBGQAecknglOCRSfFIcj+iTdelXKTVaz9vemm/tOdcV/uaENBjl5nyZ2AT8ma5xWPC0jol57mvfHE9HuL+kCGOeTbmmeZ8wFR8wtY2QPedpcR9YwIaVxbalj5ZXjdxHXKGgZ1Jrlxo9gCAI9bc7M/T9peMRR/lXTDBWNHw7hAg6uuiNEDnzH6Pa4YAmogh5gFkc0K9XTSvX/YJdaP9CMCgAT19tFQU0Zs7BDuwyaGPQjgi5N8nAQHeOeelEwLHB597qI8BugdYc27pAujQ30rtPMg469hmPB/gos0g9qBZ0WqHzzzzms0ofmJMJUqLEfqGQpozVgJMBEg2+ecN0Dno7HFNDqDxqxK65TjhdYwyHo/GglHGhMJKwzSo5SXpIY6Vt6DZ4SRDJeDgIkLgm8LfaG0onqnTBQzQY85O0FdY5T4sKs4EQq7Bf2ph77Tw+dDZ6JKtkxv+ZoXiA0fb7+dYjV0OQyoEg83dLsVt56sKQaUkIwJ3HcVrCLsyWXHzHGh8pwcNJK5vluJyrsCjg5lyXcdyXLWSEcqmYDvkLUhO0Hzhkx8wdwLXUgDtIYP/Fw40yZYpoo3nbjAhFjFc/6H5vcZuLssnlSABl5xoLXLt6ymZ9HNfEqDjJFsvKNxUaA7YYvx7FiSZSWdx+MN8WTOKZ6aSJqCXwp+B3zHrthRAp4qLw994sjMpFqE9Zo2EHS/HKsh+hOKaIa9jT5c2N+thLAXQvCcpV9h1NMgykGQmS76c9SyWeTmYjPBkcH2yJ0FzU8pt1m0pgEaIIUEJ0wIuNEuhtTIS2N258/B0LIKYhBiWBGjeNTybZTFCLoO3or2GyqPKWSl9R7ckQDNGWG+Qk3xK1mSV4fsKeIH3xSctjE0GKyqSpQEaYZBCBDeasliL0h5FZ3KczsEDphweIxo0ANK14LIsoi0R0HFleIROXiE8DGv9JRBXC13kSQtLBDRTFleGhy6JfQ0bzlp3CYADqLQcfOTro1CmgNOrFuUSXSqgmTIihQRUfFoWoCZ1aGknsHaH37h3xJqZ3icpfTvuMI7sbcmA5v3D4w74uVpNtRKTM0Gf5BBS3DKs47zoY0OWDmjmfGfn+QhL9JJ+TyWfqlV8JgDkkEdAM6UmHXRb39DMZNUv7Zjq/w+gBUAzmFTVJYg1FK2BbdcC13kIeMN70crUEySUHRK8qF83y9IEXQbeCqAZMxEt/NIw8cKsDQo47usyp7cZ2HiHOBqESkgkvfpGtg7gpu7G4qkELQGaCYI1hp+aIo8xT7pP7eMuymGu166roY1M9nJZO02wFFsDtAcV0S6yWKhYGpcLY+NI3WjK7rZatBG35rpSwtBA93EFyRevlUNN0iqg/Rg5ENMnBKw6LIj8QvLqsLVJPRqzrsUUWtvXFSF3kDQrsttX5RHyAe/vam1w+FFzrXVA+wmDT81ko7U3ZYGHdS2oWER5WZJo51A7OjwoiDxLskzQxOuOgvMl00iExVc/h3EU+5C2BdChAP1yTF5dl3MK/UE9aDnqclCSC21+2Mizg8aF7YbZxDkwVP7seoAR70oOIBVC8fZsTRXWbQR0bHKh3dB2m5brkXE7andLN5tGE8a2AzolSH+8G3YoFZco4FK6MGPuhOJiQ+NyOiwhfkwigiC5lZByn7PY6wzQeVOXOszeVyKlJh2usfjQnlS9O/+0VB07f2gRZCAqjlKEEdsdj8ShrrrTEg6rz5NooasM0IUEa93WkYABuo7c7amFJGCALiRY67aOBAzQdeRuTy0kAQN0IcFat3UkYICuI3d7aiEJGKALCda6rSMBA3QdudtTC0nAAF1IsNZtHQkYoOvI3Z5aSAIG6EKCtW7rSMAAXUfu9tRCEjBAFxKsdVtHAgboOnK3pxaSgAG6kGCt2zoSMEDXkbs9tZAEDNCFBGvd1pGAAbqO3O2phSRggC4kWOu2jgQM0HXkbk8tJAEDdCHBWrd1JGCAriN3e2ohCRigCwnWuq0jAQN0HbnbUwtJwABdSLDWbR0JGKDryN2eWkgCBuhCgrVu60jAAF1H7vbUQhIwQBcSrHVbRwIG6Dpyt6cWkoABupBgrds6EjBA15G7PbWQBAzQhQRr3daRgAG6jtztqYUkYIAuJFjrto4EDNB15G5PLSQBA3QhwVq3dSTwX1iMovHEUcWzAAAAAElFTkSuQmCC
                          button_code: 56b4962b6aa9180b158b4567
                          label: Policía
                          news_collection: []
                          optional: false
                          phone_collection: []
                          sequence: 0
                          social_collection: []
                          url: '914904070'
                          url_collection: []
                        - design:
                            icon:
                              color: '#000000'
                            background:
                              color: transparent
                            size: 70
                            color: '#000000'
                            format: transparent
                            char: e894
                          icon: >-
                            data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAYAAAA9zQYyAAAPAElEQVR4Xu2dd8w1RRWHf1iDRrFECUYiBo2FiIUAGgsgGDRYULCLBbGAvYGVqgIqNhRUsKCoiKAooiLYSxQk2MWgqH9YUFGxoYAlD8z6zbvsvTtb5r33zv4mefMl352d2XPmmbNnZ2bP2Ugu1kBBGtioIFksijUgA20IitKAgS5qOC2MgTYDRWnAQBc1nBbGQJuBojRgoIsaTgtjoM1AURow0EUNp4Ux0GagKA0Y6KKG08IYaDNQlAYMdFHDaWEMtBkoSgMGuqjhtDAG2gwUpQEDXdRwWhgDbQaK0oCBLmo4LYyBNgNFacBAFzWcFsZAm4GiNGCgixpOC2OgzUBRGjDQRQ2nhTHQZqAoDRjooobTwhhoM1CUBgx0UcNpYQy0GShKAwa6qOG0MAbaDBSlAQOdfzg3kfR3SVfm78o9GOj8DDxe0l6SXi/pywY7r8INdF790jpAnxi6+aqkwyR90WDnUbyBzqPXuNUY6Or/AftISWdL+lf+W5hODwY6/1g3AW2wM+ndQGdSbNRsDPQpkm4jadtat+cGi/0pW+xhA2Kgh+kv5eoY6CdIAupdJB00A2xeHgH7spTGXWetBgx0fiLqQH8wdHn9APYBku7bYLENdo+xMdA9lNbxkllAV83MA/v7ko6Q9HFb7DStG+g0PQ2p1QZ01fZ1JO0g6SWSdq11CNhHBXeFTRqXGRow0PnRSAXaYI8wFgZ6BCW2NNEFaKz0rSU9SNJDJd1b0o0a2v9JWBU5OWyr55diRXow0PkHah7Q6H9TSdtJeoSkHcOy3ry7Ol/SGZI+K+k7BtqrHPkRXttDHejTJN1N0gMl7Sbp7i03hDU+M0B8nqQ/SvrveguxKv3ZQucfqRjoiyTdYoYbUd0JwGKBPy3pK5J+K+k/+W+zjB4MdP5xnLf1Te9/lfT54EJ8SdLPfHCp/6AY6P66S72yCWiOkWKBAZkluctTG3O9+Row0PkJiYFmjfk4SZfm73aaPRjo/OPeZdku/90U3oOBzj/ABjq/jv/fg4HOr2wDnV/HBnoddWyg11HZttD5lW2g8+vYFloS5ya2knTTzPpmO5vD/JRDJLHWvF7lirAs+Jf16nDR/UzVQt9D0lvD4Z9Fj0Hu/n8p6YXhTHXxW+ZTBHqLEFaAk2xTKUC9p6Rvly7wFIF+tKSTwsASTuCsgnfq7ilp9yDryyUdbqDL08CUXtJiWQ8MQW7KG9FIoilaaANdMNJTB/opkk4o+HyxLXTBk7cSjU+bPhHJyfnjo0MwxVI+QCUswtsl3SWScx9J7y59fKdooW8s6U2S9q4NbikDTvje48OqRiUiE/gZki420GVq4IaSnijpSZK2DyKW8tJ0c0kEsyEUAp9vHRsAL+XpM5fIKVroWCEl+pgx0IQeqyI1lWmaalIZ6A2xm8e20GytbylpG0mbR3rn65RzJP0g00F/Az2JqdssZA4LXbkz+9Zeyup3wLeEBG4kht0FI660GGgDfZUGxrDQfc6IADaHlo4ZKX6dgTbQg4HGddtJ0ntqgWL4APajkr4p6aeSWIFgKY2gMjvXwhkA9P4jBI4x0AZ6MNAcdOLli2DmFFYXDpV06owA5kyA20p6taTHRvp/W4B6SGxoA22gBwFN4Jh3Snp40OPnJD0v+MVtqt04AHxwqIj78fTo8FTb9U2/G+g+WivkmjFeCp8a1nlRybcksZ3+4w764SXydZL2C9eQSIg18t90aCOuaqB7Kq6Ey4YCzdcubCdX1rnvum/9jPYekj7WU8EGuqfiSrhsKNCsMZ8uabOQoq2vZcWnfkEIao5e2Zp/ac9z2gZ6Ccm8VlgR4N+chdWGd4UO+izbxR8LsPTGX9/PnDiMj/9NPGiijTLZLukhfAw0/nhfS5/S9T9GWmpM6SupzrLtFOJPMgi8VFUrBkmCjFCpzxcdWNU3hr77uhvVrd8uvAxi9b8ricnCaknXEgPd9do+9cnY9Zrw/tB3Mvfpt/GaZQJ61im40YSd0xCrCyyfEca2S3lVWJ7jmqFAxyAOARqjwPLfk7sIMrAuR3CfJekjA55QA2/h6suXCeh4tWAU4RIbwQris/Jyd2XiNVW1MYG+VVjLJuzBEKC5t9sHq0lQ9aaUFh3FTKr+9TCpf5FUO1OlZQEapXMgfa8QL5mlL1KZLXug7/ilklABTIy+ZetwtgMYid1B27/u29g6XXez8CJbPQ0eJumT69T3Ursc8eN2VQYThbJD+JlgBT8QHru4L31KPDmGttWn/77XLNU3mstioWOgh7zh9x2UvtfFbgIbIY8JaSS6tsd6NruNjwwXDrX2XfsfUt9AN2hvVYG+dgjzhS9NwU3iU6ffdyAEowIUWGUKu4yA/cMObSyyqoEuCGhEuUN4u79rkOstkl6ReGqu6ZQey4dshf97kZR26NtAFwY0ULLk945oReHDkgBz3hs/Ob4fJ+kNkni5oqzix6wGujCgEYfPrV4UEs1X4rE2ixvxIUkXhs+tbiDpJuHs9NMkEW6gKn0ONnUwpNmqGugCgUYkLC67nOyadV37xfdm15GgiqtWDHShQCMW7geZYTnT8eAEMrHiHPLnPMmqhhkw0AUDXYmGCwLYRGmqpz8GYvITcmiIXIWrHozcQE8A6LqI1enBfy7b6bSEp0hbFQM9QaDboFjl3w20gV5lfq9x7wbaQBvoXBrwWY5cmp1Ou7bQttBF0W6gDbSBzqUBuxy5NDuddm2hbaGLot1AG2gDnUsDdjlyaXY67dpC20IXRbuBNtAGOpcGltHl4DQacSmuyCW02x1VA4QT5mQhZWiwncE3toxADxbKDSxMAwY6qH6947EtbMQL79hANwDNt3V8xtQ3YEvhzCydeIQuO8gux9pxWdW4HEtH1wJuyKscXuVYAHb5ujTQBjofXQto2UAb6AVgl69LA22g89G1gJYNtIFeAHb5ujTQ6wA0cTFYOSFvyXWj/gjmQoriP69D6gTuYUtJ9wl/hN7lnv4k6Q+SvhH+SJ98eT7ermr5eiGa0+aSSFmBDtDF30bo10BnAppdzztKImYc2a3mJR0CIqIVnSzpdyMMatwEwOwZYt2R17utEP7raEnv65n1alb7t5S0u6RHhbziTfVIx0EucnKj/KhnxgQDnQFoLA8htcgT2KWMGYqLCXUvSW+WtG2Xmwh1geuVIaLSkFQcnK14vqRnRlFNU26HiKlHSvpex6eXgR4RaCDaNUBEnOa4nB8OOV0Q/pPg5MRw3r7BenfJz90EB+4FA0uKtyo0LvWwvoT7Oiu4GtW1ROwHfkKFxffN7iixoY/qEWFp6ITi3pjgTKrjOiRQMtAjAc0AksuPZEMVRAwIAcffH2BqyptHWK47SyLtA65BFSmULXdSk52XYs6iOsCMNXxt1Na5IWDjF1rA5NqdwlZ/bNVpi7/UAI7ogvTMTKjY1cK1OjFMKmJVVz4zPjUuCX3u3RBY8uAwsS5L0IWBHgnoHSSdEA0gIWlfLOmihEGgChDcP1jDKvp+1xjNTcHOj5FEigomV2phUhEgnXTIVdk/AJoSyb+uC54MWNpTEyz9rIip3AtPirZUdwZ6BKDvJOm9wX2guWMlHdDzQFO9LV6SyJPCakRbqV/bxbLV264HTQdKYCH/37xSvwfqc/9dc7TUJxXuD08efOt5GWIN9ECgCSzOaTwi5lPGSONQt3AELj++ZSDr94HfSdDyVDehCVJWSPCh9ws/4jo9Z07I3Y1D/WeH+l2fMPV7qPefkkzTQA8EejtJp0naLGSMIpUab+ZDCo/dfaJE9meHFRNStc0q8X3whQ15VshgNbRsEfxeciBiJfGNiSfdVHYOmbewrtwr55Hx24eUTUOKOZJoUtqSGBnoAUDX06i1KbvLwDJBsIi7hIv2CEtoTW0wAch0dVjioHe5D9p+bli54Tqy0+LP1jdfeEJgzalL4SWSc8ltPm/KvdxP0knBaGD1maw/n3GhgR4AdJzocux8foCEy8CL0DyQ+G2T4JKwSoJlfEiP1ZF5YG0VNjzwj2dl1o3TyXEPbKKck0JrQp36ZJk3uQ30AKC3kXR6sBw50gfH7eN2kHatKYkmO5LsMrITeEbIUZ7yEpnA0lVV4tznsyYMa9i8P1By6ILdVlZJKIeHlZumFRcDPQBo1p15FFIOjB75qaC01YufAKzhsm1cbczE1+Lffi3Bkrf1N+t3nha4D9WnTU1J4V8W3AzawPUCujFLPGlPCe8YlzZ0YKAHAM1yFAkuKTk+yIwtI31wsKhp2Sy2jjkmFn3Pk5WNkSOCi5RLF2yhk2ORd4pZbg99G+gBQLNhcWhGoFkG4yUMmOYBHQ9iLqDngZJ6n0MsdvydJ6s4PB05b1IvBtpAJ3FmoJPUtLbSMgaaOTM8xi5pkMcW+mql2ELPgN1Ar1VMKih2OTbozS6HXY6kZ6ldjiQ12eWYpyZb6A3a8UthjwlVXZIaOck+tH3ouZjZh7YPPQsQW2hb6AEa6La+m+oaDbkhAz1Ae3Y5DPQAfDZcapfDLoddjlGm0tpGbKFtoUfByhbaFtoWepSpZAvdpkZvrLRpqOF3W2hbaFvoHhOn7RL70Pah2xhJ+t0W2hbaFjppqnSrZAttC92NmBm1baFtoW2hR5lKXuVoU6NXOdo05FWOVg2lnpHwAf8NqvQB/was7EPbh261NikV7EPbh7YPnTJTOtaxhbaF7ohMc3VbaFtoW+hRppJXOdrU6FWONg15laNVQ17l2KAif7HSisvsCrHyiEdMhH6CfdcL0UDJQ0g5JMRcG9DtNS4lZty+ITQtPxJJvymI+Y5RIEUi9xMDbuwS91GXNfU+h9wTcf6IgU3WsAuDvn/V0GB8nzniDXaSYRl96E4CuPJSacBAh+Egbx8xjndbquHxzXTVgIEOGuNJsbWkB0gi7YTL6mng4pDvpSmG9LpJsywux7oJ7I7K1oCBLnt8JyedgZ7ckJctsIEue3wnJ52BntyQly2wgS57fCcnnYGe3JCXLbCBLnt8JyedgZ7ckJctsIEue3wnJ52BntyQly2wgS57fCcnnYGe3JCXLbCBLnt8JyedgZ7ckJctsIEue3wnJ52BntyQly2wgS57fCcnnYGe3JCXLbCBLnt8JyedgZ7ckJctsIEue3wnJ93/AEJMJgCf7SVcAAAAAElFTkSuQmCC
                          button_code: 56b4962b6aa9180b158b4568
                          label: Web Municipal
                          news_collection: []
                          optional: false
                          phone_collection: []
                          sequence: 1
                          social_collection: []
                          url: http://www.alcobendas.org
                          url_collection: []
                      channels:
                        - external: false
                          id: 5e2f5cb6e8833f960e8b457a
                          name: Gestores Avisos
                        - external: false
                          id: 5e2f5d2101394ad80d8b45f5
                          name: Técnicos Avisos
                        - external: true
                          id: 5e2f5d97e8833f980e8b456a
                          name: Atención Ciudadana 02
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5e5f8c09c0faacdb048b459e
                          name: Técnicos Inspecciones
                        - external: false
                          id: 5e5f8c5e3b5399d7048b45ee
                          name: Gestores de la plataforma
                        - external: false
                          id: 5e73bd8502be88c10f8b4568
                          name: Comunicación
                        - external: false
                          id: 5ef5e3e59b223c01048b459a
                          name: Inspectores
                        - external: false
                          id: 5f05cb27265b64fb018b456b
                          name: Consultor Avisos
                        - external: false
                          id: 61851b61390a87441f8b456d
                          name: Gestor Inspecciones
                        - external: false
                          id: 61cc5de4fdad26a9108b4571
                          name: Inspector Avisos
                        - external: false
                          id: 66e1981d909d0b487108f6e2
                          name: PRUEBA NUEVO 3
                        - external: false
                          id: 66e1a8644ae6810b8f0b3b16
                          name: PRUEBA NUEVO CANAL
                        - external: false
                          id: 66e1a95c4ae6810b8f0b3b17
                          name: Prueba con otro icon
                        - external: false
                          id: 66ec2a230147faeb9a07f7a4
                          name: Canal por icono
                        - external: false
                          id: 66ec412eebf26f67e8017806
                          name: Prueba 2 Canal por icono
                        - external: false
                          id: 66ec41591a25ef58020e46fc
                          name: Icono
                        - external: false
                          id: 66ec5045adaf7ff7ee0afa61
                          name: Canal sin icono
                        - external: false
                          id: 66f326b19cdb7da2b50c3ac5
                          name: testing
                        - external: false
                          id: 66f47f443b7bc941a207e122
                          name: PRUEBA POR ICONO
                        - external: false
                          id: 66f480579ae3acf15d059a24
                          name: icono
                        - external: false
                          id: 66f481b99ae3acf15d059a25
                          name: nombre interno
                        - external: false
                          id: 66f482359ae3acf15d059a26
                          name: rtrt
                        - external: false
                          id: 66f482977b730a1565060107
                          name: cvcv
                        - external: true
                          id: 6707a3e935d16ea8ba023692
                          name: Taxista
                        - external: true
                          id: 6707a490ff6dc1826d02d533
                          name: Bombero
                        - external: true
                          id: 6707a4d16fb710a4340702e3
                          name: Turista
                        - external: true
                          id: 6707a53ce360bb733d012834
                          name: Vida sana
                        - external: true
                          id: 6707a56935d16ea8ba023693
                          name: Turismo
                        - external: true
                          id: 6707a59be360bb733d012835
                          name: Ocio
                        - external: true
                          id: 6707a5be6fb710a4340702e4
                          name: Danza
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                        - external: false
                          id: 670e609d6dbebd893f09dda8
                          name: prueba interno
                        - external: false
                          id: 670e61416be845d9b305453b
                          name: prueba interno 1
                        - external: true
                          id: 670e83a2be3d8d43720fc222
                          name: externo prueba
                        - external: false
                          id: 670e8ff3be0a96b3ad021cd2
                          name: Prueba
                        - external: true
                          id: 670e90553ae05dcb6f088352
                          name: interno de prueba sin icono
                        - external: false
                          id: 67116c98c26ab2478304d243
                          name: Prueba Qa Icono
                        - external: false
                          id: 67116e885298e64e820d2f62
                          name: Prueba Qa icono nuevo
                        - external: true
                          id: 671173ec2395a6b7df0bf935
                          name: prueba231213232
                        - external: false
                          id: 6711746bde27c0524e062683
                          name: icono prueba aaa
                        - external: false
                          id: 671176042395a6b7df0bf936
                          name: prueba icono 2
                        - external: false
                          id: 671179132395a6b7df0bf937
                          name: Sonido
                        - external: true
                          id: 671ffea1405a78e44f089123
                          name: buenas
                        - external: true
                          id: 672cbeb8b52e10d5900e6042
                          name: Canal_obligatorio
                        - external: true
                          id: 672cc15beb6d0d86b20b80b2
                          name: canal_obligatorio
                        - external: true
                          id: 672cde444b419fd019011795
                          name: Prueba Global Channels
                        - external: true
                          id: 672d084c1daef4e30c09b762
                          name: CANAL_OBLIGATORIO
                        - external: true
                          id: 6738a3b069ce60555305a215
                          name: global channel
                        - external: false
                          id: 6738a45d69ce60555305a216
                          name: channel global 2
                        - external: true
                          id: 6738ab9a69ce60555305a217
                          name: canal global 3
                        - external: true
                          id: 6738ac474d2e5d4fa405a573
                          name: canal global 4
                        - external: true
                          id: 673b2f790800c3a3200781c2
                          name: asdasd
                        - external: false
                          id: 673b4e8f4d840322fd0af792
                          name: global externa
                        - external: true
                          id: 673db80cff77ca803d07e126
                          name: Test 1
                        - external: true
                          id: 673db84068b70779b5011b8e
                          name: Test 2
                        - external: true
                          id: 673db8696b60131e9c0210a7
                          name: Global Externo
                        - external: false
                          id: 681e02def44fde0de40a7372
                          name: TestCrearCanal
                        - external: true
                          id: 682201462e7c5fccfd005939
                          name: prueba1
                        - external: true
                          id: 6822018233b2a2d5910ba782
                          name: prueba1 epg
                        - external: false
                          id: 682347c1c505dac373064892
                          name: test001-editado
                        - external: false
                          id: 68a47f13859d2dc5550eeae2
                          name: pruebaaaa
                        - external: true
                          id: 68c00ca5a50dbd22a304a205
                          name: empadronado
                        - external: false
                          id: 68d2908d67b58bbabb063e24
                          name: prueba canal palomino
                        - external: false
                          id: 68d39ced54455c0df60b87f2
                          name: Airess 2
                        - external: false
                          id: 68d55a3d89e2ce25a70069b4
                          name: Airess 3
                      company_emails:
                        - comentarios.alcobendas@mejoratuciudad.org
                      geo_bound:
                        - lat: 40.588856338396
                          long: -3.5502024713465
                        - lat: 40.501207353774
                          long: -3.701564402238
                      geo_perimeter:
                        - lat: 40.524463274111
                          long: -3.6659115545395
                        - lat: 40.523955219525
                          long: -3.6659362768742
                        - lat: 40.523461366455
                          long: -3.6656992902163
                        - lat: 40.52326078878
                          long: -3.6656280068925
                        - lat: 40.523044804662
                          long: -3.66558821055
                        - lat: 40.52291172678
                          long: -3.6656067275224
                        - lat: 40.522744581326
                          long: -3.6656448705613
                        - lat: 40.522625107122
                          long: -3.6656477025535
                        - lat: 40.522549572398
                          long: -3.665639045663
                        - lat: 40.522492007824
                          long: -3.6656542955615
                        - lat: 40.522370693067
                          long: -3.665726407344
                        - lat: 40.522291865918
                          long: -3.6657732034008
                        - lat: 40.522180360786
                          long: -3.6658157802193
                        - lat: 40.521965449952
                          long: -3.6658711459712
                        - lat: 40.521767113703
                          long: -3.6659127450926
                        - lat: 40.521512733465
                          long: -3.6659855456036
                        - lat: 40.5211091969
                          long: -3.6661779909293
                        - lat: 40.520899365774
                          long: -3.6655237946213
                        - lat: 40.520835203172
                          long: -3.6653237704792
                        - lat: 40.520828477784
                          long: -3.665302690758
                        - lat: 40.520801219936
                          long: -3.6652176600822
                        - lat: 40.52079396218
                          long: -3.6651951584983
                        - lat: 40.520532174069
                          long: -3.6643790908715
                        - lat: 40.519811022579
                          long: -3.6638772352364
                        - lat: 40.519674542806
                          long: -3.6637822753505
                        - lat: 40.520028743367
                          long: -3.6628457333653
                        - lat: 40.519861573965
                          long: -3.6627609794771
                        - lat: 40.519833907347
                          long: -3.6627468951405
                        - lat: 40.517896688038
                          long: -3.6617644622241
                        - lat: 40.517262060619
                          long: -3.6614426861503
                        - lat: 40.51435158061
                          long: -3.6596130457616
                        - lat: 40.513589017791
                          long: -3.6591337822098
                        - lat: 40.513533434727
                          long: -3.6591176567617
                        - lat: 40.513331969626
                          long: -3.6590590254128
                        - lat: 40.511832508634
                          long: -3.6586229674127
                        - lat: 40.511664680158
                          long: -3.65857422907
                        - lat: 40.511608040614
                          long: -3.6583798603314
                        - lat: 40.511456496681
                          long: -3.6578603206557
                        - lat: 40.513093057661
                          long: -3.6561454131097
                        - lat: 40.513014344281
                          long: -3.6557284550411
                        - lat: 40.512813872487
                          long: -3.6546680569859
                        - lat: 40.512794366777
                          long: -3.6545649383251
                        - lat: 40.512784307284
                          long: -3.6545118415444
                        - lat: 40.512783696082
                          long: -3.654508412506
                        - lat: 40.512697360066
                          long: -3.6543706611923
                        - lat: 40.512689221896
                          long: -3.6543600767316
                        - lat: 40.512664383691
                          long: -3.6543235977437
                        - lat: 40.512663133875
                          long: -3.6543215789562
                        - lat: 40.512648312904
                          long: -3.6542979454183
                        - lat: 40.512642241315
                          long: -3.6542883253616
                        - lat: 40.512640902083
                          long: -3.6542861876688
                        - lat: 40.512622688648
                          long: -3.6542570914483
                        - lat: 40.51260608135
                          long: -3.6542307257156
                        - lat: 40.512594921067
                          long: -3.6542129116302
                        - lat: 40.512573047573
                          long: -3.6541778780091
                        - lat: 40.512571618922
                          long: -3.6541756214143
                        - lat: 40.512555638186
                          long: -3.6541499700349
                        - lat: 40.512531531944
                          long: -3.6541114916755
                        - lat: 40.512516175769
                          long: -3.6540869087313
                        - lat: 40.512501713082
                          long: -3.6540636328902
                        - lat: 40.512486892725
                          long: -3.6540398814348
                        - lat: 40.512475821828
                          long: -3.6540221863185
                        - lat: 40.512458947563
                          long: -3.6539952279218
                        - lat: 40.512424663853
                          long: -3.6539403616726
                        - lat: 40.512385558984
                          long: -3.6538777762368
                        - lat: 40.512369489432
                          long: -3.6538518880625
                        - lat: 40.512236104304
                          long: -3.6536383622384
                        - lat: 40.512125486001
                          long: -3.653461177468
                        - lat: 40.51209843411
                          long: -3.6534178315094
                        - lat: 40.512064150052
                          long: -3.65336297765
                        - lat: 40.51204718688
                          long: -3.6533357826483
                        - lat: 40.512040580043
                          long: -3.6533252132781
                        - lat: 40.51203129537
                          long: -3.6533102505716
                        - lat: 40.512003171753
                          long: -3.6532652418242
                        - lat: 40.51195888833
                          long: -3.6531943443802
                        - lat: 40.511944693042
                          long: -3.6531715436644
                        - lat: 40.511927015155
                          long: -3.6531432794983
                        - lat: 40.511900855979
                          long: -3.6531013588919
                        - lat: 40.511884071578
                          long: -3.6530744018293
                        - lat: 40.51181353939
                          long: -3.6529614652345
                        - lat: 40.511798808219
                          long: -3.652937833167
                        - lat: 40.511795504448
                          long: -3.6529326075353
                        - lat: 40.51178425521
                          long: -3.652914556946
                        - lat: 40.511766934928
                          long: -3.6528867685274
                        - lat: 40.511692929614
                          long: -3.6527682509613
                        - lat: 40.511677394311
                          long: -3.6527434308227
                        - lat: 40.511663377101
                          long: -3.652720986132
                        - lat: 40.511636860765
                          long: -3.652678472213
                        - lat: 40.51161882575
                          long: -3.6526496146651
                        - lat: 40.511598559287
                          long: -3.6526170763923
                        - lat: 40.511585345477
                          long: -3.6525959379353
                        - lat: 40.511582131775
                          long: -3.6525907132103
                        - lat: 40.511570614896
                          long: -3.6525721879984
                        - lat: 40.511555704141
                          long: -3.6525484363254
                        - lat: 40.511547043955
                          long: -3.6525345422084
                        - lat: 40.511531062179
                          long: -3.6525090096366
                        - lat: 40.511507581302
                          long: -3.6524713647638
                        - lat: 40.511491867765
                          long: -3.6524461889285
                        - lat: 40.511477492824
                          long: -3.6524232687527
                        - lat: 40.511451334047
                          long: -3.652381230676
                        - lat: 40.511435352236
                          long: -3.6523556981768
                        - lat: 40.511388719408
                          long: -3.6523657514053
                        - lat: 40.511117673243
                          long: -3.6524239126423
                        - lat: 40.511074656382
                          long: -3.6517452796684
                        - lat: 40.510969358262
                          long: -3.6506713374725
                        - lat: 40.510825277064
                          long: -3.6492188422787
                        - lat: 40.510797102171
                          long: -3.6490383321687
                        - lat: 40.510773878055
                          long: -3.6489387234016
                        - lat: 40.510746060218
                          long: -3.6488389523923
                        - lat: 40.510680022854
                          long: -3.6486467465439
                        - lat: 40.510423203314
                          long: -3.6480000560664
                        - lat: 40.510360150364
                          long: -3.6478859008551
                        - lat: 40.510311556083
                          long: -3.6478120163628
                        - lat: 40.510253683071
                          long: -3.6477380426981
                        - lat: 40.510162066645
                          long: -3.6476408460809
                        - lat: 40.510054109404
                          long: -3.6475015908287
                        - lat: 40.51002414609
                          long: -3.6474629419194
                        - lat: 40.509986659478
                          long: -3.647432482994
                        - lat: 40.509856712425
                          long: -3.6473267861506
                        - lat: 40.509096491841
                          long: -3.6465484955631
                        - lat: 40.508845867808
                          long: -3.646290091404
                        - lat: 40.508741001774
                          long: -3.6461616115271
                        - lat: 40.508675592914
                          long: -3.6460817852013
                        - lat: 40.508594484198
                          long: -3.6459740712244
                        - lat: 40.508481719683
                          long: -3.6458241530746
                        - lat: 40.508446511382
                          long: -3.6457728262792
                        - lat: 40.508421812983
                          long: -3.6457430818301
                        - lat: 40.508374158757
                          long: -3.645678062297
                        - lat: 40.508318872628
                          long: -3.6455923144228
                        - lat: 40.508282409873
                          long: -3.6455236254481
                        - lat: 40.508217860324
                          long: -3.6454189042412
                        - lat: 40.508162790351
                          long: -3.6453266790213
                        - lat: 40.508029262999
                          long: -3.6451035037095
                        - lat: 40.507930456253
                          long: -3.6449060381621
                        - lat: 40.507882086206
                          long: -3.644809381014
                        - lat: 40.507920764346
                          long: -3.6447055316053
                        - lat: 40.508032765353
                          long: -3.6444273463991
                        - lat: 40.508067570565
                          long: -3.6443410458738
                        - lat: 40.50809420219
                          long: -3.6442988101075
                        - lat: 40.508060796319
                          long: -3.6442149255041
                        - lat: 40.50802174742
                          long: -3.6440443651733
                        - lat: 40.507999864319
                          long: -3.643913497263
                        - lat: 40.507937332715
                          long: -3.6434623813009
                        - lat: 40.507930249338
                          long: -3.6433916140489
                        - lat: 40.507934118692
                          long: -3.6433115091262
                        - lat: 40.507966398292
                          long: -3.6431446879893
                        - lat: 40.508072217771
                          long: -3.6427786269716
                        - lat: 40.50814056946
                          long: -3.6425241112124
                        - lat: 40.508173895483
                          long: -3.6423633186842
                        - lat: 40.508193344347
                          long: -3.6422031018003
                        - lat: 40.50818358637
                          long: -3.6420298590747
                        - lat: 40.508182270259
                          long: -3.6420073028417
                        - lat: 40.508148732162
                          long: -3.6415738140544
                        - lat: 40.508137792013
                          long: -3.6414510769688
                        - lat: 40.508112707513
                          long: -3.641344611302
                        - lat: 40.508060347408
                          long: -3.6411693225652
                        - lat: 40.508024017151
                          long: -3.6410600353649
                        - lat: 40.50799825535
                          long: -3.6410756060051
                        - lat: 40.50798513637
                          long: -3.6409070531201
                        - lat: 40.507967815894
                          long: -3.6406838127118
                        - lat: 40.507959380605
                          long: -3.6405803387165
                        - lat: 40.507946176049
                          long: -3.6404108409742
                        - lat: 40.507937430025
                          long: -3.6402967414509
                        - lat: 40.507919549031
                          long: -3.6400606308317
                        - lat: 40.507876451023
                          long: -3.6395300456392
                        - lat: 40.507873215724
                          long: -3.6392355320118
                        - lat: 40.507870795003
                          long: -3.6389401999362
                        - lat: 40.507869617758
                          long: -3.6388272348079
                        - lat: 40.507867652712
                          long: -3.6386285848063
                        - lat: 40.507867878214
                          long: -3.6385551727769
                        - lat: 40.50786973219
                          long: -3.6379748407148
                        - lat: 40.507869751085
                          long: -3.6379714180466
                        - lat: 40.507870983706
                          long: -3.6376011720695
                        - lat: 40.507871016044
                          long: -3.6375789828826
                        - lat: 40.507848238093
                          long: -3.6373803601197
                        - lat: 40.507826476333
                          long: -3.6346050882078
                        - lat: 40.507822256172
                          long: -3.6340609340687
                        - lat: 40.507819451704
                          long: -3.6337017449773
                        - lat: 40.507814621962
                          long: -3.6336789198939
                        - lat: 40.50780199679
                          long: -3.6336319435049
                        - lat: 40.507792333528
                          long: -3.6336034075464
                        - lat: 40.507782055196
                          long: -3.63357203311
                        - lat: 40.507768575868
                          long: -3.6335329566727
                        - lat: 40.507755342195
                          long: -3.6334983676656
                        - lat: 40.507736679988
                          long: -3.633451570608
                        - lat: 40.507720120924
                          long: -3.6334155339992
                        - lat: 40.507707968397
                          long: -3.6333973612352
                        - lat: 40.507700819851
                          long: -3.6333866713771
                        - lat: 40.507670252028
                          long: -3.6333259530107
                        - lat: 40.507651550232
                          long: -3.6332863672504
                        - lat: 40.507638191934
                          long: -3.6332416267007
                        - lat: 40.507631234603
                          long: -3.6331795961344
                        - lat: 40.507633457018
                          long: -3.6331357103153
                        - lat: 40.507633932659
                          long: -3.6331311116644
                        - lat: 40.507667137645
                          long: -3.63294068926
                        - lat: 40.507807830782
                          long: -3.632484767124
                        - lat: 40.507972476355
                          long: -3.6319482177899
                        - lat: 40.508107986232
                          long: -3.6314987463217
                        - lat: 40.508114868343
                          long: -3.6314757950905
                        - lat: 40.508282316832
                          long: -3.6309200282187
                        - lat: 40.508426696493
                          long: -3.6303648687906
                        - lat: 40.508394432371
                          long: -3.6298714484731
                        - lat: 40.508334805688
                          long: -3.629290418772
                        - lat: 40.508256449828
                          long: -3.6286408876616
                        - lat: 40.508250400727
                          long: -3.6285439286161
                        - lat: 40.508403038169
                          long: -3.6279906117949
                        - lat: 40.508457045546
                          long: -3.6278333090887
                        - lat: 40.508648017059
                          long: -3.6274218766436
                        - lat: 40.508655756919
                          long: -3.6274067228245
                        - lat: 40.508895337669
                          long: -3.626935769093
                        - lat: 40.508919403671
                          long: -3.6268837054316
                        - lat: 40.508945789444
                          long: -3.6268357944222
                        - lat: 40.50895470545
                          long: -3.6268197071705
                        - lat: 40.509077119022
                          long: -3.626555512411
                        - lat: 40.509181282036
                          long: -3.6263690477342
                        - lat: 40.509259989419
                          long: -3.6261253363995
                        - lat: 40.509312207925
                          long: -3.6259651807981
                        - lat: 40.509342694643
                          long: -3.6258087297871
                        - lat: 40.509418757545
                          long: -3.6253376630514
                        - lat: 40.509421927084
                          long: -3.6253179811519
                        - lat: 40.509410902075
                          long: -3.6252410399369
                        - lat: 40.509362375701
                          long: -3.6249020738221
                        - lat: 40.509347743091
                          long: -3.6248091649591
                        - lat: 40.509306051192
                          long: -3.6246389302827
                        - lat: 40.509266591322
                          long: -3.6244723873071
                        - lat: 40.509231499055
                          long: -3.6243311319995
                        - lat: 40.509209545531
                          long: -3.6242425227266
                        - lat: 40.509150902831
                          long: -3.6240246829469
                        - lat: 40.509099981767
                          long: -3.6238282787828
                        - lat: 40.509094853697
                          long: -3.6238102904892
                        - lat: 40.50908556873
                          long: -3.6237779818821
                        - lat: 40.509033306445
                          long: -3.6235963195845
                        - lat: 40.50903118489
                          long: -3.6235721035155
                        - lat: 40.509020615488
                          long: -3.6232267759089
                        - lat: 40.509024943879
                          long: -3.6227581137077
                        - lat: 40.509063617888
                          long: -3.6226363089988
                        - lat: 40.509150514577
                          long: -3.6223743745219
                        - lat: 40.509159055007
                          long: -3.6223609978817
                        - lat: 40.509234370851
                          long: -3.6222436624831
                        - lat: 40.50931040789
                          long: -3.6221262154554
                        - lat: 40.50939098653
                          long: -3.6220018462404
                        - lat: 40.509384116072
                          long: -3.6219895074415
                        - lat: 40.509453274437
                          long: -3.62191141903
                        - lat: 40.509458075607
                          long: -3.6219065060368
                        - lat: 40.509523928623
                          long: -3.6218399540772
                        - lat: 40.50953162838
                          long: -3.6218321170431
                        - lat: 40.50957470379
                          long: -3.621779518439
                        - lat: 40.509813057691
                          long: -3.6215324466909
                        - lat: 40.509880652617
                          long: -3.6214434838665
                        - lat: 40.509940984756
                          long: -3.6213464275916
                        - lat: 40.510007333613
                          long: -3.621221098742
                        - lat: 40.510032892343
                          long: -3.6211422524406
                        - lat: 40.510038663477
                          long: -3.6211244826947
                        - lat: 40.510125225132
                          long: -3.6208756410751
                        - lat: 40.510133123257
                          long: -3.6208141005642
                        - lat: 40.510154909023
                          long: -3.620599008761
                        - lat: 40.510166626415
                          long: -3.620480493309
                        - lat: 40.510169784892
                          long: -3.6204459386605
                        - lat: 40.510174203807
                          long: -3.6203947529269
                        - lat: 40.510176897261
                          long: -3.6203629087516
                        - lat: 40.510190056773
                          long: -3.6202106489686
                        - lat: 40.51019101893
                          long: -3.6201824478625
                        - lat: 40.510177094287
                          long: -3.6200240486953
                        - lat: 40.510141377778
                          long: -3.6196958233336
                        - lat: 40.510140346129
                          long: -3.6196866072425
                        - lat: 40.510131372195
                          long: -3.6195624716936
                        - lat: 40.510107931115
                          long: -3.6192632778462
                        - lat: 40.510101138749
                          long: -3.6190849852394
                        - lat: 40.510100384893
                          long: -3.6190743553193
                        - lat: 40.510083331066
                          long: -3.6188439157868
                        - lat: 40.510071084601
                          long: -3.6186914342239
                        - lat: 40.510059549274
                          long: -3.6184060421482
                        - lat: 40.510059313758
                          long: -3.6183995481629
                        - lat: 40.510063689905
                          long: -3.6183225127269
                        - lat: 40.510070002817
                          long: -3.6182707541603
                        - lat: 40.510090804592
                          long: -3.6181376857458
                        - lat: 40.51009295439
                          long: -3.6181063086585
                        - lat: 40.510096402613
                          long: -3.618067979532
                        - lat: 40.510097766248
                          long: -3.6180319919278
                        - lat: 40.510108157669
                          long: -3.6178913917388
                        - lat: 40.510106921884
                          long: -3.6178697803188
                        - lat: 40.510102699568
                          long: -3.617833859472
                        - lat: 40.510099294945
                          long: -3.6177966477686
                        - lat: 40.510098952904
                          long: -3.617793221667
                        - lat: 40.510086601893
                          long: -3.6177106031322
                        - lat: 40.510100607443
                          long: -3.6176859446726
                        - lat: 40.510104700374
                          long: -3.6176786641683
                        - lat: 40.510157571373
                          long: -3.6175611159789
                        - lat: 40.51023716457
                          long: -3.6173842058109
                        - lat: 40.510313256042
                          long: -3.6172219110861
                        - lat: 40.510361279785
                          long: -3.6171195440819
                        - lat: 40.510463389128
                          long: -3.6169267866048
                        - lat: 40.510505382591
                          long: -3.6168401804523
                        - lat: 40.510643187535
                          long: -3.6165253477002
                        - lat: 40.51069761419
                          long: -3.6164047430199
                        - lat: 40.51079288337
                          long: -3.6161936255496
                        - lat: 40.510812396899
                          long: -3.6161496592814
                        - lat: 40.510828203519
                          long: -3.6161064853028
                        - lat: 40.510855118117
                          long: -3.616009235111
                        - lat: 40.510919960257
                          long: -3.6157598310956
                        - lat: 40.51092813922
                          long: -3.6157127038499
                        - lat: 40.51094388954
                          long: -3.6155802949571
                        - lat: 40.510967717225
                          long: -3.6153521156499
                        - lat: 40.510968477499
                          long: -3.6153446864117
                        - lat: 40.51097795532
                          long: -3.6151550912104
                        - lat: 40.510975866068
                          long: -3.6150906251487
                        - lat: 40.510971751193
                          long: -3.6150512819832
                        - lat: 40.510970553453
                          long: -3.6150393495318
                        - lat: 40.510967588564
                          long: -3.6150209090256
                        - lat: 40.510962686404
                          long: -3.6149940703572
                        - lat: 40.51086988231
                          long: -3.6146746472521
                        - lat: 40.51076450004
                          long: -3.6144163818797
                        - lat: 40.510675569663
                          long: -3.6141983872418
                        - lat: 40.510462428361
                          long: -3.6142304363359
                        - lat: 40.510263646661
                          long: -3.6142066683839
                        - lat: 40.510055309912
                          long: -3.6140127276612
                        - lat: 40.509901268108
                          long: -3.6138411192833
                        - lat: 40.509643712921
                          long: -3.6134490396187
                        - lat: 40.509437898993
                          long: -3.6131699068859
                        - lat: 40.509297103649
                          long: -3.6129294920653
                        - lat: 40.509163368287
                          long: -3.6126147826132
                        - lat: 40.509085234551
                          long: -3.6123477926898
                        - lat: 40.5090382682
                          long: -3.6120643381046
                        - lat: 40.508975434056
                          long: -3.6117319810082
                        - lat: 40.508941360886
                          long: -3.6114462719851
                        - lat: 40.508946608086
                          long: -3.611237758515
                        - lat: 40.50892325366
                          long: -3.611190688104
                        - lat: 40.508860232649
                          long: -3.6110635984839
                        - lat: 40.508789187523
                          long: -3.6109206083383
                        - lat: 40.508686086576
                          long: -3.6107916093924
                        - lat: 40.508556819603
                          long: -3.6106889303676
                        - lat: 40.508400816762
                          long: -3.6104953620332
                        - lat: 40.508226000163
                          long: -3.6102989093614
                        - lat: 40.508032251041
                          long: -3.6101050008262
                        - lat: 40.507948894759
                          long: -3.6100412295144
                        - lat: 40.507866324215
                          long: -3.6099480643797
                        - lat: 40.507701182892
                          long: -3.609761734797
                        - lat: 40.50754426514
                          long: -3.6095705233826
                        - lat: 40.507499570636
                          long: -3.6095041406909
                        - lat: 40.507367900513
                          long: -3.6093085558406
                        - lat: 40.507225925868
                          long: -3.6090681458471
                        - lat: 40.506984729897
                          long: -3.6087159053261
                        - lat: 40.506817437014
                          long: -3.6084587452948
                        - lat: 40.506595413886
                          long: -3.6080732688075
                        - lat: 40.506435844744
                          long: -3.6077518687869
                        - lat: 40.506402414764
                          long: -3.6076846458575
                        - lat: 40.506261914413
                          long: -3.6073344914022
                        - lat: 40.506162918909
                          long: -3.6071263441822
                        - lat: 40.506139422096
                          long: -3.6070546083716
                        - lat: 40.506108387645
                          long: -3.6069600255942
                        - lat: 40.506055160583
                          long: -3.606871262206
                        - lat: 40.506019668887
                          long: -3.6068191288519
                        - lat: 40.506009119414
                          long: -3.6068036903843
                        - lat: 40.505891355585
                          long: -3.6066525119553
                        - lat: 40.50576901214
                          long: -3.6064984483862
                        - lat: 40.505622584806
                          long: -3.6063500697603
                        - lat: 40.50551849046
                          long: -3.606237716535
                        - lat: 40.50550013542
                          long: -3.6062178410639
                        - lat: 40.505487862484
                          long: -3.6062046297713
                        - lat: 40.505478233905
                          long: -3.6062025366539
                        - lat: 40.504976633862
                          long: -3.6060961656822
                        - lat: 40.504550195659
                          long: -3.6060189164578
                        - lat: 40.504465572673
                          long: -3.6060416414711
                        - lat: 40.504269579535
                          long: -3.6059839463031
                        - lat: 40.504099469109
                          long: -3.6058678152985
                        - lat: 40.503827782645
                          long: -3.6056571794517
                        - lat: 40.503800616122
                          long: -3.6056322684567
                        - lat: 40.503600500937
                          long: -3.605448242825
                        - lat: 40.50347341296
                          long: -3.6052708938233
                        - lat: 40.503367541539
                          long: -3.6051019976507
                        - lat: 40.503208575277
                          long: -3.604904783825
                        - lat: 40.503126512091
                          long: -3.6047827210158
                        - lat: 40.503036965473
                          long: -3.6046118486905
                        - lat: 40.50301930193
                          long: -3.6046302193603
                        - lat: 40.501759017031
                          long: -3.6033248409118
                        - lat: 40.501444036995
                          long: -3.6027793835803
                        - lat: 40.501356195305
                          long: -3.6027802495396
                        - lat: 40.501361279974
                          long: -3.6026690041452
                        - lat: 40.501342040871
                          long: -3.6024712700032
                        - lat: 40.501330056571
                          long: -3.6021778883593
                        - lat: 40.501371124946
                          long: -3.6020765241321
                        - lat: 40.501412162495
                          long: -3.6019810604068
                        - lat: 40.501459946735
                          long: -3.6018857748851
                        - lat: 40.501487533413
                          long: -3.6017782708794
                        - lat: 40.501508488263
                          long: -3.60164676164
                        - lat: 40.50153607472
                          long: -3.6015392574563
                        - lat: 40.501594059319
                          long: -3.6014590508794
                        - lat: 40.501648359808
                          long: -3.6014116203895
                        - lat: 40.501682328464
                          long: -3.6013760461408
                        - lat: 40.501702846961
                          long: -3.6013283138563
                        - lat: 40.501710194647
                          long: -3.6012147276088
                        - lat: 40.501697534529
                          long: -3.6010506868464
                        - lat: 40.501691202235
                          long: -3.6009690795329
                        - lat: 40.501678342977
                          long: -3.6008432750767
                        - lat: 40.501692384618
                          long: -3.6007416684023
                        - lat: 40.501747462541
                          long: -3.6005445965964
                        - lat: 40.501802259943
                          long: -3.6004014565177
                        - lat: 40.501823430899
                          long: -3.6002280396998
                        - lat: 40.501790612278
                          long: -3.60004223359
                        - lat: 40.501686973512
                          long: -3.5998409146655
                        - lat: 40.501687439629
                          long: -3.5997511067297
                        - lat: 40.501701821987
                          long: -3.5995836485005
                        - lat: 40.501722494641
                          long: -3.5995060583268
                        - lat: 40.501716204104
                          long: -3.5994161901968
                        - lat: 40.501649726481
                          long: -3.5992061157096
                        - lat: 40.501596419921
                          long: -3.599062013037
                        - lat: 40.501529414455
                          long: -3.5989536662998
                        - lat: 40.501455559476
                          long: -3.5988632094214
                        - lat: 40.501428905696
                          long: -3.598791217405
                        - lat: 40.501429432743
                          long: -3.5986894905207
                        - lat: 40.501403027643
                          long: -3.5985694674781
                        - lat: 40.501363109014
                          long: -3.5984494424535
                        - lat: 40.501290740591
                          long: -3.5980717323803
                        - lat: 40.501265358935
                          long: -3.5977363364666
                        - lat: 40.501251402851
                          long: -3.5971946409082
                        - lat: 40.501239250927
                          long: -3.5969311175552
                        - lat: 40.501207353774
                          long: -3.5965658061206
                        - lat: 40.501222587756
                          long: -3.5962306645675
                        - lat: 40.501298790768
                          long: -3.5958663100741
                        - lat: 40.501357637645
                          long: -3.5956005822934
                        - lat: 40.501365103752
                          long: -3.5954629213669
                        - lat: 40.501325736895
                          long: -3.5952351527824
                        - lat: 40.501259405962
                          long: -3.5949951084011
                        - lat: 40.501259682954
                          long: -3.5949413065431
                        - lat: 40.501294019591
                          long: -3.5948338596131
                        - lat: 40.501389563931
                          long: -3.5946491792707
                        - lat: 40.501417020647
                          long: -3.5945656289076
                        - lat: 40.501580098217
                          long: -3.5943874448516
                        - lat: 40.501634733888
                          long: -3.594274275347
                        - lat: 40.501665844146
                          long: -3.5941459097377
                        - lat: 40.501653008386
                          long: -3.5940140878725
                        - lat: 40.501626844034
                          long: -3.5938462709082
                        - lat: 40.501567389066
                          long: -3.5935824477193
                        - lat: 40.501480386109
                          long: -3.5934200077232
                        - lat: 40.501426980208
                          long: -3.593293847844
                        - lat: 40.501528416623
                          long: -3.5932069359573
                        - lat: 40.504512000302
                          long: -3.5890959307506
                        - lat: 40.505375788277
                          long: -3.586806025
                        - lat: 40.506716934354
                          long: -3.5846920525749
                        - lat: 40.508386966124
                          long: -3.5829498048402
                        - lat: 40.508453622628
                          long: -3.5828802719372
                        - lat: 40.508497711283
                          long: -3.5827661640593
                        - lat: 40.510367287037
                          long: -3.5779269454931
                        - lat: 40.510410500514
                          long: -3.5758557274283
                        - lat: 40.512401376952
                          long: -3.572024527367
                        - lat: 40.512160437122
                          long: -3.5672629222369
                        - lat: 40.512053003654
                          long: -3.5649719968061
                        - lat: 40.511153676999
                          long: -3.5617307912733
                        - lat: 40.510683479839
                          long: -3.5616442436654
                        - lat: 40.511252987368
                          long: -3.5583596196944
                        - lat: 40.511333192455
                          long: -3.5542353314432
                        - lat: 40.511093890617
                          long: -3.5522438904816
                        - lat: 40.511303168743
                          long: -3.5522814901166
                        - lat: 40.511545975544
                          long: -3.5523912489835
                        - lat: 40.511815689675
                          long: -3.5525071313173
                        - lat: 40.512010967708
                          long: -3.5526464830114
                        - lat: 40.512330717265
                          long: -3.5529035847872
                        - lat: 40.512391382312
                          long: -3.5529339465442
                        - lat: 40.512526632758
                          long: -3.5529284474114
                        - lat: 40.512684280104
                          long: -3.5528926784403
                        - lat: 40.512803529168
                          long: -3.5529176196604
                        - lat: 40.512861193979
                          long: -3.5529348547561
                        - lat: 40.512914237299
                          long: -3.5529577177589
                        - lat: 40.5129575858
                          long: -3.5529733008109
                        - lat: 40.512997012321
                          long: -3.5529801168149
                        - lat: 40.513072446892
                          long: -3.5530115445966
                        - lat: 40.513254812737
                          long: -3.5530797348423
                        - lat: 40.513283578052
                          long: -3.5530929554854
                        - lat: 40.513381664742
                          long: -3.5531537253448
                        - lat: 40.513454850182
                          long: -3.5532033130732
                        - lat: 40.513532649188
                          long: -3.5532489254897
                        - lat: 40.51363648602
                          long: -3.5533129301417
                        - lat: 40.513829965843
                          long: -3.5534513170915
                        - lat: 40.513896601081
                          long: -3.5535141901442
                        - lat: 40.513959973968
                          long: -3.5535810498579
                        - lat: 40.514022639137
                          long: -3.5536451889502
                        - lat: 40.514087136525
                          long: -3.553702969053
                        - lat: 40.51414687178
                          long: -3.5537581131979
                        - lat: 40.514209250749
                          long: -3.5538255554173
                        - lat: 40.514302523689
                          long: -3.5539319693647
                        - lat: 40.51435997047
                          long: -3.5539946496725
                        - lat: 40.514411747472
                          long: -3.5540561030074
                        - lat: 40.514461986755
                          long: -3.5541188422297
                        - lat: 40.514512548986
                          long: -3.5541893749208
                        - lat: 40.514561026227
                          long: -3.5542607168379
                        - lat: 40.51461232038
                          long: -3.5543288949413
                        - lat: 40.514671020267
                          long: -3.5543932269758
                        - lat: 40.514734355779
                          long: -3.554448992081
                        - lat: 40.514759281818
                          long: -3.5544737500551
                        - lat: 40.514818631445
                          long: -3.5545528547253
                        - lat: 40.514898990268
                          long: -3.5546656565325
                        - lat: 40.51500050328
                          long: -3.5547631694678
                        - lat: 40.515112511996
                          long: -3.5548887452223
                        - lat: 40.515234880879
                          long: -3.5550518262705
                        - lat: 40.515276666781
                          long: -3.5551300788982
                        - lat: 40.515326465243
                          long: -3.5553031859031
                        - lat: 40.515339613577
                          long: -3.5553416582236
                        - lat: 40.51537550229
                          long: -3.5554284796036
                        - lat: 40.515450702421
                          long: -3.5555085311587
                        - lat: 40.515583894949
                          long: -3.5555937951204
                        - lat: 40.51570321437
                          long: -3.5556601760129
                        - lat: 40.515871779987
                          long: -3.5557333381044
                        - lat: 40.516133463603
                          long: -3.5558117552027
                        - lat: 40.516316172957
                          long: -3.5558474968798
                        - lat: 40.516393541825
                          long: -3.5558512049971
                        - lat: 40.516492185308
                          long: -3.5558333686172
                        - lat: 40.516590784122
                          long: -3.5558060882347
                        - lat: 40.51680057041
                          long: -3.5557002815405
                        - lat: 40.51718867858
                          long: -3.5554728244512
                        - lat: 40.517349311797
                          long: -3.5553595274304
                        - lat: 40.517438237145
                          long: -3.5552642895927
                        - lat: 40.51750054621
                          long: -3.5551961006647
                        - lat: 40.517558868781
                          long: -3.5551326005887
                        - lat: 40.517616552779
                          long: -3.5550707477888
                        - lat: 40.517677513846
                          long: -3.555001839106
                        - lat: 40.517738317943
                          long: -3.5549280890857
                        - lat: 40.5177764753
                          long: -3.5548802405846
                        - lat: 40.517799216106
                          long: -3.5548516246291
                        - lat: 40.517856544168
                          long: -3.5547700545842
                        - lat: 40.517973964425
                          long: -3.5545565306949
                        - lat: 40.518144310762
                          long: -3.5542586956899
                        - lat: 40.518364171955
                          long: -3.5538926691081
                        - lat: 40.518580434438
                          long: -3.5535423109625
                        - lat: 40.518828847639
                          long: -3.553083019777
                        - lat: 40.519042363759
                          long: -3.5525736337325
                        - lat: 40.519255213852
                          long: -3.5522012826266
                        - lat: 40.519418497644
                          long: -3.5519096229201
                        - lat: 40.519595535485
                          long: -3.5516617530653
                        - lat: 40.519997398905
                          long: -3.5512327453794
                        - lat: 40.520071228696
                          long: -3.5511644083993
                        - lat: 40.520135724444
                          long: -3.5511094526487
                        - lat: 40.52027155731
                          long: -3.5510006593102
                        - lat: 40.520330410818
                          long: -3.550957580236
                        - lat: 40.520467944524
                          long: -3.5508699314397
                        - lat: 40.520537858831
                          long: -3.5508310744731
                        - lat: 40.520597637384
                          long: -3.5508018147182
                        - lat: 40.520736194116
                          long: -3.5507452213294
                        - lat: 40.520945985409
                          long: -3.5506562740131
                        - lat: 40.521162697378
                          long: -3.5505499109534
                        - lat: 40.52126098014
                          long: -3.5505130561316
                        - lat: 40.521456613842
                          long: -3.5504458314814
                        - lat: 40.521557482627
                          long: -3.5504145460186
                        - lat: 40.521920047631
                          long: -3.5503084295782
                        - lat: 40.521994631721
                          long: -3.5502915674898
                        - lat: 40.522069376302
                          long: -3.550278838582
                        - lat: 40.522160135338
                          long: -3.5502706086226
                        - lat: 40.52227694151
                          long: -3.550259994434
                        - lat: 40.522357393669
                          long: -3.5502594717701
                        - lat: 40.522434269381
                          long: -3.5502532532173
                        - lat: 40.522500289694
                          long: -3.5502375014707
                        - lat: 40.522566755373
                          long: -3.5502228158332
                        - lat: 40.522639507376
                          long: -3.5502123135082
                        - lat: 40.522713501464
                          long: -3.550205835206
                        - lat: 40.522778561891
                          long: -3.5502024713465
                        - lat: 40.523020346836
                          long: -3.5502036219499
                        - lat: 40.523145174696
                          long: -3.5502111357308
                        - lat: 40.523240058688
                          long: -3.550225842249
                        - lat: 40.523306750913
                          long: -3.5502392557671
                        - lat: 40.523525779999
                          long: -3.5502913391182
                        - lat: 40.523591997047
                          long: -3.5503099433871
                        - lat: 40.523662339478
                          long: -3.5503324773217
                        - lat: 40.523726266703
                          long: -3.5503589727824
                        - lat: 40.523787660839
                          long: -3.5503876906654
                        - lat: 40.523912173647
                          long: -3.5504424253724
                        - lat: 40.524010339127
                          long: -3.5504869098126
                        - lat: 40.524070907259
                          long: -3.5505169198156
                        - lat: 40.524131511952
                          long: -3.5505411453288
                        - lat: 40.524224720988
                          long: -3.5505859436789
                        - lat: 40.524456135825
                          long: -3.5507044673915
                        - lat: 40.524512813335
                          long: -3.550739876649
                        - lat: 40.524569188503
                          long: -3.5507820128435
                        - lat: 40.524622923594
                          long: -3.5508299123823
                        - lat: 40.524682204016
                          long: -3.5508862395877
                        - lat: 40.524743069363
                          long: -3.5509502537125
                        - lat: 40.524800901034
                          long: -3.5510081040312
                        - lat: 40.524833014336
                          long: -3.5510371734734
                        - lat: 40.524985357631
                          long: -3.5511310978437
                        - lat: 40.525055746603
                          long: -3.5511627240942
                        - lat: 40.525082436157
                          long: -3.5511767557083
                        - lat: 40.525103435671
                          long: -3.551193810274
                        - lat: 40.525122612633
                          long: -3.5512152181311
                        - lat: 40.525138537496
                          long: -3.5512384883138
                        - lat: 40.525159754285
                          long: -3.5512855318916
                        - lat: 40.5251691366
                          long: -3.5515282217606
                        - lat: 40.525172635215
                          long: -3.5515502095723
                        - lat: 40.525193992513
                          long: -3.5516244081998
                        - lat: 40.525213239152
                          long: -3.5516689447198
                        - lat: 40.525256140369
                          long: -3.5517404866548
                        - lat: 40.525368416436
                          long: -3.5519050387812
                        - lat: 40.525511910881
                          long: -3.552133128012
                        - lat: 40.525549242292
                          long: -3.552201319155
                        - lat: 40.525584389602
                          long: -3.5522740968089
                        - lat: 40.525626525734
                          long: -3.552354841976
                        - lat: 40.525679548059
                          long: -3.5524386281458
                        - lat: 40.525732728711
                          long: -3.5525081303867
                        - lat: 40.525775670046
                          long: -3.5525711733552
                        - lat: 40.52581354566
                          long: -3.5526385430526
                        - lat: 40.525852370388
                          long: -3.5527146571401
                        - lat: 40.525893299568
                          long: -3.5528028190336
                        - lat: 40.525934806984
                          long: -3.5528830874925
                        - lat: 40.52597419805
                          long: -3.5529537756952
                        - lat: 40.526008717669
                          long: -3.5530258406757
                        - lat: 40.526051758078
                          long: -3.5531057678283
                        - lat: 40.526106488647
                          long: -3.5531901594743
                        - lat: 40.526164690454
                          long: -3.5532645445673
                        - lat: 40.526295456908
                          long: -3.553442830674
                        - lat: 40.526374141833
                          long: -3.5535667346084
                        - lat: 40.526547119787
                          long: -3.5538849070651
                        - lat: 40.526616878962
                          long: -3.5540101552331
                        - lat: 40.526871750767
                          long: -3.5543274817047
                        - lat: 40.526917771555
                          long: -3.5543868923317
                        - lat: 40.526956414925
                          long: -3.5544442351729
                        - lat: 40.526990284297
                          long: -3.5545014206711
                        - lat: 40.527018032978
                          long: -3.5545556041994
                        - lat: 40.527036316924
                          long: -3.5546127793923
                        - lat: 40.527046397387
                          long: -3.5546710676158
                        - lat: 40.527050701547
                          long: -3.5547146684005
                        - lat: 40.527048187022
                          long: -3.5547505388627
                        - lat: 40.527039880934
                          long: -3.5547917924687
                        - lat: 40.527010218724
                          long: -3.5548903666634
                        - lat: 40.526979193239
                          long: -3.5549914088488
                        - lat: 40.526969243466
                          long: -3.5550372414734
                        - lat: 40.526956878409
                          long: -3.555060752061
                        - lat: 40.526888643369
                          long: -3.5552748273949
                        - lat: 40.526873960776
                          long: -3.5554056378964
                        - lat: 40.526873481225
                          long: -3.5555053970291
                        - lat: 40.526886964673
                          long: -3.5556240434619
                        - lat: 40.526885945478
                          long: -3.5558359578628
                        - lat: 40.52686429579
                          long: -3.555954196004
                        - lat: 40.526835828946
                          long: -3.5560288125654
                        - lat: 40.526837590889
                          long: -3.5560370915204
                        - lat: 40.526816198645
                          long: -3.5560830772503
                        - lat: 40.526787712352
                          long: -3.5561242818053
                        - lat: 40.526750575559
                          long: -3.5561658870674
                        - lat: 40.526697473737
                          long: -3.5562489183072
                        - lat: 40.52668306005
                          long: -3.556323650761
                        - lat: 40.526752756297
                          long: -3.5564614158211
                        - lat: 40.52703310256
                          long: -3.5566881606869
                        - lat: 40.527355728564
                          long: -3.5569090118662
                        - lat: 40.527601292191
                          long: -3.5570419776552
                        - lat: 40.52791326309
                          long: -3.5571370053173
                        - lat: 40.527981302276
                          long: -3.5571511462122
                        - lat: 40.528050802751
                          long: -3.5571611669671
                        - lat: 40.528052244119
                          long: -3.5571611789039
                        - lat: 40.528190071537
                          long: -3.5571630287289
                        - lat: 40.52819142282
                          long: -3.5571630399197
                        - lat: 40.528258634012
                          long: -3.5571620616925
                        - lat: 40.528260435153
                          long: -3.5571621946742
                        - lat: 40.528317264308
                          long: -3.5571657350143
                        - lat: 40.528319695478
                          long: -3.5571659912793
                        - lat: 40.528377317185
                          long: -3.5571733162849
                        - lat: 40.52838064978
                          long: -3.5571734619505
                        - lat: 40.528442974719
                          long: -3.5571769297578
                        - lat: 40.52844928412
                          long: -3.5571762736183
                        - lat: 40.528547350721
                          long: -3.5571659758129
                        - lat: 40.528550145648
                          long: -3.5571655266969
                        - lat: 40.52858728991
                          long: -3.5571598129611
                        - lat: 40.528592702441
                          long: -3.5571583229303
                        - lat: 40.52865439503
                          long: -3.5571415962222
                        - lat: 40.528660081802
                          long: -3.5571392819979
                        - lat: 40.52871686171
                          long: -3.5571156667419
                        - lat: 40.528733029708
                          long: -3.5571069456742
                        - lat: 40.52887691613
                          long: -3.5570292688838
                        - lat: 40.528890201954
                          long: -3.557020405845
                        - lat: 40.528996400084
                          long: -3.5569491582846
                        - lat: 40.529020258341
                          long: -3.5569336529436
                        - lat: 40.52919313814
                          long: -3.5568217399129
                        - lat: 40.529196759766
                          long: -3.5568179917478
                        - lat: 40.529220842552
                          long: -3.5567932789514
                        - lat: 40.529260787776
                          long: -3.5567671625454
                        - lat: 40.52950317066
                          long: -3.5566085968192
                        - lat: 40.529556615109
                          long: -3.5565835364209
                        - lat: 40.529855756404
                          long: -3.5564431490148
                        - lat: 40.529895641851
                          long: -3.5564294288178
                        - lat: 40.530102380196
                          long: -3.5563579363455
                        - lat: 40.530142323883
                          long: -3.5563508283706
                        - lat: 40.530334830923
                          long: -3.5563161732888
                        - lat: 40.530405211565
                          long: -3.5563117964174
                        - lat: 40.530721779736
                          long: -3.5562922172662
                        - lat: 40.530734661392
                          long: -3.5562924418601
                        - lat: 40.530788981291
                          long: -3.5562932334592
                        - lat: 40.53080132016
                          long: -3.556293925844
                        - lat: 40.530850135692
                          long: -3.5562965728511
                        - lat: 40.530863289309
                          long: -3.5562964454861
                        - lat: 40.530912030671
                          long: -3.5562957859269
                        - lat: 40.530923751447
                          long: -3.5562938756638
                        - lat: 40.530964594843
                          long: -3.5562870111497
                        - lat: 40.531053883765
                          long: -3.5562847977675
                        - lat: 40.531348959745
                          long: -3.5562776741742
                        - lat: 40.531357674173
                          long: -3.5562452767956
                        - lat: 40.531384738146
                          long: -3.5561439597449
                        - lat: 40.531602430077
                          long: -3.5553665018655
                        - lat: 40.532246784317
                          long: -3.5530654098896
                        - lat: 40.532310282053
                          long: -3.553106194646
                        - lat: 40.532488380115
                          long: -3.553220772713
                        - lat: 40.532737082267
                          long: -3.5543180526501
                        - lat: 40.533400478645
                          long: -3.5572438272767
                        - lat: 40.533510130093
                          long: -3.5577639091302
                        - lat: 40.533788257376
                          long: -3.5590827393935
                        - lat: 40.533959050209
                          long: -3.5601276962902
                        - lat: 40.534371474726
                          long: -3.5626500218656
                        - lat: 40.53437467449
                          long: -3.5626774422577
                        - lat: 40.534382025261
                          long: -3.5627404382512
                        - lat: 40.534377355172
                          long: -3.5627929429898
                        - lat: 40.534366973941
                          long: -3.5629082163409
                        - lat: 40.534362932879
                          long: -3.5629425426238
                        - lat: 40.534354474848
                          long: -3.5630143800811
                        - lat: 40.534350982896
                          long: -3.5630469398089
                        - lat: 40.534344089684
                          long: -3.5631119301299
                        - lat: 40.534341287313
                          long: -3.5631508717202
                        - lat: 40.534335878816
                          long: -3.563225450409
                        - lat: 40.534333577203
                          long: -3.5632725434203
                        - lat: 40.534329283898
                          long: -3.5633585847923
                        - lat: 40.534326130586
                          long: -3.5634140540481
                        - lat: 40.534320611938
                          long: -3.563511184268
                        - lat: 40.534317365588
                          long: -3.5635672431091
                        - lat: 40.534311862363
                          long: -3.5636611853844
                        - lat: 40.534308603267
                          long: -3.5637198417728
                        - lat: 40.534303189428
                          long: -3.5638139028481
                        - lat: 40.534301024332
                          long: -3.5638514328169
                        - lat: 40.534297769749
                          long: -3.5639091446174
                        - lat: 40.534293879719
                          long: -3.5639696849041
                        - lat: 40.534288037729
                          long: -3.5640591373908
                        - lat: 40.534284030079
                          long: -3.5641234550993
                        - lat: 40.534278361222
                          long: -3.564214325921
                        - lat: 40.5342751572
                          long: -3.5642616474382
                        - lat: 40.534270789097
                          long: -3.5643259620978
                        - lat: 40.534269118786
                          long: -3.5643728241699
                        - lat: 40.534266928818
                          long: -3.5644338509726
                        - lat: 40.534264250377
                          long: -3.5645026548651
                        - lat: 40.534260857587
                          long: -3.5645885855501
                        - lat: 40.534258838368
                          long: -3.5646330831643
                        - lat: 40.534256416091
                          long: -3.5646863149982
                        - lat: 40.534253673844
                          long: -3.5647312788388
                        - lat: 40.534250628428
                          long: -3.5647829704479
                        - lat: 40.534248815278
                          long: -3.5648221563711
                        - lat: 40.53424689125
                          long: -3.5648655920877
                        - lat: 40.534242788995
                          long: -3.5649123156283
                        - lat: 40.53423849154
                          long: -3.5649621074925
                        - lat: 40.534233155217
                          long: -3.5650401107203
                        - lat: 40.534227720094
                          long: -3.565119884241
                        - lat: 40.534223775384
                          long: -3.5651712140286
                        - lat: 40.534219835271
                          long: -3.5652215992432
                        - lat: 40.534212952304
                          long: -3.5653026593973
                        - lat: 40.534206542817
                          long: -3.5653790004877
                        - lat: 40.534203136192
                          long: -3.5654308070695
                        - lat: 40.534200024069
                          long: -3.5654776569443
                        - lat: 40.53419609351
                          long: -3.5655628745202
                        - lat: 40.53419257814
                          long: -3.5656368783912
                        - lat: 40.534190476434
                          long: -3.5656981419747
                        - lat: 40.534188695248
                          long: -3.5657491356698
                        - lat: 40.534187036503
                          long: -3.5657935181566
                        - lat: 40.534185690783
                          long: -3.5658291656777
                        - lat: 40.534184807621
                          long: -3.5658623375004
                        - lat: 40.534184052181
                          long: -3.5658878236734
                        - lat: 40.534182649545
                          long: -3.566174145266
                        - lat: 40.534180388214
                          long: -3.5662311567567
                        - lat: 40.534178847722
                          long: -3.5662697545157
                        - lat: 40.534177516323
                          long: -3.5663024502526
                        - lat: 40.53417660139
                          long: -3.5663236961602
                        - lat: 40.534172626629
                          long: -3.5663810474394
                        - lat: 40.534170199126
                          long: -3.5664168039064
                        - lat: 40.534160532298
                          long: -3.5665142529359
                        - lat: 40.534154841769
                          long: -3.5665724162665
                        - lat: 40.534149000907
                          long: -3.5666428581795
                        - lat: 40.534145650466
                          long: -3.5666830937199
                        - lat: 40.534142259213
                          long: -3.5667500139873
                        - lat: 40.534140458139
                          long: -3.5667866022319
                        - lat: 40.534138794086
                          long: -3.5668503490049
                        - lat: 40.534138000138
                          long: -3.5668836396176
                        - lat: 40.534137353329
                          long: -3.5669236617757
                        - lat: 40.534136985167
                          long: -3.5669436134394
                        - lat: 40.534138463003
                          long: -3.5670096301257
                        - lat: 40.53413920915
                          long: -3.5670411625865
                        - lat: 40.534143340809
                          long: -3.5671171199986
                        - lat: 40.534145242967
                          long: -3.5671517321746
                        - lat: 40.534148151036
                          long: -3.5672200043699
                        - lat: 40.534149446969
                          long: -3.5672496404574
                        - lat: 40.534150117921
                          long: -3.5673148238276
                        - lat: 40.534150345504
                          long: -3.5673418650516
                        - lat: 40.534147524165
                          long: -3.5674210699551
                        - lat: 40.534146469654
                          long: -3.5674523510822
                        - lat: 40.53414035916
                          long: -3.5675225544822
                        - lat: 40.534138067787
                          long: -3.567548865995
                        - lat: 40.534118054697
                          long: -3.5677367914116
                        - lat: 40.534110879254
                          long: -3.5678036796519
                        - lat: 40.534105065055
                          long: -3.5678868737869
                        - lat: 40.53410303515
                          long: -3.5679149586131
                        - lat: 40.534099662918
                          long: -3.5679778643682
                        - lat: 40.534098662816
                          long: -3.5679980468289
                        - lat: 40.534093658084
                          long: -3.5680814839192
                        - lat: 40.53409209249
                          long: -3.5681067388451
                        - lat: 40.534085830146
                          long: -3.5682260602319
                        - lat: 40.534084040799
                          long: -3.5682601689195
                        - lat: 40.534064336477
                          long: -3.568657904776
                        - lat: 40.534059034861
                          long: -3.5687649543428
                        - lat: 40.534054830462
                          long: -3.5688504053752
                        - lat: 40.534053823232
                          long: -3.5688720046534
                        - lat: 40.534053343612
                          long: -3.5689694127936
                        - lat: 40.534057900905
                          long: -3.5691416052727
                        - lat: 40.534058973659
                          long: -3.569179870779
                        - lat: 40.534063655631
                          long: -3.5693449798167
                        - lat: 40.53406456793
                          long: -3.5693792294072
                        - lat: 40.534067476899
                          long: -3.5694653310077
                        - lat: 40.534068026027
                          long: -3.5694818662147
                        - lat: 40.534070653857
                          long: -3.5695336054965
                        - lat: 40.534071058888
                          long: -3.5695428188087
                        - lat: 40.534077577547
                          long: -3.569627652164
                        - lat: 40.534078589884
                          long: -3.5696415936381
                        - lat: 40.53409248599
                          long: -3.569874556122
                        - lat: 40.534094563998
                          long: -3.5699098782899
                        - lat: 40.53410593147
                          long: -3.5700892013745
                        - lat: 40.534107520751
                          long: -3.5701140106956
                        - lat: 40.534119292372
                          long: -3.5702478900145
                        - lat: 40.534120741074
                          long: -3.570264669018
                        - lat: 40.534133148686
                          long: -3.5704156747335
                        - lat: 40.534134506112
                          long: -3.570432689121
                        - lat: 40.534142850627
                          long: -3.5705672479305
                        - lat: 40.534143775097
                          long: -3.5705807163844
                        - lat: 40.534149939347
                          long: -3.570682431727
                        - lat: 40.534150526207
                          long: -3.5706912923727
                        - lat: 40.534169838113
                          long: -3.5711586813265
                        - lat: 40.534171374049
                          long: -3.5711942351214
                        - lat: 40.534177695161
                          long: -3.571300556841
                        - lat: 40.534178111727
                          long: -3.571307408764
                        - lat: 40.534209800605
                          long: -3.5716398129339
                        - lat: 40.534211514687
                          long: -3.5716575388501
                        - lat: 40.53422177235
                          long: -3.5717875092733
                        - lat: 40.534222195314
                          long: -3.5717930624257
                        - lat: 40.53423497763
                          long: -3.5719407657115
                        - lat: 40.534235314592
                          long: -3.5719454916047
                        - lat: 40.534242687912
                          long: -3.5720393064172
                        - lat: 40.534242858729
                          long: -3.5720411970813
                        - lat: 40.534249589681
                          long: -3.5721373679651
                        - lat: 40.534249677428
                          long: -3.5721378410143
                        - lat: 40.53426092376
                          long: -3.5722863578863
                        - lat: 40.534276015993
                          long: -3.5725859264465
                        - lat: 40.534278107144
                          long: -3.5726911379535
                        - lat: 40.534291838765
                          long: -3.5730105318207
                        - lat: 40.534294692905
                          long: -3.5731071421398
                        - lat: 40.534294748928
                          long: -3.5734789633095
                        - lat: 40.534288257231
                          long: -3.5738429356119
                        - lat: 40.534287206871
                          long: -3.5740543885724
                        - lat: 40.534287364941
                          long: -3.5741676245982
                        - lat: 40.534285486152
                          long: -3.5742737586866
                        - lat: 40.534280551665
                          long: -3.5744327646203
                        - lat: 40.534277450776
                          long: -3.5745309771747
                        - lat: 40.534273784137
                          long: -3.5745980128863
                        - lat: 40.5342418516
                          long: -3.5748779337379
                        - lat: 40.534251436871
                          long: -3.5749612590428
                        - lat: 40.534261772548
                          long: -3.5750205033366
                        - lat: 40.534267454325
                          long: -3.5750735679197
                        - lat: 40.534271813765
                          long: -3.5751389010833
                        - lat: 40.534275900864
                          long: -3.5752408354119
                        - lat: 40.534272647601
                          long: -3.5753695101612
                        - lat: 40.53426880955
                          long: -3.5755974697894
                        - lat: 40.534255563356
                          long: -3.5758512192386
                        - lat: 40.534250510787
                          long: -3.5760696160512
                        - lat: 40.534263032683
                          long: -3.5762142479946
                        - lat: 40.534287496846
                          long: -3.576366775324
                        - lat: 40.534226355527
                          long: -3.5763790035788
                        - lat: 40.533872067433
                          long: -3.5784835835812
                        - lat: 40.533852751486
                          long: -3.5785449345363
                        - lat: 40.533889356506
                          long: -3.5786650955811
                        - lat: 40.533929673832
                          long: -3.5787275499565
                        - lat: 40.533976881356
                          long: -3.5787813261299
                        - lat: 40.534003595771
                          long: -3.5788436635938
                        - lat: 40.534023554528
                          long: -3.5789237723348
                        - lat: 40.534040045621
                          long: -3.5790127069232
                        - lat: 40.534070027512
                          long: -3.5791061264943
                        - lat: 40.534099941853
                          long: -3.5792130061668
                        - lat: 40.534133257424
                          long: -3.5793242840219
                        - lat: 40.534169795982
                          long: -3.5794754992909
                        - lat: 40.534196019687
                          long: -3.5796355877749
                        - lat: 40.534242714933
                          long: -3.5797913777781
                        - lat: 40.534299298585
                          long: -3.5799872809485
                        - lat: 40.53437917836
                          long: -3.58019046995
                        - lat: 40.534443048257
                          long: -3.5803525489018
                        - lat: 40.534643847808
                          long: -3.5808204352398
                        - lat: 40.534710564777
                          long: -3.5810252837146
                        - lat: 40.534753498932
                          long: -3.581229927078
                        - lat: 40.534792742467
                          long: -3.5815055028632
                        - lat: 40.534805249942
                          long: -3.581723226297
                        - lat: 40.534817868507
                          long: -3.5819009227739
                        - lat: 40.534827467162
                          long: -3.5820163549503
                        - lat: 40.534837132266
                          long: -3.5821185749491
                        - lat: 40.534853195233
                          long: -3.5822741029727
                        - lat: 40.534903442912
                          long: -3.5825108097197
                        - lat: 40.534912260728
                          long: -3.5825308410748
                        - lat: 40.535004268879
                          long: -3.5827398077186
                        - lat: 40.535093681918
                          long: -3.5829273804747
                        - lat: 40.535238951322
                          long: -3.5832931326983
                        - lat: 40.535316301743
                          long: -3.5835322020948
                        - lat: 40.535355461579
                          long: -3.5837341003498
                        - lat: 40.535384307169
                          long: -3.5839803064989
                        - lat: 40.535373438775
                          long: -3.5841343034776
                        - lat: 40.535356098458
                          long: -3.5842675805991
                        - lat: 40.535330463692
                          long: -3.5843842547216
                        - lat: 40.535279507008
                          long: -3.584537891304
                        - lat: 40.535215157139
                          long: -3.5847033488488
                        - lat: 40.535201270033
                          long: -3.5848128039092
                        - lat: 40.535214212343
                          long: -3.5848900209668
                        - lat: 40.535250546802
                          long: -3.5849733453709
                        - lat: 40.535343590092
                          long: -3.585101560325
                        - lat: 40.535453419156
                          long: -3.5852061880531
                        - lat: 40.53560807323
                          long: -3.5853718983339
                        - lat: 40.535717556204
                          long: -3.5855447731394
                        - lat: 40.53578058528
                          long: -3.5856579686264
                        - lat: 40.535840086319
                          long: -3.5857917855238
                        - lat: 40.535909195555
                          long: -3.5860028034896
                        - lat: 40.535958440929
                          long: -3.5861869629759
                        - lat: 40.535999150512
                          long: -3.5864021030253
                        - lat: 40.536018472319
                          long: -3.5865534123281
                        - lat: 40.536024521758
                          long: -3.5866749681627
                        - lat: 40.536013784826
                          long: -3.586820111398
                        - lat: 40.535992898279
                          long: -3.5869769620757
                        - lat: 40.535988842252
                          long: -3.5871192115456
                        - lat: 40.536016218127
                          long: -3.5873341177346
                        - lat: 40.53605853869
                          long: -3.5875509258338
                        - lat: 40.536123632725
                          long: -3.5879130522683
                        - lat: 40.536169527535
                          long: -3.5880823064761
                        - lat: 40.536299955177
                          long: -3.5884049649525
                        - lat: 40.53637610288
                          long: -3.5885597247602
                        - lat: 40.536405738304
                          long: -3.5886488979272
                        - lat: 40.536451268981
                          long: -3.5889070640475
                        - lat: 40.536512032299
                          long: -3.589128286946
                        - lat: 40.536554486182
                          long: -3.5893182948386
                        - lat: 40.536600634658
                          long: -3.5894550813664
                        - lat: 40.536653419184
                          long: -3.589597818442
                        - lat: 40.536765911853
                          long: -3.5898328393306
                        - lat: 40.53680049277
                          long: -3.5899413040162
                        - lat: 40.536833188308
                          long: -3.5900837593703
                        - lat: 40.536879184471
                          long: -3.5902501838036
                        - lat: 40.536912151717
                          long: -3.5903393876262
                        - lat: 40.536971843924
                          long: -3.5904347301736
                        - lat: 40.537031444925
                          long: -3.5905479022525
                        - lat: 40.537071168904
                          long: -3.5906370476803
                        - lat: 40.537110892736
                          long: -3.5907085873819
                        - lat: 40.537143769059
                          long: -3.5908155030496
                        - lat: 40.537170039391
                          long: -3.5909105527007
                        - lat: 40.53720300612
                          long: -3.5909997572284
                        - lat: 40.5372890887
                          long: -3.5911665355595
                        - lat: 40.537461456302
                          long: -3.5914762428625
                        - lat: 40.537526278757
                          long: -3.5916779055981
                        - lat: 40.537545781043
                          long: -3.5918278044463
                        - lat: 40.537567079498
                          long: -3.5919611759753
                        - lat: 40.537616863753
                          long: -3.5921262198789
                        - lat: 40.537670085519
                          long: -3.5922884603401
                        - lat: 40.537682477659
                          long: -3.5925071386726
                        - lat: 40.537691628317
                          long: -3.592707840098
                        - lat: 40.537695959457
                          long: -3.592846978519
                        - lat: 40.537695261961
                          long: -3.5929846556387
                        - lat: 40.537680550416
                          long: -3.5932180796776
                        - lat: 40.537652202504
                          long: -3.5934753656635
                        - lat: 40.537640928298
                          long: -3.5937058795547
                        - lat: 40.537640728678
                          long: -3.5937447266411
                        - lat: 40.537621625073
                          long: -3.5938508314025
                        - lat: 40.53756666837
                          long: -3.5940090476405
                        - lat: 40.537481119919
                          long: -3.5942298126175
                        - lat: 40.537415703262
                          long: -3.5944598472273
                        - lat: 40.537370645977
                          long: -3.5946899315248
                        - lat: 40.537327109385
                          long: -3.5949395241461
                        - lat: 40.53727814916
                          long: -3.5952625148052
                        - lat: 40.537260704023
                          long: -3.5953611941426
                        - lat: 40.537256907848
                          long: -3.5954510201231
                        - lat: 40.537291045067
                          long: -3.595716178015
                        - lat: 40.537294054316
                          long: -3.5957790237571
                        - lat: 40.537283640294
                          long: -3.5958418686624
                        - lat: 40.537252651499
                          long: -3.5959463318924
                        - lat: 40.537184284603
                          long: -3.5961014628568
                        - lat: 40.53712247332
                          long: -3.5962955119798
                        - lat: 40.537098298866
                          long: -3.5964061753711
                        - lat: 40.537097819777
                          long: -3.596498982509
                        - lat: 40.53711896111
                          long: -3.5966442911724
                        - lat: 40.537138843588
                          long: -3.5967193307306
                        - lat: 40.537158880922
                          long: -3.5967643791967
                        - lat: 40.537226073058
                          long: -3.5968368866526
                        - lat: 40.53728658687
                          long: -3.5968942206169
                        - lat: 40.537366626598
                          long: -3.5970955507942
                        - lat: 40.537433366643
                          long: -3.5972729109255
                        - lat: 40.537439457683
                          long: -3.5974016617635
                        - lat: 40.537452784794
                          long: -3.5974376768488
                        - lat: 40.537526763992
                          long: -3.5975042234442
                        - lat: 40.537534436783
                          long: -3.597518697543
                        - lat: 40.537570216957
                          long: -3.5975854952994
                        - lat: 40.537650271348
                          long: -3.5977837571573
                        - lat: 40.537713727038
                          long: -3.5979340488041
                        - lat: 40.537743668211
                          long: -3.5980149648539
                        - lat: 40.537783105484
                          long: -3.598227980925
                        - lat: 40.537813213574
                          long: -3.5982940203552
                        - lat: 40.537927100651
                          long: -3.5984807766431
                        - lat: 40.537950467594
                          long: -3.5985437924711
                        - lat: 40.537960200453
                          long: -3.5986127209864
                        - lat: 40.53796634483
                          long: -3.598732629071
                        - lat: 40.537965646609
                          long: -3.5988673545996
                        - lat: 40.538006647584
                          long: -3.5991086074526
                        - lat: 40.538009480534
                          long: -3.5992224639646
                        - lat: 40.538000705156
                          long: -3.5996115847719
                        - lat: 40.538000114392
                          long: -3.5997254107626
                        - lat: 40.538009768698
                          long: -3.5998093352407
                        - lat: 40.538026205716
                          long: -3.5998882308987
                        - lat: 40.538044400167
                          long: -3.5999756560067
                        - lat: 40.538063922324
                          long: -3.6001196544436
                        - lat: 40.538062973424
                          long: -3.6003023193348
                        - lat: 40.538045322114
                          long: -3.600439845734
                        - lat: 40.538010871452
                          long: -3.6005682477905
                        - lat: 40.53794944129
                          long: -3.6006875525781
                        - lat: 40.537831413268
                          long: -3.6009843009813
                        - lat: 40.537797117419
                          long: -3.6010828290238
                        - lat: 40.537742665088
                          long: -3.6011422098056
                        - lat: 40.537698513712
                          long: -3.6011956604092
                        - lat: 40.53766776895
                          long: -3.6012523009203
                        - lat: 40.537664264385
                          long: -3.601285214362
                        - lat: 40.537714611197
                          long: -3.6013396160238
                        - lat: 40.537734740129
                          long: -3.6013667186421
                        - lat: 40.537727750239
                          long: -3.6014115271988
                        - lat: 40.537714097408
                          long: -3.6014383277391
                        - lat: 40.537680128194
                          long: -3.6014740388615
                        - lat: 40.537646253017
                          long: -3.6014916843059
                        - lat: 40.53760235044
                          long: -3.6014973138163
                        - lat: 40.537575278326
                          long: -3.6015060458837
                        - lat: 40.537558217624
                          long: -3.6015298638277
                        - lat: 40.537554784692
                          long: -3.6015507335361
                        - lat: 40.537554628544
                          long: -3.6015807248224
                        - lat: 40.537574492429
                          long: -3.6016587181875
                        - lat: 40.537587646646
                          long: -3.6017276773726
                        - lat: 40.537580703355
                          long: -3.6017635120185
                        - lat: 40.537553537129
                          long: -3.6017903095921
                        - lat: 40.537523026402
                          long: -3.6018019628005
                        - lat: 40.537474087065
                          long: -3.6018060119721
                        - lat: 40.537372776586
                          long: -3.6017811349606
                        - lat: 40.537305213093
                          long: -3.6017805304156
                        - lat: 40.537257700324
                          long: -3.6018220240038
                        - lat: 40.537213392404
                          long: -3.601905464908
                        - lat: 40.537196129237
                          long: -3.601968129394
                        - lat: 40.537169466102
                          long: -3.6022268418312
                        - lat: 40.537178708843
                          long: -3.6024066435206
                        - lat: 40.537174848511
                          long: -3.6024904462823
                        - lat: 40.53712364336
                          long: -3.6026007472389
                        - lat: 40.53704840214
                          long: -3.6027767215665
                        - lat: 40.537027804755
                          long: -3.6028394738684
                        - lat: 40.537020626382
                          long: -3.6029202946589
                        - lat: 40.537023396992
                          long: -3.603028115177
                        - lat: 40.53704685507
                          long: -3.6030731961105
                        - lat: 40.537077026235
                          long: -3.6031093631513
                        - lat: 40.537125883739
                          long: -3.603138258722
                        - lat: 40.537173049442
                          long: -3.6031806003684
                        - lat: 40.537182982967
                          long: -3.6032105638929
                        - lat: 40.53716892283
                          long: -3.6033152934897
                        - lat: 40.537155066086
                          long: -3.6033810582294
                        - lat: 40.537147981686
                          long: -3.6034438136084
                        - lat: 40.537157754835
                          long: -3.6035217164958
                        - lat: 40.537200921639
                          long: -3.6036569521341
                        - lat: 40.537244398022
                          long: -3.603750153933
                        - lat: 40.537294525165
                          long: -3.6038463675902
                        - lat: 40.537351529516
                          long: -3.6039367390948
                        - lat: 40.537433840165
                          long: -3.6040287550093
                        - lat: 40.537614977993
                          long: -3.6042758615475
                        - lat: 40.537685196982
                          long: -3.6044232679552
                        - lat: 40.537735385947
                          long: -3.6045075570473
                        - lat: 40.537795876004
                          long: -3.6045859166958
                        - lat: 40.53787654434
                          long: -3.6046645759877
                        - lat: 40.537911764535
                          long: -3.6047170849118
                        - lat: 40.537921477636
                          long: -3.6047890842245
                        - lat: 40.537924493524
                          long: -3.6048669274279
                        - lat: 40.537937786767
                          long: -3.6049089661279
                        - lat: 40.537954507094
                          long: -3.6049330871894
                        - lat: 40.538035347683
                          long: -3.6049788036835
                        - lat: 40.538102691639
                          long: -3.6050213287273
                        - lat: 40.538129576042
                          long: -3.6050484933791
                        - lat: 40.538176521494
                          long: -3.6051327543127
                        - lat: 40.53820983263
                          long: -3.605222903069
                        - lat: 40.538239203229
                          long: -3.6054117453243
                        - lat: 40.538266865968
                          long: -3.6056169858552
                        - lat: 40.538293027847
                          long: -3.6057819468293
                        - lat: 40.538299485781
                          long: -3.605838920872
                        - lat: 40.538285706237
                          long: -3.6058896903825
                        - lat: 40.538258445565
                          long: -3.6059343161926
                        - lat: 40.538231027576
                          long: -3.60600893353
                        - lat: 40.538223988197
                          long: -3.6060628338416
                        - lat: 40.538227097378
                          long: -3.6061227297361
                        - lat: 40.538263646636
                          long: -3.6062308686091
                        - lat: 40.538347313194
                          long: -3.6063903260933
                        - lat: 40.538387254483
                          long: -3.6065043882308
                        - lat: 40.538393491997
                          long: -3.6066032798577
                        - lat: 40.538372436819
                          long: -3.6067528189939
                        - lat: 40.538324308944
                          long: -3.6069110880142
                        - lat: 40.538283095392
                          long: -3.6070393081357
                        - lat: 40.538248652931
                          long: -3.6071647552475
                        - lat: 40.538241660174
                          long: -3.6072096815926
                        - lat: 40.538261457557
                          long: -3.6072996031542
                        - lat: 40.538311576817
                          long: -3.6074138874996
                        - lat: 40.538318081126
                          long: -3.607461887842
                        - lat: 40.538297355787
                          long: -3.6075484914325
                        - lat: 40.538266529071
                          long: -3.6076201252869
                        - lat: 40.538205092294
                          long: -3.6077393059165
                        - lat: 40.53817773588
                          long: -3.6078019966789
                        - lat: 40.538174151181
                          long: -3.6078497876924
                        - lat: 40.538187379966
                          long: -3.6079038709694
                        - lat: 40.538219033243
                          long: -3.6079833786863
                        - lat: 40.53825578582
                          long: -3.6080525531196
                        - lat: 40.538268982815
                          long: -3.6081126584303
                        - lat: 40.538251664664
                          long: -3.6082022446342
                        - lat: 40.538145382523
                          long: -3.6084888142142
                        - lat: 40.53813810566
                          long: -3.6085875833681
                        - lat: 40.53814440484
                          long: -3.6086744309649
                        - lat: 40.538160662646
                          long: -3.6088032879981
                        - lat: 40.5381514228
                          long: -3.6089513978315
                        - lat: 40.538127241394
                          long: -3.6090439916499
                        - lat: 40.538061964497
                          long: -3.6092590187678
                        - lat: 40.53801391236
                          long: -3.6094022776926
                        - lat: 40.538006129528
                          long: -3.6095968066262
                        - lat: 40.538001695075
                          long: -3.6097884138194
                        - lat: 40.537995434303
                          long: -3.6099846096263
                        - lat: 40.537991772941
                          long: -3.6100979352986
                        - lat: 40.537980424923
                          long: -3.6107282729319
                        - lat: 40.537979163999
                          long: -3.6107963830696
                        - lat: 40.537977245911
                          long: -3.6109035842318
                        - lat: 40.538009109691
                          long: -3.6109769665505
                        - lat: 40.538022282974
                          long: -3.6110071971923
                        - lat: 40.538096048777
                          long: -3.6111126064141
                        - lat: 40.538146084918
                          long: -3.6112418890197
                        - lat: 40.538172444938
                          long: -3.6113678864412
                        - lat: 40.538164848784
                          long: -3.6115265202224
                        - lat: 40.538143597213
                          long: -3.61171195256
                        - lat: 40.538127715853
                          long: -3.6118359127099
                        - lat: 40.538120939596
                          long: -3.6118736374266
                        - lat: 40.53811686211
                          long: -3.6119120951852
                        - lat: 40.538115666688
                          long: -3.6119506972462
                        - lat: 40.538117263247
                          long: -3.6119894427948
                        - lat: 40.538121654914
                          long: -3.6120277414523
                        - lat: 40.538133340356
                          long: -3.6120836889661
                        - lat: 40.538151075757
                          long: -3.6121369874788
                        - lat: 40.538174327556
                          long: -3.6121863214302
                        - lat: 40.538374173109
                          long: -3.612520898012
                        - lat: 40.538383090163
                          long: -3.6125382193227
                        - lat: 40.538462714817
                          long: -3.6126937513479
                        - lat: 40.538486041968
                          long: -3.6127628062729
                        - lat: 40.538495845235
                          long: -3.6128168595459
                        - lat: 40.538482046976
                          long: -3.6128705796688
                        - lat: 40.538444471175
                          long: -3.6129571462909
                        - lat: 40.538399906673
                          long: -3.6130704539223
                        - lat: 40.538392895959
                          long: -3.6131183316541
                        - lat: 40.538399270687
                          long: -3.6131903022401
                        - lat: 40.538415894011
                          long: -3.6132323732383
                        - lat: 40.538442850873
                          long: -3.6132624940289
                        - lat: 40.538490002374
                          long: -3.6132898351218
                        - lat: 40.538557326907
                          long: -3.6133354387564
                        - lat: 40.538590775099
                          long: -3.6133985640713
                        - lat: 40.538597006705
                          long: -3.6134974565634
                        - lat: 40.538599306427
                          long: -3.6136920786924
                        - lat: 40.53858862801
                          long: -3.6138028613757
                        - lat: 40.53857309385
                          long: -3.6138610526843
                        - lat: 40.538607032844
                          long: -3.6138826174564
                        - lat: 40.538635529752
                          long: -3.6139110994862
                        - lat: 40.538638213463
                          long: -3.6139146664834
                        - lat: 40.538687773273
                          long: -3.6139804190054
                        - lat: 40.538751773601
                          long: -3.6140751158471
                        - lat: 40.538858585016
                          long: -3.6142170830615
                        - lat: 40.5389298258
                          long: -3.6143054699842
                        - lat: 40.538948740376
                          long: -3.6143401232399
                        - lat: 40.53895800616
                          long: -3.6143934636996
                        - lat: 40.538964706578
                          long: -3.6144718027052
                        - lat: 40.538985819758
                          long: -3.6145504033253
                        - lat: 40.539018007351
                          long: -3.6146132819585
                        - lat: 40.539021306556
                          long: -3.6146196886443
                        - lat: 40.539031019342
                          long: -3.6146228475954
                        - lat: 40.539088123073
                          long: -3.6146421448533
                        - lat: 40.539145390008
                          long: -3.614664631909
                        - lat: 40.539278498178
                          long: -3.6147912541624
                        - lat: 40.539721331623
                          long: -3.6151023240339
                        - lat: 40.539746891637
                          long: -3.6151578217115
                        - lat: 40.539750631803
                          long: -3.6151660038061
                        - lat: 40.53980944882
                          long: -3.6152357398531
                        - lat: 40.539872825143
                          long: -3.6163768952236
                        - lat: 40.539902471105
                          long: -3.6170018274338
                        - lat: 40.539897232891
                          long: -3.6174595968126
                        - lat: 40.539869562626
                          long: -3.6180012368267
                        - lat: 40.53986645194
                          long: -3.6185825310075
                        - lat: 40.539876348452
                          long: -3.6190727947281
                        - lat: 40.539895381646
                          long: -3.6197907997535
                        - lat: 40.539925047764
                          long: -3.6201383627074
                        - lat: 40.540005691266
                          long: -3.6206223129269
                        - lat: 40.540064845596
                          long: -3.6208466313897
                        - lat: 40.540121662921
                          long: -3.6211201586616
                        - lat: 40.540173144237
                          long: -3.6213974276467
                        - lat: 40.540186069948
                          long: -3.621690872662
                        - lat: 40.540207104893
                          long: -3.6221680047373
                        - lat: 40.540228865559
                          long: -3.6224766468358
                        - lat: 40.540236231196
                          long: -3.6225809850116
                        - lat: 40.540236821064
                          long: -3.6225885479809
                        - lat: 40.540237428112
                          long: -3.6225929227855
                        - lat: 40.540240256724
                          long: -3.6226029862896
                        - lat: 40.540279359335
                          long: -3.6227359590528
                        - lat: 40.540285182521
                          long: -3.622909127274
                        - lat: 40.540294590836
                          long: -3.6232209619009
                        - lat: 40.540289498952
                          long: -3.6233465583817
                        - lat: 40.540249959033
                          long: -3.6235619233393
                        - lat: 40.540207176255
                          long: -3.623777151685
                        - lat: 40.540124182814
                          long: -3.6241148159383
                        - lat: 40.540094274183
                          long: -3.6242647435122
                        - lat: 40.540056983385
                          long: -3.6246136949705
                        - lat: 40.540038088675
                          long: -3.6250257448749
                        - lat: 40.540043344925
                          long: -3.625203158476
                        - lat: 40.540052252876
                          long: -3.6253549814594
                        - lat: 40.540083792908
                          long: -3.6254864680681
                        - lat: 40.54009520216
                          long: -3.625692043492
                        - lat: 40.540394611026
                          long: -3.6262825331575
                        - lat: 40.540629492134
                          long: -3.6267440780807
                        - lat: 40.540835399111
                          long: -3.6271491465299
                        - lat: 40.54089405144
                          long: -3.6272644742958
                        - lat: 40.540936926163
                          long: -3.627348822475
                        - lat: 40.541283846365
                          long: -3.6280308281626
                        - lat: 40.541541228442
                          long: -3.6279465551451
                        - lat: 40.541761690424
                          long: -3.6279272398333
                        - lat: 40.541876156971
                          long: -3.6279173264625
                        - lat: 40.542365777557
                          long: -3.6278199870895
                        - lat: 40.542561870296
                          long: -3.6277907602476
                        - lat: 40.542671669766
                          long: -3.6277776145326
                        - lat: 40.542813822528
                          long: -3.6277789416959
                        - lat: 40.542949276594
                          long: -3.6278027616728
                        - lat: 40.543037420442
                          long: -3.627829092288
                        - lat: 40.543176968858
                          long: -3.6278952155262
                        - lat: 40.543239197569
                          long: -3.6279325230232
                        - lat: 40.543296631912
                          long: -3.6279734466484
                        - lat: 40.543338770553
                          long: -3.6280108028306
                        - lat: 40.543389965954
                          long: -3.6280559196067
                        - lat: 40.543446879856
                          long: -3.6281097105627
                        - lat: 40.543494798804
                          long: -3.6281609376509
                        - lat: 40.543533455738
                          long: -3.628207354605
                        - lat: 40.543560826926
                          long: -3.6282433921702
                        - lat: 40.543571740135
                          long: -3.6282576651647
                        - lat: 40.543603834392
                          long: -3.6283031942607
                        - lat: 40.543647540664
                          long: -3.6283670180878
                        - lat: 40.543700980641
                          long: -3.6284466392244
                        - lat: 40.543732923714
                          long: -3.6285033858432
                        - lat: 40.543764882176
                          long: -3.6285572984461
                        - lat: 40.543816114382
                          long: -3.6286452837881
                        - lat: 40.543860921512
                          long: -3.6287219904063
                        - lat: 40.543892818818
                          long: -3.6287871214285
                        - lat: 40.543927028605
                          long: -3.6288411734428
                        - lat: 40.543978856531
                          long: -3.6289355299783
                        - lat: 40.543990989046
                          long: -3.6289574906013
                        - lat: 40.544022824498
                          long: -3.6290339581815
                        - lat: 40.544063184514
                          long: -3.6291331794041
                        - lat: 40.544103559879
                          long: -3.6292295666615
                        - lat: 40.544154606958
                          long: -3.6293514438968
                        - lat: 40.544207679519
                          long: -3.6294818429768
                        - lat: 40.544230910302
                          long: -3.6295667331851
                        - lat: 40.544264691771
                          long: -3.6296827807437
                        - lat: 40.544292092601
                          long: -3.629795934417
                        - lat: 40.544332144207
                          long: -3.6299516021703
                        - lat: 40.544483775124
                          long: -3.630577017045
                        - lat: 40.544607690723
                          long: -3.6311134979808
                        - lat: 40.544616668359
                          long: -3.6311521988977
                        - lat: 40.544703001793
                          long: -3.6315261741593
                        - lat: 40.5448870815
                          long: -3.6322292646078
                        - lat: 40.544929369379
                          long: -3.632370784902
                        - lat: 40.544980167871
                          long: -3.6325210063245
                        - lat: 40.545043815463
                          long: -3.6326937750207
                        - lat: 40.545103277765
                          long: -3.6328411261246
                        - lat: 40.545162832392
                          long: -3.632971590819
                        - lat: 40.545240273603
                          long: -3.6331259612264
                        - lat: 40.545314869458
                          long: -3.6332734556829
                        - lat: 40.545402225972
                          long: -3.6334267392499
                        - lat: 40.545487634031
                          long: -3.6335574486623
                        - lat: 40.545566633614
                          long: -3.6336739265611
                        - lat: 40.545596564328
                          long: -3.6337193211108
                        - lat: 40.545641430288
                          long: -3.633784684721
                        - lat: 40.545684180774
                          long: -3.6338415374019
                        - lat: 40.545737589026
                          long: -3.633909827825
                        - lat: 40.545771752944
                          long: -3.6339553806067
                        - lat: 40.545810362711
                          long: -3.6339951886632
                        - lat: 40.545878759222
                          long: -3.6340721235947
                        - lat: 40.545933713676
                          long: -3.6341212974266
                        - lat: 40.546003564989
                          long: -3.6341974196786
                        - lat: 40.546095053877
                          long: -3.6342869730034
                        - lat: 40.546161105381
                          long: -3.6343495967669
                        - lat: 40.546219207462
                          long: -3.6343997455074
                        - lat: 40.546286892086
                          long: -3.6344602591704
                        - lat: 40.546348661617
                          long: -3.6345151665836
                        - lat: 40.546752435891
                          long: -3.6348109024049
                        - lat: 40.546964845242
                          long: -3.6350111942823
                        - lat: 40.547130294203
                          long: -3.6351830544849
                        - lat: 40.547272492885
                          long: -3.6353545777155
                        - lat: 40.547356202886
                          long: -3.6354660271267
                        - lat: 40.547456858511
                          long: -3.6356085788761
                        - lat: 40.547585500538
                          long: -3.6358222432501
                        - lat: 40.547679850311
                          long: -3.6360137474946
                        - lat: 40.547798171574
                          long: -3.6362855504491
                        - lat: 40.547877954905
                          long: -3.6365045533149
                        - lat: 40.547896438257
                          long: -3.6365672029296
                        - lat: 40.547910554966
                          long: -3.6366211899653
                        - lat: 40.547916694902
                          long: -3.636651363481
                        - lat: 40.547920380812
                          long: -3.636669113313
                        - lat: 40.547933539469
                          long: -3.6367007705034
                        - lat: 40.547940888873
                          long: -3.6367239876183
                        - lat: 40.547999069287
                          long: -3.63675973234
                        - lat: 40.548033935923
                          long: -3.6367756517423
                        - lat: 40.548036633883
                          long: -3.6367765039948
                        - lat: 40.548082865407
                          long: -3.636789932868
                        - lat: 40.54813230545
                          long: -3.6368096514458
                        - lat: 40.548196729678
                          long: -3.6368403653823
                        - lat: 40.548447557072
                          long: -3.6369673373938
                        - lat: 40.549040639659
                          long: -3.6372380946138
                        - lat: 40.549308681803
                          long: -3.6373145672196
                        - lat: 40.549502322256
                          long: -3.6373726196715
                        - lat: 40.549578236268
                          long: -3.6374434922636
                        - lat: 40.549679250699
                          long: -3.6375532226017
                        - lat: 40.549875329203
                          long: -3.6377554910829
                        - lat: 40.549944929928
                          long: -3.6378276037382
                        - lat: 40.549945377087
                          long: -3.6378281984962
                        - lat: 40.550241158588
                          long: -3.6381344130232
                        - lat: 40.550614800471
                          long: -3.6385176650695
                        - lat: 40.551005875508
                          long: -3.6389249324753
                        - lat: 40.551120795422
                          long: -3.6390433031541
                        - lat: 40.551123572342
                          long: -3.6390461640762
                        - lat: 40.551360686072
                          long: -3.6392902983943
                        - lat: 40.551698588517
                          long: -3.639635653654
                        - lat: 40.551755118177
                          long: -3.6396927644543
                        - lat: 40.551825868944
                          long: -3.6397196573622
                        - lat: 40.552956859781
                          long: -3.6399097096085
                        - lat: 40.553090769925
                          long: -3.6399677946741
                        - lat: 40.553358624573
                          long: -3.6401427841467
                        - lat: 40.553417150422
                          long: -3.6401810183491
                        - lat: 40.553564801973
                          long: -3.6402613099038
                        - lat: 40.553569112903
                          long: -3.6402637131561
                        - lat: 40.553775064208
                          long: -3.6403758713919
                        - lat: 40.553862939594
                          long: -3.6404175746453
                        - lat: 40.554076704403
                          long: -3.6406478005196
                        - lat: 40.554085134288
                          long: -3.6406547312675
                        - lat: 40.554102747831
                          long: -3.6406788755547
                        - lat: 40.554325466048
                          long: -3.6409839525697
                        - lat: 40.554467111317
                          long: -3.6413201362476
                        - lat: 40.554507838418
                          long: -3.6414486753591
                        - lat: 40.554553154625
                          long: -3.6415943845477
                        - lat: 40.554580097102
                          long: -3.6416581855554
                        - lat: 40.55464981083
                          long: -3.6418230258198
                        - lat: 40.554655232729
                          long: -3.6419173304335
                        - lat: 40.554651492752
                          long: -3.6419905237338
                        - lat: 40.554648054485
                          long: -3.6420580505648
                        - lat: 40.554637081395
                          long: -3.6422007422989
                        - lat: 40.554600203665
                          long: -3.6423684622228
                        - lat: 40.554506973397
                          long: -3.6426418132868
                        - lat: 40.554510171736
                          long: -3.6426498754196
                        - lat: 40.554588256677
                          long: -3.6428481039563
                        - lat: 40.554611620084
                          long: -3.6429073830354
                        - lat: 40.55474984369
                          long: -3.6432584332993
                        - lat: 40.554764235358
                          long: -3.6432948312694
                        - lat: 40.554823575304
                          long: -3.6434455190815
                        - lat: 40.555108103191
                          long: -3.6441678882855
                        - lat: 40.555108812665
                          long: -3.6441699029912
                        - lat: 40.555201270955
                          long: -3.644423431293
                        - lat: 40.555146870274
                          long: -3.6444857453825
                        - lat: 40.555097338968
                          long: -3.6445795238851
                        - lat: 40.555069032146
                          long: -3.6446475211775
                        - lat: 40.554998080795
                          long: -3.6448182210614
                        - lat: 40.554912111387
                          long: -3.6450809036461
                        - lat: 40.554884350331
                          long: -3.6452124380718
                        - lat: 40.555108046894
                          long: -3.6454047459815
                        - lat: 40.555276083984
                          long: -3.6455620317226
                        - lat: 40.555279032985
                          long: -3.6455663120944
                        - lat: 40.555296463338
                          long: -3.645590810676
                        - lat: 40.555305654832
                          long: -3.6456064898081
                        - lat: 40.555321594996
                          long: -3.6456397144191
                        - lat: 40.555328252921
                          long: -3.6456573771379
                        - lat: 40.555334188194
                          long: -3.6456753872555
                        - lat: 40.555343167475
                          long: -3.645712915186
                        - lat: 40.555348536797
                          long: -3.6457515895682
                        - lat: 40.555338191945
                          long: -3.64579719972
                        - lat: 40.555403642758
                          long: -3.6458210967905
                        - lat: 40.555409845984
                          long: -3.6458234005365
                        - lat: 40.555402902204
                          long: -3.6458568778007
                        - lat: 40.555401975618
                          long: -3.6458614752892
                        - lat: 40.55538721238
                          long: -3.6458916883609
                        - lat: 40.555372404893
                          long: -3.6459298145366
                        - lat: 40.555348172565
                          long: -3.6459778896783
                        - lat: 40.555274662475
                          long: -3.6461063981297
                        - lat: 40.555185124234
                          long: -3.6462979422412
                        - lat: 40.555084183969
                          long: -3.6465790114162
                        - lat: 40.554996207265
                          long: -3.6468133258932
                        - lat: 40.554951304888
                          long: -3.6470309282149
                        - lat: 40.554898633334
                          long: -3.6472506995513
                        - lat: 40.554871441848
                          long: -3.6474891414199
                        - lat: 40.554836308046
                          long: -3.6477943577333
                        - lat: 40.554790382744
                          long: -3.6480478431123
                        - lat: 40.554790565402
                          long: -3.6481598146161
                        - lat: 40.554793827828
                          long: -3.6484935111996
                        - lat: 40.554779711155
                          long: -3.6487293618173
                        - lat: 40.554774461107
                          long: -3.6490545902476
                        - lat: 40.554771994762
                          long: -3.6493331796629
                        - lat: 40.55479350694
                          long: -3.6496250048893
                        - lat: 40.554808320851
                          long: -3.6498903085395
                        - lat: 40.554809705606
                          long: -3.6500925289362
                        - lat: 40.554804964332
                          long: -3.6503266983021
                        - lat: 40.554795356496
                          long: -3.6505131034659
                        - lat: 40.554795521466
                          long: -3.6506277913704
                        - lat: 40.554809566969
                          long: -3.6508851625139
                        - lat: 40.554823315359
                          long: -3.6510352973725
                        - lat: 40.55487440104
                          long: -3.6513875287802
                        - lat: 40.554952768881
                          long: -3.6517725060173
                        - lat: 40.554978809344
                          long: -3.6518993744521
                        - lat: 40.554983987116
                          long: -3.6520354777335
                        - lat: 40.555010548521
                          long: -3.6523412909331
                        - lat: 40.555057355911
                          long: -3.6526990340198
                        - lat: 40.555099131195
                          long: -3.6528949151751
                        - lat: 40.55515319723
                          long: -3.6531795001227
                        - lat: 40.555162313497
                          long: -3.6532401684527
                        - lat: 40.555165253817
                          long: -3.653325592138
                        - lat: 40.555133056671
                          long: -3.6537141042837
                        - lat: 40.555118279657
                          long: -3.6540488083564
                        - lat: 40.555135670658
                          long: -3.6541435854053
                        - lat: 40.557248817029
                          long: -3.6555651012117
                        - lat: 40.558484425425
                          long: -3.656396290849
                        - lat: 40.559260622434
                          long: -3.6569185184047
                        - lat: 40.559687718954
                          long: -3.6572058155574
                        - lat: 40.559689603985
                          long: -3.6572070151937
                        - lat: 40.561290587044
                          long: -3.6582615524132
                        - lat: 40.568777936643
                          long: -3.6631938967973
                        - lat: 40.569685734472
                          long: -3.6637920113812
                        - lat: 40.569734378256
                          long: -3.6638240348243
                        - lat: 40.577627388377
                          long: -3.6680741466209
                        - lat: 40.5824967327
                          long: -3.6706957308191
                        - lat: 40.586150534471
                          long: -3.6726560773814
                        - lat: 40.588856338396
                          long: -3.6741185928176
                        - lat: 40.588569380402
                          long: -3.6747405869599
                        - lat: 40.58830226483
                          long: -3.6752810133152
                        - lat: 40.58805680903
                          long: -3.6757851389054
                        - lat: 40.587788265207
                          long: -3.6763070963433
                        - lat: 40.587493954198
                          long: -3.6768751238828
                        - lat: 40.58725488043
                          long: -3.677365121758
                        - lat: 40.587039086985
                          long: -3.6778007575168
                        - lat: 40.586881617828
                          long: -3.6781069832154
                        - lat: 40.586809992262
                          long: -3.6782460522098
                        - lat: 40.586705503061
                          long: -3.6784601797404
                        - lat: 40.586580812264
                          long: -3.6787224328341
                        - lat: 40.586562582604
                          long: -3.6787585259049
                        - lat: 40.586350682272
                          long: -3.6792052997801
                        - lat: 40.586209742418
                          long: -3.6795035446638
                        - lat: 40.586130522
                          long: -3.6796776175444
                        - lat: 40.586035830715
                          long: -3.6798796687686
                        - lat: 40.585943974108
                          long: -3.6800730038374
                        - lat: 40.585849946155
                          long: -3.6802678525355
                        - lat: 40.585748204072
                          long: -3.6804875555032
                        - lat: 40.585606187854
                          long: -3.6807997276524
                        - lat: 40.585381888218
                          long: -3.6812548708158
                        - lat: 40.585174942497
                          long: -3.6816863060278
                        - lat: 40.58496399254
                          long: -3.6821380340095
                        - lat: 40.584703501719
                          long: -3.6825577057026
                        - lat: 40.584216680049
                          long: -3.6833645258597
                        - lat: 40.583875545089
                          long: -3.6839077920446
                        - lat: 40.583651708928
                          long: -3.6842537360076
                        - lat: 40.583409191137
                          long: -3.684770809898
                        - lat: 40.583286897257
                          long: -3.6850062402149
                        - lat: 40.58324650131
                          long: -3.6851035476164
                        - lat: 40.58315656073
                          long: -3.6853217009525
                        - lat: 40.583039513176
                          long: -3.6855700625061
                        - lat: 40.582932380997
                          long: -3.6858006821745
                        - lat: 40.582742972718
                          long: -3.6865814313627
                        - lat: 40.582588395043
                          long: -3.6872609266596
                        - lat: 40.582616470462
                          long: -3.6885687644298
                        - lat: 40.582225508503
                          long: -3.6891697325843
                        - lat: 40.58215814835
                          long: -3.6892711310517
                        - lat: 40.582108220186
                          long: -3.689334779106
                        - lat: 40.582046443312
                          long: -3.6894063284338
                        - lat: 40.581801435538
                          long: -3.6897044091538
                        - lat: 40.581586970091
                          long: -3.6899551836744
                        - lat: 40.581477289059
                          long: -3.6900832037378
                        - lat: 40.581312643067
                          long: -3.6902734003238
                        - lat: 40.580976681422
                          long: -3.6906707367824
                        - lat: 40.580803479812
                          long: -3.6910711621899
                        - lat: 40.580701160676
                          long: -3.6912935321565
                        - lat: 40.580625658387
                          long: -3.6914605375615
                        - lat: 40.580546735799
                          long: -3.6916420406344
                        - lat: 40.580483479042
                          long: -3.6917949926334
                        - lat: 40.580323169631
                          long: -3.6923600186349
                        - lat: 40.580195304551
                          long: -3.6928158342448
                        - lat: 40.580031089884
                          long: -3.6933687631633
                        - lat: 40.579892568905
                          long: -3.6942644877135
                        - lat: 40.579672300747
                          long: -3.6958071832013
                        - lat: 40.579346755296
                          long: -3.6969390389392
                        - lat: 40.579313148116
                          long: -3.6970592077274
                        - lat: 40.578973567159
                          long: -3.6982739557573
                        - lat: 40.578614420475
                          long: -3.6994610761276
                        - lat: 40.57863454747
                          long: -3.701564402238
                        - lat: 40.578309973717
                          long: -3.7015637289902
                        - lat: 40.578309726686
                          long: -3.7015154019556
                        - lat: 40.578308811816
                          long: -3.7012951557695
                        - lat: 40.578303330855
                          long: -3.700430102685
                        - lat: 40.578301469975
                          long: -3.7002912656816
                        - lat: 40.578294692643
                          long: -3.7002649651144
                        - lat: 40.578277077097
                          long: -3.7002135031811
                        - lat: 40.578244649086
                          long: -3.7001237235554
                        - lat: 40.578208095836
                          long: -3.7000308290494
                        - lat: 40.578187390183
                          long: -3.6999838248298
                        - lat: 40.578144455068
                          long: -3.699918275329
                        - lat: 40.578102133418
                          long: -3.6998406807665
                        - lat: 40.578041873271
                          long: -3.6997500207919
                        - lat: 40.577995078499
                          long: -3.6996836043059
                        - lat: 40.577978553537
                          long: -3.699660274322
                        - lat: 40.577915444239
                          long: -3.6995640318532
                        - lat: 40.577911606475
                          long: -3.6995580842755
                        - lat: 40.577843324541
                          long: -3.6994531630371
                        - lat: 40.577839040652
                          long: -3.6994465019145
                        - lat: 40.577717593048
                          long: -3.6992843144654
                        - lat: 40.577695162621
                          long: -3.6992543066965
                        - lat: 40.577618654241
                          long: -3.6991540383403
                        - lat: 40.577561963221
                          long: -3.6990838569818
                        - lat: 40.577515954776
                          long: -3.6990348178655
                        - lat: 40.577472588726
                          long: -3.6989957310228
                        - lat: 40.577423332274
                          long: -3.6989474852874
                        - lat: 40.577399223805
                          long: -3.6989267942376
                        - lat: 40.577388916523
                          long: -3.6989180619386
                        - lat: 40.577350133192
                          long: -3.6988809133524
                        - lat: 40.577305534524
                          long: -3.6988370878428
                        - lat: 40.577265888222
                          long: -3.6987936683743
                        - lat: 40.577229736531
                          long: -3.6987533572381
                        - lat: 40.577224098508
                          long: -3.6987471547356
                        - lat: 40.577188822569
                          long: -3.6986961010437
                        - lat: 40.577140212176
                          long: -3.6986154891765
                        - lat: 40.577107856677
                          long: -3.6985582040137
                        - lat: 40.577098943467
                          long: -3.6985423972752
                        - lat: 40.577059764535
                          long: -3.6984812603999
                        - lat: 40.577014081705
                          long: -3.6984081227653
                        - lat: 40.577012922778
                          long: -3.698406102156
                        - lat: 40.576995009801
                          long: -3.6983738971164
                        - lat: 40.576987707333
                          long: -3.6983598794342
                        - lat: 40.57693391896
                          long: -3.6982565293598
                        - lat: 40.576924912769
                          long: -3.6982411943369
                        - lat: 40.57690342216
                          long: -3.698204698781
                        - lat: 40.576873945559
                          long: -3.6981629334356
                        - lat: 40.57684082788
                          long: -3.69812738042
                        - lat: 40.57678353659
                          long: -3.6980818878648
                        - lat: 40.576720308415
                          long: -3.6980349158829
                        - lat: 40.576656278045
                          long: -3.6979865178555
                        - lat: 40.576517047324
                          long: -3.6978761369586
                        - lat: 40.576478486072
                          long: -3.6978469077858
                        - lat: 40.576443883438
                          long: -3.6978185468242
                        - lat: 40.576304496199
                          long: -3.6976430648027
                        - lat: 40.576195830733
                          long: -3.6974970853599
                        - lat: 40.576132089925
                          long: -3.6974156095492
                        - lat: 40.576083782106
                          long: -3.6973593416792
                        - lat: 40.576040566877
                          long: -3.6973100975389
                        - lat: 40.57600732889
                          long: -3.6972795063849
                        - lat: 40.575977269198
                          long: -3.6972745865061
                        - lat: 40.575941603007
                          long: -3.697273152882
                        - lat: 40.575928453123
                          long: -3.6972726619144
                        - lat: 40.575903220795
                          long: -3.6972739358832
                        - lat: 40.575861587062
                          long: -3.6972761029075
                        - lat: 40.575852488745
                          long: -3.6972760084487
                        - lat: 40.575788978549
                          long: -3.6972757035313
                        - lat: 40.575755290603
                          long: -3.6972748811912
                        - lat: 40.575721333123
                          long: -3.6972739379057
                        - lat: 40.575695576701
                          long: -3.6972724890235
                        - lat: 40.575650997989
                          long: -3.6972700295106
                        - lat: 40.575527193941
                          long: -3.6972589379314
                        - lat: 40.575521613827
                          long: -3.697258052966
                        - lat: 40.575472561016
                          long: -3.6972505730034
                        - lat: 40.575411548643
                          long: -3.6972394244673
                        - lat: 40.575349631617
                          long: -3.6972303932161
                        - lat: 40.575307723118
                          long: -3.6972183797099
                        - lat: 40.575292614238
                          long: -3.6972140877062
                        - lat: 40.575185317579
                          long: -3.6971696138463
                        - lat: 40.575161507071
                          long: -3.697159206032
                        - lat: 40.575132215797
                          long: -3.6971463783931
                        - lat: 40.575027020944
                          long: -3.6970969643945
                        - lat: 40.574967903587
                          long: -3.6970703585101
                        - lat: 40.574941491373
                          long: -3.6970581515622
                        - lat: 40.574906544144
                          long: -3.6970420753502
                        - lat: 40.574856449266
                          long: -3.6970132002636
                        - lat: 40.574829276913
                          long: -3.6969925970625
                        - lat: 40.574809906796
                          long: -3.6969778640242
                        - lat: 40.574773135976
                          long: -3.6969355404414
                        - lat: 40.574732959545
                          long: -3.6968753414588
                        - lat: 40.57457510185
                          long: -3.6966701377811
                        - lat: 40.574559638005
                          long: -3.6966500106878
                        - lat: 40.574420498851
                          long: -3.6964629603413
                        - lat: 40.574358748268
                          long: -3.6963799842419
                        - lat: 40.5742883099
                          long: -3.6962736317241
                        - lat: 40.574265455302
                          long: -3.6962391325766
                        - lat: 40.574201967002
                          long: -3.6961156031463
                        - lat: 40.574194496187
                          long: -3.6960995760781
                        - lat: 40.574116589071
                          long: -3.6959319474348
                        - lat: 40.574021757488
                          long: -3.6957188942601
                        - lat: 40.573955680936
                          long: -3.6955613131884
                        - lat: 40.573859051029
                          long: -3.6953311114215
                        - lat: 40.573759833076
                          long: -3.6950967602832
                        - lat: 40.573707762679
                          long: -3.6949768953441
                        - lat: 40.573691945486
                          long: -3.6949405794361
                        - lat: 40.573683414836
                          long: -3.6949209973177
                        - lat: 40.573636192257
                          long: -3.6948788037373
                        - lat: 40.573568987867
                          long: -3.6948186818501
                        - lat: 40.57352355766
                          long: -3.6947780428307
                        - lat: 40.573520689944
                          long: -3.6947755321369
                        - lat: 40.573482330052
                          long: -3.6947426456818
                        - lat: 40.573443701324
                          long: -3.6947095201956
                        - lat: 40.573398798784
                          long: -3.6946710133778
                        - lat: 40.573367519854
                          long: -3.6946441074745
                        - lat: 40.573336867942
                          long: -3.6946177988006
                        - lat: 40.573320826297
                          long: -3.694603810064
                        - lat: 40.573274494476
                          long: -3.6945632801627
                        - lat: 40.573227983895
                          long: -3.6945225121819
                        - lat: 40.57319204763
                          long: -3.6944910688006
                        - lat: 40.573183893452
                          long: -3.6944837777238
                        - lat: 40.573151812966
                          long: -3.6944553278402
                        - lat: 40.573091505634
                          long: -3.6944017760141
                        - lat: 40.573041951362
                          long: -3.6943577869199
                        - lat: 40.573008079136
                          long: -3.6943276646286
                        - lat: 40.572964794395
                          long: -3.6942897657584
                        - lat: 40.572887187612
                          long: -3.6942216337764
                        - lat: 40.572797123285
                          long: -3.6941427285248
                        - lat: 40.572676653674
                          long: -3.6940414166012
                        - lat: 40.572656036913
                          long: -3.6940241910144
                        - lat: 40.571813211342
                          long: -3.6933442039068
                        - lat: 40.57149261816
                          long: -3.6927385069617
                        - lat: 40.57157385615
                          long: -3.6926369166122
                        - lat: 40.571578898122
                          long: -3.692577307451
                        - lat: 40.571015989607
                          long: -3.6925250746964
                        - lat: 40.570873885844
                          long: -3.6924858049949
                        - lat: 40.57067735656
                          long: -3.6923734368994
                        - lat: 40.570354394628
                          long: -3.6921021812726
                        - lat: 40.570268259844
                          long: -3.6920287567378
                        - lat: 40.570191707235
                          long: -3.6919648821722
                        - lat: 40.570072002992
                          long: -3.691872328257
                        - lat: 40.569894732331
                          long: -3.6917632332347
                        - lat: 40.569784846583
                          long: -3.6916392384126
                        - lat: 40.569709444196
                          long: -3.6913831667095
                        - lat: 40.569636232774
                          long: -3.6911522932186
                        - lat: 40.569576544179
                          long: -3.6910854040421
                        - lat: 40.569164910923
                          long: -3.6907273501179
                        - lat: 40.569179497504
                          long: -3.6906834351164
                        - lat: 40.569160852696
                          long: -3.6906075178308
                        - lat: 40.569193640454
                          long: -3.6905479595885
                        - lat: 40.569280596055
                          long: -3.6904842325797
                        - lat: 40.56980366339
                          long: -3.6902690457526
                        - lat: 40.569960615887
                          long: -3.6901603175747
                        - lat: 40.570088892156
                          long: -3.6900261308676
                        - lat: 40.570168989392
                          long: -3.6899039715258
                        - lat: 40.570266270437
                          long: -3.6897252936315
                        - lat: 40.570329117873
                          long: -3.689549912249
                        - lat: 40.570352406563
                          long: -3.6894667453507
                        - lat: 40.570401675379
                          long: -3.6893324546224
                        - lat: 40.570169168714
                          long: -3.6894665185956
                        - lat: 40.569933004826
                          long: -3.6895642757391
                        - lat: 40.569509824858
                          long: -3.6895567421293
                        - lat: 40.568625829817
                          long: -3.6895199064494
                        - lat: 40.568510355844
                          long: -3.6894563456936
                        - lat: 40.568421714462
                          long: -3.6893814832481
                        - lat: 40.567515513117
                          long: -3.6889745578309
                        - lat: 40.567141675465
                          long: -3.6888807066031
                        - lat: 40.564948316443
                          long: -3.6878980748068
                        - lat: 40.563143857821
                          long: -3.6869444203299
                        - lat: 40.562816199184
                          long: -3.6868093605839
                        - lat: 40.562391132742
                          long: -3.6866340893206
                        - lat: 40.561815516485
                          long: -3.6864441705802
                        - lat: 40.559641639214
                          long: -3.6857270765577
                        - lat: 40.558089165769
                          long: -3.6849069872682
                        - lat: 40.554878604743
                          long: -3.6830067251908
                        - lat: 40.553826277731
                          long: -3.6823839990113
                        - lat: 40.552963400369
                          long: -3.6821432744801
                        - lat: 40.552903590012
                          long: -3.6821266047982
                        - lat: 40.552820942894
                          long: -3.682147970379
                        - lat: 40.55141677063
                          long: -3.6825110677383
                        - lat: 40.550700510746
                          long: -3.682047806824
                        - lat: 40.550415173104
                          long: -3.6819761753841
                        - lat: 40.550231847477
                          long: -3.6819464431455
                        - lat: 40.550189410697
                          long: -3.6819473117819
                        - lat: 40.550147087701
                          long: -3.6819441660611
                        - lat: 40.550105058653
                          long: -3.6819370078183
                        - lat: 40.550063592409
                          long: -3.6819260759946
                        - lat: 40.550022690361
                          long: -3.6819111344047
                        - lat: 40.549982800832
                          long: -3.6818925419119
                        - lat: 40.549944014599
                          long: -3.6818701813399
                        - lat: 40.5498943142
                          long: -3.6818348368858
                        - lat: 40.549870467802
                          long: -3.6818149899582
                        - lat: 40.549836247034
                          long: -3.681782282734
                        - lat: 40.549659011413
                          long: -3.6815891593427
                        - lat: 40.549204304552
                          long: -3.6811207759432
                        - lat: 40.549167009338
                          long: -3.6810746927785
                        - lat: 40.548953409892
                          long: -3.6806940145515
                        - lat: 40.548832915286
                          long: -3.6804265949491
                        - lat: 40.548768028468
                          long: -3.6802928385587
                        - lat: 40.548709409793
                          long: -3.6801961231846
                        - lat: 40.548634675672
                          long: -3.6801129328085
                        - lat: 40.548480029851
                          long: -3.6800455864278
                        - lat: 40.548415971868
                          long: -3.6800005327597
                        - lat: 40.54804840241
                          long: -3.6797417197734
                        - lat: 40.547810743427
                          long: -3.6795742142072
                        - lat: 40.54764281416
                          long: -3.679453945464
                        - lat: 40.547520392659
                          long: -3.6793298974266
                        - lat: 40.547443347656
                          long: -3.6792412536217
                        - lat: 40.547307792352
                          long: -3.6790679329807
                        - lat: 40.547222659782
                          long: -3.6789757832345
                        - lat: 40.547142705212
                          long: -3.6789223040521
                        - lat: 40.546820570169
                          long: -3.6787039956142
                        - lat: 40.546705966833
                          long: -3.6786291460229
                        - lat: 40.54660448976
                          long: -3.6785895039919
                        - lat: 40.546521618964
                          long: -3.6785570175865
                        - lat: 40.546501105419
                          long: -3.6785984987409
                        - lat: 40.545377119557
                          long: -3.678716007582
                        - lat: 40.543446135628
                          long: -3.6781390176323
                        - lat: 40.542982653357
                          long: -3.6779523655145
                        - lat: 40.541810678109
                          long: -3.6769728249113
                        - lat: 40.541743703319
                          long: -3.6769025965083
                        - lat: 40.541611502369
                          long: -3.6767404294792
                        - lat: 40.541461940304
                          long: -3.6765430162694
                        - lat: 40.541326250717
                          long: -3.676345743471
                        - lat: 40.541213066083
                          long: -3.6761359561092
                        - lat: 40.54115233612
                          long: -3.6760145419892
                        - lat: 40.541101323844
                          long: -3.67592593597
                        - lat: 40.541030576057
                          long: -3.6758229612649
                        - lat: 40.540952891681
                          long: -3.6757507378148
                        - lat: 40.540811404543
                          long: -3.6756357164312
                        - lat: 40.540669021616
                          long: -3.6755352111924
                        - lat: 40.54056727445
                          long: -3.6754645180634
                        - lat: 40.540414736831
                          long: -3.6753611955918
                        - lat: 40.540282439137
                          long: -3.6752768643072
                        - lat: 40.540136002123
                          long: -3.6751763199295
                        - lat: 40.539983412046
                          long: -3.6750649684513
                        - lat: 40.539861415417
                          long: -3.6749752979669
                        - lat: 40.539733790095
                          long: -3.674893010677
                        - lat: 40.539599451904
                          long: -3.6748032170022
                        - lat: 40.539420314191
                          long: -3.6747023466132
                        - lat: 40.539182157121
                          long: -3.6745740796525
                        - lat: 40.539049796142
                          long: -3.6745004846758
                        - lat: 40.538943791207
                          long: -3.6744645868102
                        - lat: 40.538631839205
                          long: -3.6743677120675
                        - lat: 40.538522987577
                          long: -3.6743101769348
                        - lat: 40.538394823983
                          long: -3.6742274148516
                        - lat: 40.538308315709
                          long: -3.6741696318067
                        - lat: 40.538227213094
                          long: -3.6741117850143
                        - lat: 40.538103093266
                          long: -3.6739859642313
                        - lat: 40.538035758431
                          long: -3.6738999161224
                        - lat: 40.537960433892
                          long: -3.6737781274083
                        - lat: 40.537887963765
                          long: -3.673645740202
                        - lat: 40.537793921737
                          long: -3.673473945967
                        - lat: 40.537678508574
                          long: -3.6732591809865
                        - lat: 40.537633256813
                          long: -3.6731092370429
                        - lat: 40.537604074758
                          long: -3.6729843692452
                        - lat: 40.537567144679
                          long: -3.6728131362097
                        - lat: 40.537501438556
                          long: -3.672431667396
                        - lat: 40.537480225248
                          long: -3.6723460827017
                        - lat: 40.537458970588
                          long: -3.6722675943165
                        - lat: 40.537437592293
                          long: -3.6722103475113
                        - lat: 40.537421646552
                          long: -3.6721639004026
                        - lat: 40.537386664921
                          long: -3.672106635797
                        - lat: 40.537354344558
                          long: -3.6720564826938
                        - lat: 40.537273592435
                          long: -3.6719381854756
                        - lat: 40.537212866601
                          long: -3.6718617710332
                        - lat: 40.537164303501
                          long: -3.6718007106029
                        - lat: 40.53712106933
                          long: -3.671768278947
                        - lat: 40.537088735244
                          long: -3.6717359562027
                        - lat: 40.53703732474
                          long: -3.6716997824764
                        - lat: 40.536996813633
                          long: -3.6716638357367
                        - lat: 40.536942831865
                          long: -3.6716205516322
                        - lat: 40.536824001621
                          long: -3.6715126207499
                        - lat: 40.536753818301
                          long: -3.67145134508
                        - lat: 40.536605253279
                          long: -3.671328830372
                        - lat: 40.53645386263
                          long: -3.6712135026519
                        - lat: 40.536367415188
                          long: -3.6711449805905
                        - lat: 40.536300029049
                          long: -3.6710829070836
                        - lat: 40.536059287813
                          long: -3.6709319621689
                        - lat: 40.535944129615
                          long: -3.6708586675226
                        - lat: 40.535841356273
                          long: -3.6707935259644
                        - lat: 40.535784478068
                          long: -3.670768044217
                        - lat: 40.535697719851
                          long: -3.6707530096195
                        - lat: 40.535600206836
                          long: -3.6707128353265
                        - lat: 40.53548146577
                          long: -3.6706049091217
                        - lat: 40.535316718684
                          long: -3.6704608653405
                        - lat: 40.535154620518
                          long: -3.6703276054812
                        - lat: 40.535030474062
                          long: -3.6702196268181
                        - lat: 40.534979104137
                          long: -3.6701763711828
                        - lat: 40.534930588414
                          long: -3.6701225171597
                        - lat: 40.53488477517
                          long: -3.6700686901379
                        - lat: 40.534839078581
                          long: -3.6699792052746
                        - lat: 40.534763757043
                          long: -3.6698717140353
                        - lat: 40.534667857436
                          long: -3.6697241083987
                        - lat: 40.534565660232
                          long: -3.669559437557
                        - lat: 40.534458099501
                          long: -3.6693875112175
                        - lat: 40.534395545937
                          long: -3.6692841746806
                        - lat: 40.532058663511
                          long: -3.6709786156292
                        - lat: 40.530864726682
                          long: -3.6723113875074
                        - lat: 40.528376558793
                          long: -3.6756992982059
                        - lat: 40.527240536312
                          long: -3.6765034563191
                        - lat: 40.526987825606
                          long: -3.6771821364824
                        - lat: 40.526113654692
                          long: -3.6755574477285
                        - lat: 40.525571007461
                          long: -3.6750421092684
                        - lat: 40.524361884003
                          long: -3.6720044113733
                        - lat: 40.524716358394
                          long: -3.6700230553521
                        - lat: 40.525003369357
                          long: -3.6676267271289
                        - lat: 40.524475015084
                          long: -3.6659533452972
                        - lat: 40.524463274111
                          long: -3.6659115545395
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                      id: 561e04ed6aa918910c8b4592
                      jurisdiction_elements:
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5d9ee7bcde2efef4018b4569
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 64cb9cebaddc18074d0e4193
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 64cb9e98addc18074d0e4195
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 64cb9edb24ab2d777a0ca313
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 64df24ef07a26e434d01f893
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 667031dac97737f437009da6
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png
                          id: 5c9b55579650e67d42985e80
                          location_additional_data: {}
                          name: org.alcobendas
                          type: city
                          visible_name: Alcobendas
                          is_main: true
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                          id: 65c27852911e73e22d02f413
                          name: prueba
                          type: city
                          visible_name: prueba S y G
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/667b22cc072a7815151459.png
                          id: 65ea13f79f912150be097e22
                          name: prueba_copy
                          type: city
                          visible_name: prueba_copy
                          position:
                            address_string: 7CMF9HRJ+C9
                            lat: 23.391075815349
                            long: -10.419070926826
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png
                          id: 65ea172b751882bcdd08f9c2
                          name: prueba_copy_copy
                          type: city
                          visible_name: prueba_copy_copy
                          position:
                            lat: 23.391075815349
                            long: -10.419070926826
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png
                          id: 65ea1744b312b50dec003e12
                          name: prueba_copy_copy_copy
                          type: city
                          visible_name: prueba_copy_copy_copy
                          position:
                            lat: 23.391075815349
                            long: -10.419070926826
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/661016786f01f245765540.png
                          id: 66102b1ef3a7a40d9e07dcb2
                          name: prueba 66102b1e0f1ce0.98388817
                          type: city
                          visible_name: prueba 66102b1e0f1d69.43217378
                          position:
                            address_string: C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain
                            lat: 40.5417604
                            long: -3.6488851
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                          id: 6622699b678cd8206600a642
                          name: prueba 6622699b459009.72981868
                          type: city
                          visible_name: prueba 6622699b459072.064512034
                          position:
                            address_string: C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain4
                            lat: 40.5417604
                            long: -3.6488851
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a753e68c729442026.png
                          id: 662274499a752fef9c0d3fd2
                          name: prueba_copy 66227449a7bc29.71828875
                          type: city
                          visible_name: prueba_copy 66227449a7bc97.76088342
                          position:
                            address_string: 7CMF9HRJ+C9
                            lat: 23.391075815349
                            long: -10.419070926826
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/665f158dd7a2f696134412.png
                          id: 6622747196f67a49700e3773
                          name: PruebaRed
                          type: city
                          visible_name: Prueba Redireccion
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758676e710fb864221721.png
                          id: 663d17ac964ad414110d9154
                          name: prueba - rutas
                          type: city
                          visible_name: prueba - rutas
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 663d50f27849b9e1d40dac0a
                          name: prueba-redirect
                          type: city
                          visible_name: prueba-redirect
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 663d519e5827e05956040922
                          name: prueba-redirect 663d519e05b6c2.37692593
                          type: city
                          visible_name: prueba-redirect 663d519e05b745.04573792
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7f8c00d8bf483509589.png
                          id: 66a7f8c05adb7591e20f34a3
                          name: dsfdsf
                          type: city
                          visible_name: sdfdsf
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7fbae44082397700839.png
                          id: 66a7fbaece27438232094fb3
                          name: sdfsdffds
                          type: city
                          visible_name: sfdfsdf
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83602dcee520229024.png
                          id: 66ab8360fe792921890d0b93
                          name: xczxczxc
                          type: city
                          visible_name: zxczxc
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83991030e165490436.png
                          id: 66ab8399fe792921890d0b95
                          name: asdsad
                          type: city
                          visible_name: sdasd
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.6383701014039476
                            - 40.53726099591145
                            - -3.636267202837841
                            - 40.53737383778608
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab8630cd7f2176146195.png
                          id: 66ab8630a7ae91e5dd0513ad
                          name: dasdasd
                          type: city
                          visible_name: asdasdads
                          position:
                            address_string: Alcobendas, Madrid, Spain
                            lat: 40.5372512
                            long: -3.6372245
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66feab42f3863925866863.png
                          id: 66acd7c67dcac6466406e973
                          name: prueba copy21
                          type: city
                          visible_name: prueba48
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66d8ab81aded9310723592.png
                          id: 66d8aaac847ce6c01b051c6a
                          name: Pruebas_00
                          type: city
                          visible_name: Subproyecto de Prueba 00
                          position:
                            address_string: >-
                              Av. de la Zaporra, 30, 28108 Alcobendas, Madrid,
                              Spain
                            lat: 40.536950952219
                            long: -3.6375723972414
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 66ec8a415944e6a1d70d294a
                          name: sdfsdf
                          type: city
                          visible_name: sdfsdf
                          position: {}
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e93a7fca30a7b0d7e04
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e94a7fca30a7b0d7e0c
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e94a7fca30a7b0d7e0d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletass
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e94a7fca30a7b0d7e0e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e94a7fca30a7b0d7e0f
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e94a7fca30a7b0d7e11
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                          id: 66f55e93a7fca30a7b0d7e03
                          location_additional_data: {}
                          name: org.alcobendas 2
                          type: city
                          visible_name: Alcobendas 66f55e93e28e50.95622604
                          position:
                            address_string: >-
                              C. Clz8 G17 María Teresa, 8, 28108 Alcobendas,
                              Madrid, Spain
                            lat: 40.537075706835
                            long: -3.6352928421438
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e9cfc8304ec890065d6
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e9cfc8304ec890065de
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e9cfc8304ec890065df
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e9cfc8304ec890065e0
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e9cfc8304ec890065e1
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55e9cfc8304ec890065e3
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          id: 66f55e9cfc8304ec890065d5
                          location_additional_data: {}
                          name: org.alcobendas 66f55e9c25b230.62445164
                          type: city
                          visible_name: Alcobendas 66f55e9c25b292.93160889
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55eb3a7fca30a7b0d7e13
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55eb3a7fca30a7b0d7e1b
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55eb3a7fca30a7b0d7e1c
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55eb3a7fca30a7b0d7e1d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55eb3a7fca30a7b0d7e1e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 66f55eb3a7fca30a7b0d7e20
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          id: 66f55eb3a7fca30a7b0d7e12
                          location_additional_data: {}
                          name: org.alcobendas 66f55eb3782408.06642050
                          type: city
                          visible_name: Alcobendas 66f55eb3782462.71960258
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66fd515dd2918569942317.png
                          id: 66fd515e402343afa9009794
                          name: AlcobendasTest
                          type: city
                          visible_name: AlcobendasTest
                          position:
                            address_string: >-
                              Av. de Peñalara, 14, 28108 Alcobendas, Madrid,
                              Spain
                            lat: 40.534024499598
                            long: -3.6633100275929
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 66fd51c6768fcce869009695
                          name: TestOne
                          type: building
                          visible_name: TestOne
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 66fd6717b2e794c2750311ef
                          name: sadas
                          type: building
                          visible_name: dsds
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 66fe916a7ecd831d99057fae
                          name: fdgdfgg
                          type: city
                          visible_name: sadasdsf
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/663d17acab642804466040.png
                          id: 66febaa95704247b9101f8d4
                          name: prueba - rutas 66febaa9e601d7.81700930
                          type: city
                          visible_name: prueba - rutas 66febaa9e60247.16727571
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: true
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6707f0f2a56ab960053749.png
                          id: 6707cc6602f036033f087a1d
                          name: Documentación 2
                          type: building
                          visible_name: Prueba Documentación 2
                          position:
                            address_string: >-
                              C. de Embajadores, 77, Arganzuela, 28012 Madrid,
                              Spain
                            lat: 40.402644829153
                            long: -3.7004203901125
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 670802e62f9d4a71cd06a755
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 670802e62f9d4a71cd06a75d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 670802e62f9d4a71cd06a75e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 670802e62f9d4a71cd06a75f
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 670802e62f9d4a71cd06a760
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 670802e62f9d4a71cd06a762
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          id: 670802e62f9d4a71cd06a754
                          location_additional_data: {}
                          name: org.alcobendas 670802e6be8658.12404683
                          type: city
                          visible_name: Alcobendas 670802e6be86b5.23732963
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67096bc2ffc05a02a10aeb01
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67096bc2ffc05a02a10aeb09
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67096bc2ffc05a02a10aeb0a
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67096bc2ffc05a02a10aeb0b
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67096bc3ffc05a02a10aeb0c
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67096bc3ffc05a02a10aeb0e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          id: 67096bc2ffc05a02a10aeb00
                          location_additional_data: {}
                          name: org.alcobendas 67096bc2dbe5c3.49134378
                          type: city
                          visible_name: Alcobendas 67096bc2dbe626.22009007
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 67478f9898e9bea6e70a90b8
                          name: sasdda
                          type: city
                          visible_name: pruebas
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/675947afec6a2469197916.png
                          id: 675947b0f044affc53005ba8
                          name: Prueba QA
                          type: building
                          visible_name: Prueba QA
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678832b021303145868051.png
                          id: 678832b0deaa23504a049c36
                          name: bvnbvn
                          type: building
                          visible_name: vnbn
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 6788340c943dcdca3d0b7994
                          name: xcxcv
                          type: building
                          visible_name: xcvx
                          position: {}
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834b8890a3779c2073c94
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834b8890a3779c2073c9c
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834b8890a3779c2073c9d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletass
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834b8890a3779c2073c9e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834b8890a3779c2073c9f
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834b8890a3779c2073ca1
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                          id: 678834b8890a3779c2073c93
                          location_additional_data: {}
                          name: >-
                            org.alcobendas 66f55e93e28df4.433383312
                            678834b8c3dcd9.23960367
                          type: city
                          visible_name: >-
                            Alcobendas 66f55e93e28e50.95622604
                            678834b8c3dd25.76718740
                          position:
                            address_string: >-
                              C. Clz8 G17 María Teresa, 8, 28108 Alcobendas,
                              Madrid, Spain
                            lat: 40.537075706835
                            long: -3.6352928421438
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834e03ccfc90eab0a4843
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834e03ccfc90eab0a484b
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834e03ccfc90eab0a484c
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834e03ccfc90eab0a484d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834e03ccfc90eab0a484e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678834e03ccfc90eab0a4850
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                          id: 678834e03ccfc90eab0a4842
                          location_additional_data: {}
                          name: org.alcobendas 678834e037e4b0.37687067
                          type: city
                          visible_name: Alcobendas 678834e037e531.71607018
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 6788372e67c09c2f2f0909c3
                          name: xzcxzc
                          type: building
                          visible_name: xczxczxcxz
                          position: {}
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678837b72bdfe4fd820c4af3
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678837b72bdfe4fd820c4afb
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678837b72bdfe4fd820c4afc
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletass
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678837b72bdfe4fd820c4afd
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678837b72bdfe4fd820c4afe
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 678837b72bdfe4fd820c4b00
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.694952001222114
                            - 40.50117283
                            - -3.55027416
                            - 40.58886136999999
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                          id: 678837b72bdfe4fd820c4af2
                          location_additional_data: {}
                          name: >-
                            org.alcobendas 66f55e93e28df4.433383312
                            678837b7995d51.94642502
                          type: city
                          visible_name: >-
                            Alcobendas 66f55e93e28e50.95622604
                            678837b7995da7.96927208
                          position:
                            address_string: >-
                              C. Clz8 G17 María Teresa, 10, 28108 Alcobendas,
                              Madrid, Spain
                            lat: 40.537085389425
                            long: -3.634876818277
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fa592bdfe4fd820c4b04
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fa592bdfe4fd820c4b0c
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fa592bdfe4fd820c4b0d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletass
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fa592bdfe4fd820c4b0e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fa592bdfe4fd820c4b0f
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fa592bdfe4fd820c4b11
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                          id: 6788fa592bdfe4fd820c4b03
                          location_additional_data: {}
                          name: org.alcobendas 2 6788fa592cb379.01808297
                          type: city
                          visible_name: >-
                            Alcobendas 66f55e93e28e50.95622604
                            6788fa592cb3b6.23533051
                          position:
                            address_string: >-
                              C. Clz8 G17 María Teresa, 8, 28108 Alcobendas,
                              Madrid, Spain
                            lat: 40.537075706835
                            long: -3.6352928421438
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fab5deaa23504a049c38
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fab5deaa23504a049c40
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fab5deaa23504a049c41
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletass
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fab5deaa23504a049c42
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fab6deaa23504a049c43
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fab6deaa23504a049c45
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                          id: 6788fab5deaa23504a049c37
                          location_additional_data: {}
                          name: org.alcobendas 2 6788fab5d845e1.14038314
                          type: city
                          visible_name: >-
                            Alcobendas 66f55e93e28e50.95622604
                            6788fab5d84645.20456436
                          position:
                            address_string: >-
                              C. Clz8 G17 María Teresa, 8, 28108 Alcobendas,
                              Madrid, Spain
                            lat: 40.537075706835
                            long: -3.6352928421438
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe6867c09c2f2f0909c5
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe6867c09c2f2f0909cd
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe6867c09c2f2f0909ce
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletass
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe6867c09c2f2f0909cf
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe6867c09c2f2f0909d0
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe6867c09c2f2f0909d2
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                          id: 6788fe6867c09c2f2f0909c4
                          location_additional_data: {}
                          name: org.alcobendas 2 6788fe686b90d8.11238269
                          type: city
                          visible_name: >-
                            Alcobendas 66f55e93e28e50.95622604
                            6788fe686b9136.06999346
                          position:
                            address_string: >-
                              C. Clz8 G17 María Teresa, 8, 28108 Alcobendas,
                              Madrid, Spain
                            lat: 40.537075706835
                            long: -3.6352928421438
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe7fe05c80a755015855
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe7fe05c80a75501585d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe7fe05c80a75501585e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletass
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe7fe05c80a75501585f
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe7fe05c80a755015860
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788fe7fe05c80a755015862
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                          id: 6788fe7fe05c80a755015854
                          location_additional_data: {}
                          name: org.alcobendas 2 6788fe7f6fa3d3.89895977
                          type: city
                          visible_name: >-
                            Alcobendas 66f55e93e28e50.95622604
                            6788fe7f6fa465.61898122
                          position:
                            address_string: >-
                              C. Clz8 G17 María Teresa, 8, 28108 Alcobendas,
                              Madrid, Spain
                            lat: 40.537075706835
                            long: -3.6352928421438
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788feb7f9371c00d10b1b93
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788feb7f9371c00d10b1b9b
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788feb7f9371c00d10b1b9c
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788feb7f9371c00d10b1b9d
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788feb7f9371c00d10b1b9e
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 6788feb7f9371c00d10b1ba0
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                          id: 6788feb7f9371c00d10b1b92
                          location_additional_data: {}
                          name: org.alcobendass 6788feb77346e1.9556351oo
                          type: city
                          visible_name: Alcobendas 6788feb7734735.49508202
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 6788ff26890a3779c2073ca7
                          name: vbcb
                          type: building
                          visible_name: bcvbcv
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 6788ff3df9371c00d10b1ba3
                          name: zxczxcxz
                          type: building
                          visible_name: xcxzcxz
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 678abbbde8f9deafd60f708e
                          name: fdgdfgdfg
                          type: city
                          visible_name: fgdfg
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678e5cd089f0c939082671.png
                          id: 678e5cd054203c217a055dc6
                          name: nestor
                          type: building
                          visible_name: testNestor
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b47abce50676616067.png
                          id: 67b4b47b42839b62430b8483
                          name: jurisdictionElement prueba
                          type: building
                          visible_name: prueba jurisdictionElement
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b51484af1723070026.png
                          id: 67b4b51572ed11bc700c2824
                          name: prueba 1
                          type: city
                          visible_name: prueba 1
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.6664793853892252
                            - 40.531531171052336
                            - -3.6064955047159155
                            - 40.56840696769418
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67e890bb58e39372179361.png
                          id: 67c6f7e7af404fd6bc04f153
                          name: Alcobendas 1 subproyecto
                          type: city
                          visible_name: Alcobendas 1 subproyecto
                          position:
                            address_string: >-
                              P.º de la Chopera, 2, 28100 Alcobendas, Madrid,
                              Spain
                            lat: 40.5375258
                            long: -3.6371678
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 67d197cde42d705904084ce3
                          name: preuab2
                          type: city
                          visible_name: pruebaaaa
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 67d19967a06bdf23380a9a76
                          name: prueba1
                          type: city
                          visible_name: crack
                          position:
                            address_string: >-
                              canino Canterac Park, C. Canterac, 28B, 47013
                              Valladolid, Spain
                            lat: 41.638658052263
                            long: -4.7141842143906
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 67d42f3d0f0b22f66907dbec
                          name: prueba3
                          type: building
                          visible_name: dasdasdasd
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 67d4549cc0c8e0cbca03a8f3
                          name: joseprueba
                          type: building
                          visible_name: jose
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67d455457febe717149554.png
                          id: 67d45545a906d3ff900946b5
                          name: crackfut
                          type: building
                          visible_name: crackmes
                          position: {}
                          is_main: false
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67e7425479962014f00e34e3
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Alc_Distritos
                              name: Distritos
                              description: Distritos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67e7425479962014f00e34eb
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                              name: Aparcapatinetes
                              description: Aparcapatinetes
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67e7425479962014f00e34ec
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcabicicletas
                              level: 8
                              map_layer_icon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                              name: Aparcabicicletas
                              description: Aparcabicicletas
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                              mapLayerIcon: >-
                                https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67e7425479962014f00e34ed
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                              name: Aparcamientos (PMR)
                              description: Aparcamientos (PMR)
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67e7425479962014f00e34ee
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_puntos_recarga
                              name: Puntos de Recarga
                              description: Puntos de Recarga
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 67e7425479962014f00e34f0
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:alcobendas_poi_aparcapatinetes
                              name: MAINTENANCE PRUEBA
                              description: MAINTENANCE PRUEBA
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: MAINTENANCE ASSET
                          extent:
                            - -3.70038574
                            - 40.50117283
                            - -3.55027416
                            - 40.58886137
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/689afb53e097c133825380.png
                          id: 67e7425479962014f00e34e2
                          location_additional_data: {}
                          name: org.alcobendas 67e74254a71995.25767502
                          type: building
                          visible_name: Alcobendas 67e74254a719f4.11715944
                          is_main: true
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 67e7467679962014f00e34f3
                          name: Alcobendas 1 subproyecto 67e74676ee0f33.56206097
                          type: city
                          visible_name: Alcobendas 1 subproyecto 67e74676ee0f91.76578534
                          position:
                            address_string: >-
                              P.º de la Chopera, 2, 28100 Alcobendas, Madrid,
                              Spain
                            lat: 40.5375258
                            long: -3.6371678
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6c2cd32a22461808825.png
                          id: 67f6c29287bcd0a4720254ca
                          name: QA Externo
                          type: building
                          visible_name: QA
                          position:
                            address_string: >-
                              Av. de los Montes de Oca, 14, 28703 San Sebastián
                              de los Reyes, Madrid, Spain
                            lat: 40.551773662072
                            long: -3.6149869900721
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.6364172109596353
                            - 40.53630460226685
                            - -3.6354953216164216
                            - 40.5367605591301
                          guided_module: false
                          id: 68a89596da168ede230eae43
                          name: prueba palomino
                          type: building
                          visible_name: prueba palomino
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.636484806398722
                            - 40.5361976274601
                            - -3.6349743395421803
                            - 40.53675343031418
                          guided_module: false
                          id: 68a8d218e05a6efce8071d84
                          name: palominoo
                          type: city
                          visible_name: palomino
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.6264635364355704
                            - 40.54572226159695
                            - -3.6256815675974927
                            - 40.54624886263457
                          guided_module: false
                          id: 68dd31d10cc6fbfdba0e4973
                          name: prueba_principal
                          type: city
                          visible_name: principal de prueba
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.6286929719797625
                            - 40.5437731040285
                            - -3.6280609025671957
                            - 40.54414322936694
                          guided_module: false
                          id: 68dd339197d82fed2001cc33
                          name: prueba_#
                          type: city
                          visible_name: prueba
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.633987562442894
                            - 40.536512105867445
                            - -3.6329365753912812
                            - 40.53708537841831
                          guided_module: false
                          id: 68dd34790a583c63c9026a84
                          name: para_otra_prueba
                          type: city
                          visible_name: para otra pueba
                          position: {}
                          is_main: false
                      jurisdiction_id: org.alcobendas
                      key_name: Alcobendas, Madrid
                      locales:
                        - en
                        - es
                      name: Alcobendas
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17715
                          options: []
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 59c3ad5e626fae16048b4567
                          options:
                            - internal
                            - inperson
                        - id: 5fd0d60b00674b94038b456b
                          options:
                            - android
                            - ios
                            - facebook
                            - twitter
                            - inperson
                            - web_channel
                            - internal
                            - email
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                      lat: 40.5367233
                      long: -3.6370633
                      tags:
                        - name: Alcobendas
                          color: '#0271b8'
                          id: Alcobendas
                        - name: Cultura
                          color: '#000000'
                          id: Cultura
                        - name: Entretenimiento
                          color: '#000000'
                          id: Entretenimiento
                        - name: Social
                          color: '#000000'
                          id: Social
                        - name: Deportes
                          color: '#000000'
                          id: Deportes
                        - name: TACA
                          color: '#000000'
                          id: TACA
                        - name: Teatro
                          color: '#000000'
                          id: Teatro
                        - name: Ayuntamiento
                          color: '#000000'
                          id: Ayuntamiento
                        - name: Trámites
                          color: '#000000'
                          id: Trámites
                        - name: censo
                          color: '#000000'
                          id: censo
                        - name: consulta
                          color: '#000000'
                          id: consulta
                        - name: electoral
                          color: '#000000'
                          id: electoral
                        - name: elecciones
                          color: '#000000'
                          id: elecciones
                        - name: contrato,
                          color: '#000000'
                          id: contrato,
                        - name: bolsa,empleo,
                          color: '#000000'
                          id: bolsa,empleo,
                        - name: >-
                            movilidad, transporte, desplazamiento, coche,
                            autobús, metro, tren, patinete, bicicleta, car,
                          color: '#000000'
                          id: >-
                            movilidad, transporte, desplazamiento, coche,
                            autobús, metro, tren, patinete, bicicleta, car,
                        - name: Rutas biosaludables
                          color: '#000000'
                          id: Rutas biosaludables
                        - name: ruta, nadar, bici,
                          color: '#000000'
                          id: ruta, nadar, bici,
                        - name: Alumbrado
                          color: '#000000'
                          id: Alumbrado
                        - name: armarios de alumbrado
                          color: '#000000'
                          id: armarios de alumbrado
                        - name: adsa
                          color: '#000000'
                          id: adsa
                        - name: et
                          color: '#000000'
                          id: et
                        - name: noticias
                          color: '#000000'
                          id: noticias
                        - name: dadasda
                          color: '#000000'
                          id: dadasda
                        - name: 'no'
                          color: '#000000'
                          id: 'no'
                      third_emails:
                        - comentarios.alcobendas@mejoratuciudad.org
                      timezone: Europe/Madrid
                      typologies:
                        - id: 5850dca2e22c6d9f51b00c0f
                          color: '#ebc113'
                          description_legend: 'Ej: farola fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: Tengo un problema con un elemento en la calle
                          visible_name: Aviso
                          with_authorized_users: true
                          with_description: true
                          with_files: true
                          with_geolocation_data: true
                          with_medias: true
                          with_temporality_data: true
                      typology_nodes:
                        - id: 5850dca2e22c6d9f51b00c59
                          color: '#f1c40f'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Nuevo
                        - id: 64ac2229512893e6a20abfb2
                          color: '#ff0000'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Prueba
                        - id: 6183cd316ac0f4001e8b4573
                          color: '#337ab7'
                          order: 0
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En ejecución
                        - id: 62137c48dc539fcf0d8b4567
                          color: '#337ab7'
                          order: 1
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: No Solucionado
                        - id: 6183d57e6ac0f4021e8b4589
                          color: '#b290e0'
                          order: 1
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 59c3693622a293ad018b45d1
                          color: '#b39ddb'
                          order: 10
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En consulta
                        - id: 6183cd683c69dc091e8b4593
                          color: '#ef6c00'
                          order: 10
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte validar ejecución
                        - id: 62137d02648cf0e70d8b456e
                          color: '#ef6c00'
                          order: 10
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte Validar Solucionado
                        - id: 5850dca2e22c6d9f51b00c5a
                          color: '#0c98f5'
                          order: 20
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En ejecución
                        - id: 6183cddb8baf53bc208b4599
                          color: '#e91e63'
                          order: 20
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 6038dd859c1bc3f1088b45d2
                          color: '#084a87'
                          order: 25
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Pte validar ejecución
                        - id: 59c36970626faeab018b456c
                          color: '#993399'
                          order: 30
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Consultado
                        - id: 6183cce0d27499861d8b4567
                          color: '#33691e'
                          order: 30
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En consulta
                        - id: 5850dca2e22c6d9f51b00c5b
                          color: '#21618c'
                          order: 40
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Resuelto
                        - id: 59c36995626fae09028b456c
                          color: '#3abdaa'
                          order: 50
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Devuelto
                        - id: 6183ce11390a87c71e8b4567
                          color: '#486634'
                          order: 50
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 59c3724d22a293ab018b45cd
                          color: '#8cbc2d'
                          order: 60
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Validado
                        - id: 5850dca2e22c6d9f51b00c5d
                          color: '#d35400'
                          order: 70
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Rechazado
                        - id: 6183ce283c69dc0d1e8b4567
                          color: '#b71b1c'
                          order: 70
                          typology:
                            id: 6183cc553c69dc0b1e8b4572
                            color: '#6c8ce0'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                            location_type: geolocation
                            order: 2
                            public: false
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 59c369576b53f325138b4571
                          color: '#b71b1c'
                          order: 100
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Cancelado
                        - id: 5850dca2e22c6d9f51b00c5c
                          color: '#2e7d32'
                          order: 110
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Solucionado
                        - id: 650328c7f946773c920854d2
                          color: '#66a5db'
                          order: 115
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Pendiente de planificar
                        - id: 601937683dfd4806068b4568
                          color: '#978c8c'
                          order: 120
                          typology:
                            id: 5850dca2e22c6d9f51b00c0f
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Planificado en ejecución
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: true
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: true
                          field: id_document
                        - available: true
                          field: gender
                        - available: true
                          field: birthday
                        - available: true
                          field: addresses
                        - available: true
                          field: address
                        - available: true
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: true
                        service_survey: true
                        alerts: true
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: true
                        planning: true
                        users: true
                        predetermined_response: true
                        predetermined_response_external_source: true
                        company_enquiry: true
                        layer: true
                        jurisdiction_element: true
                        webhook: true
                        user_guide: true
                        worklog: true
                        calendar: true
                      app_urls:
                        web_url: https://mapa-canary.mejoratuciudad.org/
                        google_play_manager: >-
                          https://play.google.com/store/apps/details?id=com.radmas.iycp.production
                        google_play_citizens: >-
                          https://play.google.com/store/apps/details?id=com.alcobendas.ayuntamiento
                        app_store: https://apps.apple.com/app/id1309506191
                    - only_registered_users: true
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7bfde2efef4018b4570
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Gua_MX_7Z_Trabajo
                          name: 7-Z Trabajo
                          description: 7-Z Trabajo
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: WORK
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5ee08c7b7f2473c60c8b4568
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Gua_MX_Distritos_2
                          name: Distritos
                          description: Distritos
                          preset: true
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5ee091edbc8905cc0c8b4588
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Gua_MX_Colonias
                          name: Colonias
                          description: Colonias
                          preset: true
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5cb6e8833f960e8b457a
                          name: Gestores Avisos
                        - external: false
                          id: 5e2f5d2101394ad80d8b45f5
                          name: Técnicos Avisos
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5e5f8c5e3b5399d7048b45ee
                          name: Gestores de la plataforma
                        - external: false
                          id: 5e73bd8502be88c10f8b4568
                          name: Comunicación
                        - external: false
                          id: 5e94d7c102be88f82b8b4575
                          name: Supervisores Avisos
                        - external: false
                          id: 5ec3e7299094c891038b4583
                          name: Creadores Avisos
                        - external: false
                          id: 5f05cb27265b64fb018b456b
                          name: Consultor Avisos
                        - external: false
                          id: 6102c4756aa4f784108b4587
                          name: Supervisores Mediación
                        - external: false
                          id: 6102c49091d51304108b4572
                          name: Supervisores Juzgados
                        - external: false
                          id: 6116bf2c69819736098b4588
                          name: Gestores Avisos Empresa
                        - external: false
                          id: 6116d0d45fc66aa7088b4586
                          name: Coordinación Servicios Municipales
                        - external: false
                          id: 6116d8625fc66aab088b458f
                          name: Patrullas
                        - external: false
                          id: 6116d8788fc7c77d098b4592
                          name: Técnicos Juzgados
                        - external: false
                          id: 6116d8848fc7c779098b457e
                          name: Técnicos Mediación
                        - external: false
                          id: 6116d92a5fc66ab4088b4567
                          name: Gestores Avisos C5
                        - external: false
                          id: 6116da8f8fc7c785098b4575
                          name: Gestores Juzgados
                        - external: false
                          id: 6116dad48bec50c9088b4567
                          name: Gestores Mediación
                        - external: false
                          id: 6116e3b597366e68098b4568
                          name: Oficina Digital
                        - external: false
                          id: 6116e69f9744510f098b4577
                          name: Participación Ciudadana
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      company_emails:
                        - comentarios.ciudappguadalajara@mejoratuciudad.org
                      geo_bound:
                        - lat: 20.752655462
                          long: -103.263761708
                        - lat: 20.604872631
                          long: -103.406618585
                      geo_perimeter:
                        - lat: 20.750980738
                          long: -103.311643815
                        - lat: 20.747673354
                          long: -103.306784985
                        - lat: 20.744932292
                          long: -103.302291723
                        - lat: 20.741553631
                          long: -103.295433585
                        - lat: 20.739001169
                          long: -103.291411862
                        - lat: 20.736653215
                          long: -103.285992262
                        - lat: 20.732463877
                          long: -103.284862708
                        - lat: 20.730311185
                          long: -103.283261769
                        - lat: 20.726877523
                          long: -103.280764262
                        - lat: 20.724155231
                          long: -103.279715462
                        - lat: 20.721216369
                          long: -103.280558631
                        - lat: 20.719639908
                          long: -103.280331585
                        - lat: 20.717312431
                          long: -103.277860415
                        - lat: 20.715081385
                          long: -103.276817492
                        - lat: 20.712365015
                          long: -103.275162508
                        - lat: 20.710382846
                          long: -103.273300492
                        - lat: 20.708499785
                          long: -103.271333446
                        - lat: 20.707016369
                          long: -103.269010138
                        - lat: 20.706186123
                          long: -103.266596046
                        - lat: 20.705121138
                          long: -103.265991123
                        - lat: 20.704184246
                          long: -103.2674216
                        - lat: 20.7029538
                          long: -103.267771985
                        - lat: 20.702301692
                          long: -103.268061677
                        - lat: 20.7012432
                          long: -103.268328662
                        - lat: 20.700565969
                          long: -103.268391508
                        - lat: 20.69987
                          long: -103.268946
                        - lat: 20.698521615
                          long: -103.269293
                        - lat: 20.697396354
                          long: -103.270222785
                        - lat: 20.6965778
                          long: -103.270233046
                        - lat: 20.695594354
                          long: -103.270392769
                        - lat: 20.694800231
                          long: -103.2697738
                        - lat: 20.6936462
                          long: -103.269984231
                        - lat: 20.692001769
                          long: -103.270335492
                        - lat: 20.690461938
                          long: -103.2706148
                        - lat: 20.688405492
                          long: -103.269339508
                        - lat: 20.686746446
                          long: -103.268944523
                        - lat: 20.684826308
                          long: -103.268387308
                        - lat: 20.683300538
                          long: -103.267940108
                        - lat: 20.682082015
                          long: -103.267567769
                        - lat: 20.681855738
                          long: -103.266445862
                        - lat: 20.681320492
                          long: -103.2673428
                        - lat: 20.680583062
                          long: -103.267549292
                        - lat: 20.680219585
                          long: -103.267267985
                        - lat: 20.679678508
                          long: -103.267291708
                        - lat: 20.679137385
                          long: -103.267711031
                        - lat: 20.6770238
                          long: -103.267557862
                        - lat: 20.676894738
                          long: -103.266468969
                        - lat: 20.675449292
                          long: -103.264699169
                        - lat: 20.673538046
                          long: -103.264543692
                        - lat: 20.670489308
                          long: -103.2641538
                        - lat: 20.668778077
                          long: -103.263761708
                        - lat: 20.667499477
                          long: -103.264401231
                        - lat: 20.664410615
                          long: -103.267564354
                        - lat: 20.6610208
                          long: -103.267884523
                        - lat: 20.659316338
                          long: -103.267913862
                        - lat: 20.657227923
                          long: -103.267523954
                        - lat: 20.655150492
                          long: -103.267430292
                        - lat: 20.653669631
                          long: -103.268691585
                        - lat: 20.650840892
                          long: -103.269597369
                        - lat: 20.6490392
                          long: -103.270087615
                        - lat: 20.647952554
                          long: -103.2701218
                        - lat: 20.646320862
                          long: -103.270126985
                        - lat: 20.645063354
                          long: -103.270077015
                        - lat: 20.645869723
                          long: -103.272292477
                        - lat: 20.645945185
                          long: -103.272931323
                        - lat: 20.645619523
                          long: -103.273254262
                        - lat: 20.645413877
                          long: -103.273526646
                        - lat: 20.6452724
                          long: -103.273946262
                        - lat: 20.6450982
                          long: -103.274387123
                        - lat: 20.644894323
                          long: -103.274671277
                        - lat: 20.644604646
                          long: -103.274918385
                        - lat: 20.644398738
                          long: -103.2751014
                        - lat: 20.644171538
                          long: -103.275399815
                        - lat: 20.644027108
                          long: -103.275906585
                        - lat: 20.643946277
                          long: -103.276625492
                        - lat: 20.643912169
                          long: -103.277487262
                        - lat: 20.643509
                          long: -103.278149169
                        - lat: 20.643100985
                          long: -103.278585508
                        - lat: 20.642750477
                          long: -103.279001169
                        - lat: 20.641099754
                          long: -103.280666462
                        - lat: 20.6413308
                          long: -103.283985277
                        - lat: 20.641459569
                          long: -103.286750338
                        - lat: 20.6415294
                          long: -103.287982831
                        - lat: 20.6420178
                          long: -103.291474754
                        - lat: 20.642354862
                          long: -103.292455431
                        - lat: 20.642931831
                          long: -103.298307123
                        - lat: 20.6435124
                          long: -103.303726246
                        - lat: 20.643875708
                          long: -103.307738308
                        - lat: 20.644103262
                          long: -103.310319692
                        - lat: 20.6460222
                          long: -103.311233015
                        - lat: 20.646219431
                          long: -103.314951677
                        - lat: 20.645726677
                          long: -103.317863354
                        - lat: 20.6453472
                          long: -103.320009569
                        - lat: 20.642982046
                          long: -103.318242815
                        - lat: 20.641491662
                          long: -103.318823892
                        - lat: 20.638354415
                          long: -103.318718262
                        - lat: 20.635283123
                          long: -103.319782615
                        - lat: 20.632802323
                          long: -103.320031154
                        - lat: 20.631354738
                          long: -103.320657446
                        - lat: 20.629592862
                          long: -103.321973677
                        - lat: 20.626640508
                          long: -103.324304446
                        - lat: 20.6251588
                          long: -103.323474185
                        - lat: 20.624543231
                          long: -103.323837308
                        - lat: 20.626424123
                          long: -103.324623831
                        - lat: 20.626559477
                          long: -103.326957538
                        - lat: 20.625271385
                          long: -103.330924385
                        - lat: 20.623815185
                          long: -103.331455508
                        - lat: 20.623176985
                          long: -103.332442369
                        - lat: 20.621780923
                          long: -103.331974323
                        - lat: 20.620544831
                          long: -103.329592231
                        - lat: 20.617360923
                          long: -103.331126677
                        - lat: 20.615559785
                          long: -103.333384708
                        - lat: 20.6129778
                          long: -103.335801262
                        - lat: 20.614791154
                          long: -103.339325908
                        - lat: 20.612089292
                          long: -103.339795985
                        - lat: 20.609168662
                          long: -103.341374554
                        - lat: 20.609048108
                          long: -103.342632077
                        - lat: 20.608462477
                          long: -103.345730185
                        - lat: 20.609475385
                          long: -103.346703292
                        - lat: 20.610895508
                          long: -103.346970969
                        - lat: 20.611867154
                          long: -103.348646585
                        - lat: 20.613113
                          long: -103.350520754
                        - lat: 20.613828815
                          long: -103.350485415
                        - lat: 20.6142882
                          long: -103.350451462
                        - lat: 20.615071462
                          long: -103.352508169
                        - lat: 20.614197354
                          long: -103.353131908
                        - lat: 20.613860938
                          long: -103.353493446
                        - lat: 20.613789969
                          long: -103.354740846
                        - lat: 20.611762646
                          long: -103.354971738
                        - lat: 20.611894523
                          long: -103.357216031
                        - lat: 20.612148308
                          long: -103.365222231
                        - lat: 20.611921569
                          long: -103.366866631
                        - lat: 20.610984985
                          long: -103.367948954
                        - lat: 20.610950062
                          long: -103.369539508
                        - lat: 20.6117074
                          long: -103.370741123
                        - lat: 20.612041323
                          long: -103.372155662
                        - lat: 20.612251431
                          long: -103.372954262
                        - lat: 20.612552477
                          long: -103.3739984
                        - lat: 20.611743477
                          long: -103.375550477
                        - lat: 20.609950231
                          long: -103.377118369
                        - lat: 20.609787492
                          long: -103.379936262
                        - lat: 20.610029523
                          long: -103.381246738
                        - lat: 20.610784215
                          long: -103.382938277
                        - lat: 20.607265323
                          long: -103.385817892
                        - lat: 20.604872631
                          long: -103.389226785
                        - lat: 20.606930646
                          long: -103.3885568
                        - lat: 20.611921108
                          long: -103.389317723
                        - lat: 20.613004308
                          long: -103.389731554
                        - lat: 20.612858215
                          long: -103.390484569
                        - lat: 20.612427369
                          long: -103.391786846
                        - lat: 20.612051677
                          long: -103.392613385
                        - lat: 20.611495554
                          long: -103.394466846
                        - lat: 20.612985969
                          long: -103.395747277
                        - lat: 20.614823862
                          long: -103.394791538
                        - lat: 20.618216062
                          long: -103.392087462
                        - lat: 20.6215128
                          long: -103.3910684
                        - lat: 20.624263215
                          long: -103.395646323
                        - lat: 20.625250431
                          long: -103.397305262
                        - lat: 20.627399292
                          long: -103.398753123
                        - lat: 20.629590662
                          long: -103.398183077
                        - lat: 20.631427477
                          long: -103.397644062
                        - lat: 20.632820862
                          long: -103.397272923
                        - lat: 20.634903908
                          long: -103.395995969
                        - lat: 20.636013215
                          long: -103.396244815
                        - lat: 20.637341246
                          long: -103.397036677
                        - lat: 20.639689215
                          long: -103.396188954
                        - lat: 20.642170862
                          long: -103.395121846
                        - lat: 20.6420072
                          long: -103.396294215
                        - lat: 20.642526846
                          long: -103.399241031
                        - lat: 20.645112708
                          long: -103.398716446
                        - lat: 20.648955338
                          long: -103.398363431
                        - lat: 20.652753923
                          long: -103.395266215
                        - lat: 20.657019769
                          long: -103.398341954
                        - lat: 20.659905785
                          long: -103.398147908
                        - lat: 20.663431
                          long: -103.401403538
                        - lat: 20.665961692
                          long: -103.402111338
                        - lat: 20.666421615
                          long: -103.402041831
                        - lat: 20.666857354
                          long: -103.402468169
                        - lat: 20.667818385
                          long: -103.402559092
                        - lat: 20.669981215
                          long: -103.401200169
                        - lat: 20.671393738
                          long: -103.399980615
                        - lat: 20.6729078
                          long: -103.399948031
                        - lat: 20.674622892
                          long: -103.401448338
                        - lat: 20.677944908
                          long: -103.403614446
                        - lat: 20.680884123
                          long: -103.403618277
                        - lat: 20.681321723
                          long: -103.401915923
                        - lat: 20.681595615
                          long: -103.401485138
                        - lat: 20.683904708
                          long: -103.401025892
                        - lat: 20.687590938
                          long: -103.400385077
                        - lat: 20.689972969
                          long: -103.398472785
                        - lat: 20.691010969
                          long: -103.398460508
                        - lat: 20.691768154
                          long: -103.400800046
                        - lat: 20.691082754
                          long: -103.403053938
                        - lat: 20.691942969
                          long: -103.403510831
                        - lat: 20.693024585
                          long: -103.404676
                        - lat: 20.694220369
                          long: -103.402247646
                        - lat: 20.695095785
                          long: -103.402516692
                        - lat: 20.697802354
                          long: -103.399881462
                        - lat: 20.699113554
                          long: -103.399448092
                        - lat: 20.699522031
                          long: -103.400285215
                        - lat: 20.699234754
                          long: -103.401190523
                        - lat: 20.699726523
                          long: -103.4018024
                        - lat: 20.700988708
                          long: -103.401878154
                        - lat: 20.703258908
                          long: -103.402819538
                        - lat: 20.706130492
                          long: -103.404261877
                        - lat: 20.708836138
                          long: -103.406267831
                        - lat: 20.711306723
                          long: -103.406618585
                        - lat: 20.712173585
                          long: -103.405153831
                        - lat: 20.711181569
                          long: -103.401880954
                        - lat: 20.712129677
                          long: -103.395085154
                        - lat: 20.710660215
                          long: -103.393020385
                        - lat: 20.709967708
                          long: -103.388343908
                        - lat: 20.711155708
                          long: -103.382422031
                        - lat: 20.7115596
                          long: -103.377959785
                        - lat: 20.713127846
                          long: -103.374246677
                        - lat: 20.713895969
                          long: -103.371264662
                        - lat: 20.713295369
                          long: -103.369474508
                        - lat: 20.713067262
                          long: -103.365658046
                        - lat: 20.712858677
                          long: -103.362422431
                        - lat: 20.713278385
                          long: -103.361058508
                        - lat: 20.714079031
                          long: -103.358456892
                        - lat: 20.715362508
                          long: -103.356676031
                        - lat: 20.715419185
                          long: -103.354469477
                        - lat: 20.715343477
                          long: -103.352996723
                        - lat: 20.7167344
                          long: -103.350187338
                        - lat: 20.717228538
                          long: -103.347622262
                        - lat: 20.7162892
                          long: -103.346413692
                        - lat: 20.716277385
                          long: -103.344989077
                        - lat: 20.716918785
                          long: -103.344099662
                        - lat: 20.717862569
                          long: -103.343577446
                        - lat: 20.719096277
                          long: -103.343229308
                        - lat: 20.719412062
                          long: -103.342253015
                        - lat: 20.719961769
                          long: -103.341452708
                        - lat: 20.720823
                          long: -103.341467862
                        - lat: 20.721665554
                          long: -103.341500631
                        - lat: 20.722272769
                          long: -103.340998631
                        - lat: 20.723849923
                          long: -103.339566169
                        - lat: 20.724333631
                          long: -103.337912185
                        - lat: 20.724885354
                          long: -103.336412815
                        - lat: 20.725478385
                          long: -103.335378231
                        - lat: 20.727060615
                          long: -103.334680385
                        - lat: 20.727950585
                          long: -103.334749615
                        - lat: 20.728056646
                          long: -103.333739169
                        - lat: 20.727641046
                          long: -103.333241754
                        - lat: 20.728190846
                          long: -103.332363262
                        - lat: 20.728645985
                          long: -103.3308196
                        - lat: 20.729854569
                          long: -103.329619462
                        - lat: 20.7317938
                          long: -103.328748446
                        - lat: 20.736951508
                          long: -103.324304431
                        - lat: 20.743419862
                          long: -103.326124062
                        - lat: 20.744798538
                          long: -103.3267192
                        - lat: 20.746104646
                          long: -103.324193846
                        - lat: 20.746683092
                          long: -103.323160646
                        - lat: 20.747762138
                          long: -103.321815585
                        - lat: 20.7476208
                          long: -103.320085308
                        - lat: 20.748521554
                          long: -103.318716985
                        - lat: 20.749407615
                          long: -103.317095738
                        - lat: 20.750783385
                          long: -103.314482031
                        - lat: 20.751320123
                          long: -103.313254677
                        - lat: 20.752655462
                          long: -103.312346569
                        - lat: 20.750980738
                          long: -103.311643815
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/56968dfe929a7.png
                      id: 5644c5816aa918ea028b4797
                      jurisdiction_elements:
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5d9ee7bfde2efef4018b4570
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Gua_MX_7Z_Trabajo
                              name: 7-Z Trabajo
                              description: 7-Z Trabajo
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: WORK
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5ee08c7b7f2473c60c8b4568
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Gua_MX_Distritos_2
                              name: Distritos
                              description: Distritos
                              preset: true
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5ee091edbc8905cc0c8b4588
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Gua_MX_Colonias
                              name: Colonias
                              description: Colonias
                              preset: true
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                          extent:
                            - -103.406618585
                            - 20.604872631
                            - -103.263761708
                            - 20.752655462
                          id: 5c9b55599650e67d42985e81
                          location_additional_data: {}
                          name: mx.guadalajara
                          type: city
                          visible_name: Guadalajara
                          is_main: false
                      jurisdiction_id: mx.guadalajara
                      key_name: Guadalajara, Jal., México
                      locales:
                        - es_MX
                      name: Ciudapp Guadalajara
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17716
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b17720
                          options: []
                        - id: 5850de88e22c6d9f51b17721
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                      lat: 20.6598119
                      long: -103.3495576
                      tags:
                        - name: Cultura
                          color: '#000000'
                          id: Cultura
                        - name: Entretenimiento
                          color: '#000000'
                          id: Entretenimiento
                        - name: Deportes
                          color: '#000000'
                          id: Deportes
                        - name: Social
                          color: '#000000'
                          id: Social
                        - name: General
                          color: '#000000'
                          id: General
                        - name: Dependencias
                          color: '#00bcd4'
                          id: Dependencias
                        - name: Ciudadano
                          color: '#9e9e9e'
                          id: Ciudadano
                        - name: Turismo
                          color: '#880e4f'
                          id: Turismo
                        - name: Juventud
                          color: '#ad1457'
                          id: Juventud
                      timezone: America/Mexico_City
                      typologies:
                        - id: 5850dca2e22c6d9f51b00c10
                          color: '#ebc113'
                          description_legend: 'Ej: farola fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: Tengo un problema con un elemento de la ciudad
                          visible_name: Aviso
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                      typology_nodes:
                        - id: 5850dca2e22c6d9f51b00c5e
                          color: '#f1c40f'
                          order: 1
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5b3505822dbc34bc038b458d
                          color: '#c12c22'
                          order: 1
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Acción Urgente
                        - id: 59a3fd52b9f93c11168b457c
                          color: '#b39ddb'
                          order: 2
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. de Consultar
                        - id: 5b3505af8ec5419e088b459c
                          color: '#7d7575'
                          order: 2
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Planificado en Progreso
                        - id: 59a3fd6c0b2be16d158b456a
                          color: '#993399'
                          order: 3
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultado
                        - id: 5b3551b18ec541ce098b45d2
                          color: '#469be3'
                          order: 3
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En Progreso
                        - id: 5850dca2e22c6d9f51b00c5f
                          color: '#0c98f5'
                          order: 4
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En Ejecución
                        - id: 5b35522cd1e8c5e4048b45d5
                          color: '#55dff2'
                          order: 4
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Devuelto
                        - id: 5850dca2e22c6d9f51b00c60
                          color: '#21618c'
                          order: 5
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Validar Ejecución
                        - id: 5b3552798ec541250a8b4567
                          color: '#3732f0'
                          order: 5
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Resuelto
                        - id: 59a3fd9ad6ca40cd168b4567
                          color: '#347871'
                          order: 6
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 5b3552b08ec541a3098b45fa
                          color: '#f5ac22'
                          order: 6
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Rechazado
                        - id: 59a3fdec0b2be16c158b456b
                          color: '#8cbc2d'
                          order: 7
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Solucionado
                        - id: 5b3552e92dbc34ab048b45e8
                          color: '#a9cc76'
                          order: 7
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Validado
                        - id: 5850dca2e22c6d9f51b00c62
                          color: '#e30000'
                          order: 8
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 5b362178d59359b3018b46a1
                          color: '#33691e'
                          order: 8
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Solucionado
                        - id: 59a3fdfd19f8815f158b4572
                          color: '#ea8b3f'
                          order: 9
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Cancelado
                        - id: 5b3621a30f3b7ca5018b46b1
                          color: '#b71b1c'
                          order: 9
                          typology:
                            id: 5b3505328ec5416f088b463c
                            color: '#0971ab'
                            description_legend: Reporta incidencias relacionadas con lluvias
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682bb9204.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Reporta cualquier problema relacionado con lluvias
                              como luminarias apagadas, árboles y ramas con
                              peligro de caída, cortocircuitos, vehículos
                              inundados...
                            visible_name: Temporada de lluvias
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Cancelado
                        - id: 5850dca2e22c6d9f51b00c61
                          color: '#2e7d32'
                          order: 10
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 59cb679eda4282514d8b457e
                          color: '#964848'
                          order: 11
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Acción Urgente
                        - id: 5f156effbde32e00068b458a
                          color: '#b38b8b'
                          order: 12
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificar Ejecución
                        - id: 5f156f33bde32e04068b4567
                          color: '#966262'
                          order: 13
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificado por Contingencias
                        - id: 5fda3e4bd5dc1bc1078b4575
                          color: '#b26eac'
                          order: 14
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultar por Contingencia
                        - id: 5fda3f23aeb54409088b4567
                          color: '#dcaaec'
                          order: 15
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultar por Causas Diversas
                        - id: 60fae97a5d66ce6e0c8b4567
                          color: '#2ce8ac'
                          order: 16
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Apercibimiento
                        - id: 60faea196aa4f791088b4567
                          color: '#a37b0a'
                          order: 17
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Procedimiento
                        - id: 60faeb856aa4f7b9088b4567
                          color: '#b4a7d6'
                          order: 18
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resolución
                        - id: 60faea86dfcbe6a10c8b4567
                          color: '#7d1f4f'
                          order: 19
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Citatorio
                        - id: 60faeda5dfcbe6dc0c8b4585
                          color: '#d108d1'
                          order: 20
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Juzgados
                        - id: 60faee85dfcbe6e50c8b456c
                          color: '#c27ba0'
                          order: 21
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Mediación
                        - id: 60faef35630b02790b8b4567
                          color: '#999999'
                          order: 22
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto C5
                        - id: 60ff3fec630b02ce0f8b457d
                          color: '#0b5394'
                          order: 23
                          typology:
                            id: 5850dca2e22c6d9f51b00c10
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682774bfa.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validar Comparecencia
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: true
                        service_survey: false
                        alerts: true
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: true
                        planning: false
                        users: false
                        predetermined_response: true
                        predetermined_response_external_source: false
                        company_enquiry: true
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: null
                        google_play_manager: null
                        google_play_citizens: null
                        app_store: null
                    - only_registered_users: true
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5de927dc0007544c098b4577
                          is_default: true
                          color: '#000000'
                          internal_name: zones_prod:Tlj_MX_Distritos_1
                          name: Distritos
                          description: Distritos
                          preset: true
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5de9282500075448098b459b
                          is_default: true
                          color: '#000000'
                          internal_name: zones_prod:Tlj_MX_Colonias_1
                          name: Colonias
                          description: Colonias
                          preset: true
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      max_export_requests: 10000
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5cb6e8833f960e8b457a
                          name: Gestores Avisos
                        - external: false
                          id: 5e2f5d2101394ad80d8b45f5
                          name: Técnicos Avisos
                        - external: true
                          id: 5e2f5d97e8833f980e8b456a
                          name: Atención Ciudadana 02
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5e5f8c5e3b5399d7048b45ee
                          name: Gestores de la plataforma
                        - external: false
                          id: 5e73bd8502be88c10f8b4568
                          name: Comunicación
                        - external: false
                          id: 5e94d7c102be88f82b8b4575
                          name: Supervisores Avisos
                        - external: false
                          id: 5ec3e7299094c891038b4583
                          name: Creadores Avisos
                        - external: false
                          id: 6116bf2c69819736098b4588
                          name: Gestores Avisos Empresa
                        - external: false
                          id: 6116d0d45fc66aa7088b4586
                          name: Coordinación Servicios Municipales
                        - external: false
                          id: 6116e3b597366e68098b4568
                          name: Oficina Digital
                        - external: false
                          id: 62990af6b332ddcb118b4580
                          name: Trámites
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: false
                          id: 651a3873cd5cbdd59909b8a1
                          name: Prueba QA
                        - external: true
                          id: 651a38cd921b21b108013003
                          name: Canal de prueba
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      company_emails:
                        - comentarios.tlajoapp@mejoratuciudad.org
                      geo_bound:
                        - lat: 20.60409367
                          long: -103.21871977
                        - lat: 20.36175362
                          long: -103.596558
                      geo_perimeter:
                        - lat: 20.53658856
                          long: -103.29477755
                        - lat: 20.53637072
                          long: -103.29462641
                        - lat: 20.5363448
                          long: -103.29460842
                        - lat: 20.53621389
                          long: -103.29444264
                        - lat: 20.5361348
                          long: -103.2944622
                        - lat: 20.53592882
                          long: -103.29413354
                        - lat: 20.53582402
                          long: -103.29356937
                        - lat: 20.53556545
                          long: -103.29217751
                        - lat: 20.53550307
                          long: -103.29187347
                        - lat: 20.53548315
                          long: -103.29177639
                        - lat: 20.53545634
                          long: -103.29164572
                        - lat: 20.53543727
                          long: -103.29155276
                        - lat: 20.53541193
                          long: -103.29147909
                        - lat: 20.53537766
                          long: -103.29137946
                        - lat: 20.53533537
                          long: -103.29125649
                        - lat: 20.53526979
                          long: -103.29106583
                        - lat: 20.53515392
                          long: -103.29072894
                        - lat: 20.5351005
                          long: -103.29057363
                        - lat: 20.5350963
                          long: -103.29055813
                        - lat: 20.53497038
                          long: -103.2901933
                        - lat: 20.53368986
                          long: -103.2864938
                        - lat: 20.53307286
                          long: -103.28471137
                        - lat: 20.53300657
                          long: -103.28451988
                        - lat: 20.53201286
                          long: -103.28164932
                        - lat: 20.53172132
                          long: -103.28080719
                        - lat: 20.53162238
                          long: -103.28052138
                        - lat: 20.5315484
                          long: -103.28026797
                        - lat: 20.53152955
                          long: -103.28019622
                        - lat: 20.53148129
                          long: -103.28001242
                        - lat: 20.5314211
                          long: -103.27975494
                        - lat: 20.53136788
                          long: -103.27949573
                        - lat: 20.53132169
                          long: -103.27923501
                        - lat: 20.53126398
                          long: -103.27842287
                        - lat: 20.53124937
                          long: -103.27821728
                        - lat: 20.53123769
                          long: -103.2780529
                        - lat: 20.53076592
                          long: -103.27648318
                        - lat: 20.5301864
                          long: -103.27575078
                        - lat: 20.53015815
                          long: -103.27571508
                        - lat: 20.52858567
                          long: -103.27453469
                        - lat: 20.52772565
                          long: -103.27358559
                        - lat: 20.52756587
                          long: -103.27340925
                        - lat: 20.52529509
                          long: -103.26963223
                        - lat: 20.52492268
                          long: -103.26926174
                        - lat: 20.52207016
                          long: -103.266424
                        - lat: 20.5218589
                          long: -103.26627695
                        - lat: 20.52171809
                          long: -103.26617894
                        - lat: 20.52115086
                          long: -103.26578414
                        - lat: 20.52031074
                          long: -103.26541413
                        - lat: 20.51960899
                          long: -103.26510507
                        - lat: 20.51970793
                          long: -103.26501695
                        - lat: 20.51968524
                          long: -103.26500694
                        - lat: 20.51955079
                          long: -103.26485002
                        - lat: 20.51929044
                          long: -103.26454615
                        - lat: 20.51766235
                          long: -103.26264595
                        - lat: 20.5175762
                          long: -103.2625453
                        - lat: 20.51594965
                          long: -103.26064465
                        - lat: 20.51497409
                          long: -103.25951083
                        - lat: 20.51488652
                          long: -103.25940906
                        - lat: 20.51225681
                          long: -103.25635288
                        - lat: 20.51216278
                          long: -103.2562436
                        - lat: 20.51118018
                          long: -103.25510169
                        - lat: 20.51078048
                          long: -103.25463446
                        - lat: 20.51072962
                          long: -103.25457501
                        - lat: 20.51064957
                          long: -103.25448143
                        - lat: 20.51062837
                          long: -103.25445665
                        - lat: 20.51061626
                          long: -103.25439575
                        - lat: 20.51061365
                          long: -103.25438433
                        - lat: 20.51060291
                          long: -103.25431029
                        - lat: 20.51059289
                          long: -103.25426245
                        - lat: 20.51057893
                          long: -103.25419578
                        - lat: 20.51057719
                          long: -103.25418746
                        - lat: 20.51057154
                          long: -103.25416051
                        - lat: 20.51056476
                          long: -103.25412811
                        - lat: 20.51055089
                          long: -103.25406189
                        - lat: 20.51053958
                          long: -103.25400784
                        - lat: 20.51052474
                          long: -103.25393842
                        - lat: 20.51051462
                          long: -103.25388768
                        - lat: 20.51051059
                          long: -103.25386748
                        - lat: 20.51050135
                          long: -103.25382116
                        - lat: 20.51049967
                          long: -103.25381273
                        - lat: 20.51049399
                          long: -103.2537851
                        - lat: 20.51048742
                          long: -103.25375316
                        - lat: 20.51047361
                          long: -103.25368602
                        - lat: 20.51046448
                          long: -103.25364164
                        - lat: 20.51046
                          long: -103.25363425
                        - lat: 20.5104456
                          long: -103.25354157
                        - lat: 20.51039025
                          long: -103.25326397
                        - lat: 20.51038211
                          long: -103.25322317
                        - lat: 20.51022246
                          long: -103.2524225
                        - lat: 20.5101007
                          long: -103.25222445
                        - lat: 20.51005725
                          long: -103.25215377
                        - lat: 20.50938826
                          long: -103.25106565
                        - lat: 20.50915639
                          long: -103.25107268
                        - lat: 20.50902959
                          long: -103.25107205
                        - lat: 20.50993102
                          long: -103.25071857
                        - lat: 20.50975547
                          long: -103.25008332
                        - lat: 20.50972831
                          long: -103.24998503
                        - lat: 20.50935972
                          long: -103.2486513
                        - lat: 20.50915599
                          long: -103.24791412
                        - lat: 20.50914139
                          long: -103.2478613
                        - lat: 20.50890331
                          long: -103.2470508
                        - lat: 20.50886608
                          long: -103.24704468
                        - lat: 20.50761667
                          long: -103.2468393
                        - lat: 20.50703085
                          long: -103.246743
                        - lat: 20.50694504
                          long: -103.24650554
                        - lat: 20.50703303
                          long: -103.24586419
                        - lat: 20.5068091
                          long: -103.2453524
                        - lat: 20.50662731
                          long: -103.24525433
                        - lat: 20.50660165
                          long: -103.24524048
                        - lat: 20.50616698
                          long: -103.24500597
                        - lat: 20.50587219
                          long: -103.24484218
                        - lat: 20.50582616
                          long: -103.2448166
                        - lat: 20.50582323
                          long: -103.24481577
                        - lat: 20.50508307
                          long: -103.24460574
                        - lat: 20.50503095
                          long: -103.24460579
                        - lat: 20.50469498
                          long: -103.24459281
                        - lat: 20.50460914
                          long: -103.24459899
                        - lat: 20.50432127
                          long: -103.24461972
                        - lat: 20.50364504
                          long: -103.24453325
                        - lat: 20.50360911
                          long: -103.24454362
                        - lat: 20.50357316
                          long: -103.24454808
                        - lat: 20.50352063
                          long: -103.24454813
                        - lat: 20.5034787
                          long: -103.24454659
                        - lat: 20.50342784
                          long: -103.2445354
                        - lat: 20.50340153
                          long: -103.24453168
                        - lat: 20.50336996
                          long: -103.24452235
                        - lat: 20.50333839
                          long: -103.24450741
                        - lat: 20.50330331
                          long: -103.24449059
                        - lat: 20.50327174
                          long: -103.24447377
                        - lat: 20.5032349
                          long: -103.24445321
                        - lat: 20.50319981
                          long: -103.24442517
                        - lat: 20.50316647
                          long: -103.24439899
                        - lat: 20.50313664
                          long: -103.24436719
                        - lat: 20.50309978
                          long: -103.24432604
                        - lat: 20.50307169
                          long: -103.24428114
                        - lat: 20.50304535
                          long: -103.24423623
                        - lat: 20.50302253
                          long: -103.24419507
                        - lat: 20.5030032
                          long: -103.24414455
                        - lat: 20.50298562
                          long: -103.24408279
                        - lat: 20.50297505
                          long: -103.24402476
                        - lat: 20.50297326
                          long: -103.24398545
                        - lat: 20.50296795
                          long: -103.24392436
                        - lat: 20.50297143
                          long: -103.24388879
                        - lat: 20.50297665
                          long: -103.24384011
                        - lat: 20.50298714
                          long: -103.24380079
                        - lat: 20.50309383
                          long: -103.24347496
                        - lat: 20.50311076
                          long: -103.24272439
                        - lat: 20.50228185
                          long: -103.24248742
                        - lat: 20.50219185
                          long: -103.24178487
                        - lat: 20.50148329
                          long: -103.24164554
                        - lat: 20.50130902
                          long: -103.24084253
                        - lat: 20.50106912
                          long: -103.24064858
                        - lat: 20.50091014
                          long: -103.24054569
                        - lat: 20.50078847
                          long: -103.2404665
                        - lat: 20.5006891
                          long: -103.24040183
                        - lat: 20.50058515
                          long: -103.24033417
                        - lat: 20.50058324
                          long: -103.24033323
                        - lat: 20.50037776
                          long: -103.24023216
                        - lat: 20.50018856
                          long: -103.24011295
                        - lat: 20.5000158
                          long: -103.23995661
                        - lat: 20.49950074
                          long: -103.23989327
                        - lat: 20.49881887
                          long: -103.23978594
                        - lat: 20.49790006
                          long: -103.24003049
                        - lat: 20.49727795
                          long: -103.24019606
                        - lat: 20.4972461
                          long: -103.24020454
                        - lat: 20.49692828
                          long: -103.2404645
                        - lat: 20.49678612
                          long: -103.24058077
                        - lat: 20.49675221
                          long: -103.24060852
                        - lat: 20.4966125
                          long: -103.24072279
                        - lat: 20.49660056
                          long: -103.24076515
                        - lat: 20.49653148
                          long: -103.24082147
                        - lat: 20.49632511
                          long: -103.24156229
                        - lat: 20.49594918
                          long: -103.24179953
                        - lat: 20.49577719
                          long: -103.24180519
                        - lat: 20.49540492
                          long: -103.24382807
                        - lat: 20.49288883
                          long: -103.24241427
                        - lat: 20.48901259
                          long: -103.23817089
                        - lat: 20.48801413
                          long: -103.23650009
                        - lat: 20.48001804
                          long: -103.23285622
                        - lat: 20.47469379
                          long: -103.23091521
                        - lat: 20.47232726
                          long: -103.22972763
                        - lat: 20.46322858
                          long: -103.22312874
                        - lat: 20.45686908
                          long: -103.21871977
                        - lat: 20.45650529
                          long: -103.22126537
                        - lat: 20.45153549
                          long: -103.24913239
                        - lat: 20.4317899
                          long: -103.24086229
                        - lat: 20.43168401
                          long: -103.24099894
                        - lat: 20.43167484
                          long: -103.24103254
                        - lat: 20.43167012
                          long: -103.24104983
                        - lat: 20.43163922
                          long: -103.24116312
                        - lat: 20.43161927
                          long: -103.24123201
                        - lat: 20.4316007
                          long: -103.24129614
                        - lat: 20.4315341
                          long: -103.24152614
                        - lat: 20.43150371
                          long: -103.24163107
                        - lat: 20.43150219
                          long: -103.24163631
                        - lat: 20.43143437
                          long: -103.24188414
                        - lat: 20.4314264
                          long: -103.24191326
                        - lat: 20.43141921
                          long: -103.24193953
                        - lat: 20.43140743
                          long: -103.24198258
                        - lat: 20.43135533
                          long: -103.24217295
                        - lat: 20.43132822
                          long: -103.242272
                        - lat: 20.43132759
                          long: -103.24227429
                        - lat: 20.43132504
                          long: -103.24228362
                        - lat: 20.43124333
                          long: -103.24257372
                        - lat: 20.43122482
                          long: -103.24263944
                        - lat: 20.43119238
                          long: -103.24275461
                        - lat: 20.43118799
                          long: -103.24277017
                        - lat: 20.43117462
                          long: -103.24281766
                        - lat: 20.43117235
                          long: -103.24282586
                        - lat: 20.43114487
                          long: -103.24292509
                        - lat: 20.43111124
                          long: -103.24304657
                        - lat: 20.43108811
                          long: -103.24312536
                        - lat: 20.43106647
                          long: -103.24319914
                        - lat: 20.43105429
                          long: -103.24324063
                        - lat: 20.43103074
                          long: -103.24332184
                        - lat: 20.43101069
                          long: -103.24339099
                        - lat: 20.43100685
                          long: -103.24340423
                        - lat: 20.43098273
                          long: -103.2434874
                        - lat: 20.43096596
                          long: -103.24354526
                        - lat: 20.43092132
                          long: -103.24370628
                        - lat: 20.43089474
                          long: -103.24380217
                        - lat: 20.4308563
                          long: -103.24394082
                        - lat: 20.43084591
                          long: -103.24397829
                        - lat: 20.43083364
                          long: -103.24402072
                        - lat: 20.43082128
                          long: -103.24406342
                        - lat: 20.43078901
                          long: -103.24417497
                        - lat: 20.43075738
                          long: -103.24428432
                        - lat: 20.43073247
                          long: -103.2443704
                        - lat: 20.43069524
                          long: -103.24449911
                        - lat: 20.43066985
                          long: -103.24458829
                        - lat: 20.43064585
                          long: -103.24467259
                        - lat: 20.43058592
                          long: -103.24488304
                        - lat: 20.43056958
                          long: -103.24494045
                        - lat: 20.43055994
                          long: -103.24497101
                        - lat: 20.43053756
                          long: -103.24504194
                        - lat: 20.43049589
                          long: -103.24517405
                        - lat: 20.43049289
                          long: -103.24518454
                        - lat: 20.43048571
                          long: -103.24520956
                        - lat: 20.43046773
                          long: -103.2452723
                        - lat: 20.43046283
                          long: -103.24528939
                        - lat: 20.43040778
                          long: -103.24548148
                        - lat: 20.43038857
                          long: -103.24554851
                        - lat: 20.43038634
                          long: -103.24555623
                        - lat: 20.43037496
                          long: -103.24559566
                        - lat: 20.43036565
                          long: -103.24562792
                        - lat: 20.43032001
                          long: -103.24578611
                        - lat: 20.43029093
                          long: -103.24589231
                        - lat: 20.43026998
                          long: -103.24596882
                        - lat: 20.4302689
                          long: -103.24597278
                        - lat: 20.43021956
                          long: -103.246153
                        - lat: 20.43019402
                          long: -103.24624629
                        - lat: 20.43019054
                          long: -103.24625899
                        - lat: 20.43018819
                          long: -103.24626757
                        - lat: 20.43015271
                          long: -103.24639716
                        - lat: 20.43015119
                          long: -103.24640269
                        - lat: 20.43014859
                          long: -103.24641218
                        - lat: 20.43014791
                          long: -103.24644393
                        - lat: 20.43014654
                          long: -103.24650803
                        - lat: 20.43014559
                          long: -103.24655222
                        - lat: 20.43014454
                          long: -103.24660164
                        - lat: 20.43014342
                          long: -103.24665365
                        - lat: 20.43014171
                          long: -103.24673339
                        - lat: 20.43014148
                          long: -103.24674422
                        - lat: 20.43014005
                          long: -103.24681098
                        - lat: 20.43014004
                          long: -103.24681384
                        - lat: 20.4301398
                          long: -103.24694273
                        - lat: 20.43013961
                          long: -103.2470407
                        - lat: 20.43013953
                          long: -103.24708105
                        - lat: 20.43013938
                          long: -103.24715623
                        - lat: 20.43013924
                          long: -103.24723241
                        - lat: 20.43013909
                          long: -103.24730786
                        - lat: 20.43013888
                          long: -103.24741836
                        - lat: 20.43013812
                          long: -103.24744958
                        - lat: 20.43013752
                          long: -103.24747409
                        - lat: 20.4301371
                          long: -103.24749133
                        - lat: 20.43013672
                          long: -103.2475069
                        - lat: 20.43013666
                          long: -103.24750919
                        - lat: 20.43013447
                          long: -103.24759934
                        - lat: 20.43013068
                          long: -103.2477548
                        - lat: 20.43012846
                          long: -103.24784575
                        - lat: 20.43012797
                          long: -103.24786584
                        - lat: 20.43012611
                          long: -103.24792825
                        - lat: 20.43012541
                          long: -103.24795167
                        - lat: 20.43012185
                          long: -103.24807104
                        - lat: 20.4301195
                          long: -103.24814992
                        - lat: 20.43011752
                          long: -103.24821645
                        - lat: 20.43011641
                          long: -103.24825366
                        - lat: 20.43012271
                          long: -103.24825566
                        - lat: 20.43007607
                          long: -103.25231362
                        - lat: 20.4289629
                          long: -103.25513257
                        - lat: 20.4327576
                          long: -103.25602866
                        - lat: 20.43626437
                          long: -103.25615686
                        - lat: 20.44189299
                          long: -103.26109054
                        - lat: 20.44192979
                          long: -103.26112408
                        - lat: 20.44191097
                          long: -103.26112402
                        - lat: 20.44189398
                          long: -103.26112396
                        - lat: 20.44185419
                          long: -103.26112383
                        - lat: 20.44183348
                          long: -103.26112376
                        - lat: 20.44180828
                          long: -103.26112367
                        - lat: 20.44179068
                          long: -103.26112361
                        - lat: 20.44177087
                          long: -103.2611234
                        - lat: 20.44167734
                          long: -103.2611224
                        - lat: 20.44167587
                          long: -103.26112238
                        - lat: 20.44162324
                          long: -103.26112182
                        - lat: 20.44159542
                          long: -103.26112152
                        - lat: 20.44154612
                          long: -103.26112099
                        - lat: 20.44152177
                          long: -103.26112073
                        - lat: 20.44136956
                          long: -103.2611191
                        - lat: 20.44129351
                          long: -103.26111829
                        - lat: 20.44126302
                          long: -103.26111932
                        - lat: 20.44122167
                          long: -103.26112072
                        - lat: 20.44121852
                          long: -103.26112083
                        - lat: 20.44111555
                          long: -103.26112432
                        - lat: 20.44108941
                          long: -103.2611252
                        - lat: 20.44106943
                          long: -103.26112588
                        - lat: 20.44101393
                          long: -103.26112776
                        - lat: 20.44099038
                          long: -103.26112856
                        - lat: 20.4409194
                          long: -103.26113097
                        - lat: 20.44089137
                          long: -103.26113191
                        - lat: 20.4408661
                          long: -103.26113277
                        - lat: 20.44080821
                          long: -103.26113473
                        - lat: 20.44076958
                          long: -103.26113604
                        - lat: 20.44062344
                          long: -103.26114099
                        - lat: 20.44061079
                          long: -103.26114142
                        - lat: 20.44055389
                          long: -103.26114335
                        - lat: 20.44046863
                          long: -103.26114624
                        - lat: 20.44030895
                          long: -103.26115165
                        - lat: 20.44029092
                          long: -103.26115226
                        - lat: 20.44027205
                          long: -103.26115269
                        - lat: 20.44022059
                          long: -103.26115383
                        - lat: 20.44017102
                          long: -103.26115494
                        - lat: 20.4400382
                          long: -103.26115791
                        - lat: 20.43995918
                          long: -103.26115968
                        - lat: 20.43994233
                          long: -103.26116005
                        - lat: 20.43993931
                          long: -103.26116012
                        - lat: 20.43987293
                          long: -103.26116161
                        - lat: 20.43986477
                          long: -103.26116179
                        - lat: 20.43973521
                          long: -103.26116468
                        - lat: 20.43969896
                          long: -103.26116549
                        - lat: 20.43959879
                          long: -103.26116773
                        - lat: 20.43957438
                          long: -103.26116828
                        - lat: 20.43951032
                          long: -103.26116971
                        - lat: 20.4394401
                          long: -103.26117128
                        - lat: 20.43923136
                          long: -103.26117594
                        - lat: 20.43919192
                          long: -103.26117683
                        - lat: 20.43916696
                          long: -103.26117738
                        - lat: 20.43902105
                          long: -103.26125048
                        - lat: 20.43900874
                          long: -103.26125665
                        - lat: 20.43900173
                          long: -103.26125681
                        - lat: 20.43883605
                          long: -103.26126063
                        - lat: 20.43875699
                          long: -103.26126245
                        - lat: 20.43869802
                          long: -103.26126381
                        - lat: 20.4386676
                          long: -103.26126451
                        - lat: 20.43861821
                          long: -103.26126565
                        - lat: 20.43847375
                          long: -103.26126897
                        - lat: 20.43840606
                          long: -103.26127053
                        - lat: 20.43832534
                          long: -103.26127239
                        - lat: 20.43828628
                          long: -103.26127329
                        - lat: 20.43828171
                          long: -103.26127436
                        - lat: 20.43827909
                          long: -103.26127498
                        - lat: 20.43817711
                          long: -103.26129889
                        - lat: 20.4379932
                          long: -103.26134202
                        - lat: 20.43797054
                          long: -103.26134733
                        - lat: 20.43796511
                          long: -103.2613486
                        - lat: 20.4376248
                          long: -103.2614284
                        - lat: 20.43756519
                          long: -103.26144238
                        - lat: 20.43749062
                          long: -103.26145986
                        - lat: 20.43722173
                          long: -103.26152291
                        - lat: 20.43717883
                          long: -103.26153297
                        - lat: 20.43717236
                          long: -103.26153449
                        - lat: 20.43706318
                          long: -103.26156009
                        - lat: 20.43694847
                          long: -103.26158676
                        - lat: 20.43691452
                          long: -103.26159465
                        - lat: 20.43686643
                          long: -103.26160583
                        - lat: 20.43683376
                          long: -103.26161343
                        - lat: 20.43677666
                          long: -103.26163993
                        - lat: 20.43643517
                          long: -103.26171933
                        - lat: 20.43640171
                          long: -103.26172711
                        - lat: 20.43639869
                          long: -103.26172781
                        - lat: 20.43609595
                          long: -103.2617982
                        - lat: 20.43608271
                          long: -103.26180127
                        - lat: 20.43601782
                          long: -103.26181636
                        - lat: 20.43582174
                          long: -103.26186194
                        - lat: 20.43567806
                          long: -103.26189535
                        - lat: 20.43561603
                          long: -103.26190977
                        - lat: 20.43557662
                          long: -103.26191893
                        - lat: 20.43531932
                          long: -103.26197875
                        - lat: 20.43524942
                          long: -103.261995
                        - lat: 20.43508224
                          long: -103.26203387
                        - lat: 20.43504036
                          long: -103.26204361
                        - lat: 20.43490986
                          long: -103.26188941
                        - lat: 20.43353927
                          long: -103.26046866
                        - lat: 20.4323826
                          long: -103.25979228
                        - lat: 20.43199391
                          long: -103.25862687
                        - lat: 20.43111939
                          long: -103.25792946
                        - lat: 20.42989322
                          long: -103.25798053
                        - lat: 20.42885994
                          long: -103.26030631
                        - lat: 20.4257909
                          long: -103.26215806
                        - lat: 20.42004331
                          long: -103.26220277
                        - lat: 20.41765121
                          long: -103.26559734
                        - lat: 20.38207419
                          long: -103.25898252
                        - lat: 20.37474625
                          long: -103.27239224
                        - lat: 20.37239556
                          long: -103.27391271
                        - lat: 20.37271108
                          long: -103.27488357
                        - lat: 20.36972119
                          long: -103.28189966
                        - lat: 20.3702295
                          long: -103.28692821
                        - lat: 20.36890874
                          long: -103.2926265
                        - lat: 20.36912518
                          long: -103.2987697
                        - lat: 20.37025923
                          long: -103.29883897
                        - lat: 20.37163561
                          long: -103.31350288
                        - lat: 20.37113637
                          long: -103.32574043
                        - lat: 20.37196208
                          long: -103.33608441
                        - lat: 20.36904544
                          long: -103.34825469
                        - lat: 20.36893692
                          long: -103.3485946
                        - lat: 20.3641758
                          long: -103.35576625
                        - lat: 20.36175362
                          long: -103.35882276
                        - lat: 20.36269549
                          long: -103.36873822
                        - lat: 20.36536509
                          long: -103.37894416
                        - lat: 20.36431081
                          long: -103.39109846
                        - lat: 20.36455394
                          long: -103.41769489
                        - lat: 20.3669969
                          long: -103.42981306
                        - lat: 20.37615876
                          long: -103.45462284
                        - lat: 20.39127114
                          long: -103.47473431
                        - lat: 20.40017944
                          long: -103.48789342
                        - lat: 20.41362912
                          long: -103.5241252
                        - lat: 20.41691818
                          long: -103.53516352
                        - lat: 20.41699641
                          long: -103.5485818
                        - lat: 20.42325598
                          long: -103.5525366
                        - lat: 20.42376801
                          long: -103.55783011
                        - lat: 20.45749131
                          long: -103.57354621
                        - lat: 20.45846803
                          long: -103.5840783
                        - lat: 20.4741614
                          long: -103.5925111
                        - lat: 20.48257713
                          long: -103.59260479
                        - lat: 20.4916736
                          long: -103.5957719
                        - lat: 20.49934532
                          long: -103.5925366
                        - lat: 20.50861007
                          long: -103.596558
                        - lat: 20.50387614
                          long: -103.58698084
                        - lat: 20.51919223
                          long: -103.59228721
                        - lat: 20.52308449
                          long: -103.58016986
                        - lat: 20.52572531
                          long: -103.56625289
                        - lat: 20.53135294
                          long: -103.56152655
                        - lat: 20.53680781
                          long: -103.56337025
                        - lat: 20.54020162
                          long: -103.56086956
                        - lat: 20.54028888
                          long: -103.55393071
                        - lat: 20.55170412
                          long: -103.5541711
                        - lat: 20.5516913
                          long: -103.55824501
                        - lat: 20.54780923
                          long: -103.55828142
                        - lat: 20.54301342
                          long: -103.56345254
                        - lat: 20.56837834
                          long: -103.55948876
                        - lat: 20.56841471
                          long: -103.55389547
                        - lat: 20.57421728
                          long: -103.5541286
                        - lat: 20.57670797
                          long: -103.56629853
                        - lat: 20.58166234
                          long: -103.56610331
                        - lat: 20.58192642
                          long: -103.56308857
                        - lat: 20.58680476
                          long: -103.5588829
                        - lat: 20.60409367
                          long: -103.5526956
                        - lat: 20.59009792
                          long: -103.49467908
                        - lat: 20.59168362
                          long: -103.49477624
                        - lat: 20.59362142
                          long: -103.49394116
                        - lat: 20.59447456
                          long: -103.49264721
                        - lat: 20.59467544
                          long: -103.49088538
                        - lat: 20.59437825
                          long: -103.48985817
                        - lat: 20.59370529
                          long: -103.48853404
                        - lat: 20.59515426
                          long: -103.4844743
                        - lat: 20.59528001
                          long: -103.48310606
                        - lat: 20.59528979
                          long: -103.48310705
                        - lat: 20.59534487
                          long: -103.48311259
                        - lat: 20.59536789
                          long: -103.48311491
                        - lat: 20.59547556
                          long: -103.48306853
                        - lat: 20.59564576
                          long: -103.48279542
                        - lat: 20.59569091
                          long: -103.4826693
                        - lat: 20.59573588
                          long: -103.4825437
                        - lat: 20.59578085
                          long: -103.48241809
                        - lat: 20.59582582
                          long: -103.48229249
                        - lat: 20.59587079
                          long: -103.48216688
                        - lat: 20.59591344
                          long: -103.48204774
                        - lat: 20.59591334
                          long: -103.48202008
                        - lat: 20.59591277
                          long: -103.48186975
                        - lat: 20.59591223
                          long: -103.48172583
                        - lat: 20.59591161
                          long: -103.48156273
                        - lat: 20.59591098
                          long: -103.48139637
                        - lat: 20.59591359
                          long: -103.48121656
                        - lat: 20.595916
                          long: -103.48105103
                        - lat: 20.59591809
                          long: -103.48090714
                        - lat: 20.59591836
                          long: -103.48088846
                        - lat: 20.5959366
                          long: -103.48079633
                        - lat: 20.59596601
                          long: -103.48064778
                        - lat: 20.59598334
                          long: -103.48056024
                        - lat: 20.5960007
                          long: -103.48047258
                        - lat: 20.59601596
                          long: -103.48039546
                        - lat: 20.59602699
                          long: -103.48033974
                        - lat: 20.59604033
                          long: -103.48027235
                        - lat: 20.59605244
                          long: -103.48021118
                        - lat: 20.59607065
                          long: -103.48011924
                        - lat: 20.59607937
                          long: -103.48007515
                        - lat: 20.59610723
                          long: -103.47993445
                        - lat: 20.59612274
                          long: -103.47988841
                        - lat: 20.59613603
                          long: -103.47984879
                        - lat: 20.59616932
                          long: -103.47974935
                        - lat: 20.59617089
                          long: -103.47974466
                        - lat: 20.59617347
                          long: -103.47973695
                        - lat: 20.59618992
                          long: -103.47968806
                        - lat: 20.59624244
                          long: -103.4795319
                        - lat: 20.59626257
                          long: -103.4794728
                        - lat: 20.59630352
                          long: -103.47933395
                        - lat: 20.59630491
                          long: -103.47932989
                        - lat: 20.59631729
                          long: -103.47929384
                        - lat: 20.5963557
                          long: -103.47918188
                        - lat: 20.59636993
                          long: -103.47912779
                        - lat: 20.59639308
                          long: -103.47896323
                        - lat: 20.59641382
                          long: -103.4787975
                        - lat: 20.59642589
                          long: -103.47870105
                        - lat: 20.59645449
                          long: -103.47846864
                        - lat: 20.59651346
                          long: -103.4779893
                        - lat: 20.59653873
                          long: -103.47778385
                        - lat: 20.59654492
                          long: -103.47773355
                        - lat: 20.59654522
                          long: -103.47773116
                        - lat: 20.59656833
                          long: -103.4775433
                        - lat: 20.59657062
                          long: -103.47751297
                        - lat: 20.59657508
                          long: -103.4774541
                        - lat: 20.59658687
                          long: -103.4772983
                        - lat: 20.59663617
                          long: -103.47706425
                        - lat: 20.59663954
                          long: -103.47705036
                        - lat: 20.5967429
                          long: -103.47671924
                        - lat: 20.59679784
                          long: -103.47656792
                        - lat: 20.59680286
                          long: -103.47655408
                        - lat: 20.59681075
                          long: -103.47653077
                        - lat: 20.59683026
                          long: -103.47647374
                        - lat: 20.59684358
                          long: -103.47643479
                        - lat: 20.59684977
                          long: -103.47641671
                        - lat: 20.59687196
                          long: -103.47635183
                        - lat: 20.59688438
                          long: -103.47631554
                        - lat: 20.59689744
                          long: -103.47627736
                        - lat: 20.59692708
                          long: -103.47620536
                        - lat: 20.59692998
                          long: -103.47619832
                        - lat: 20.59697738
                          long: -103.47608315
                        - lat: 20.59699002
                          long: -103.47605246
                        - lat: 20.59702342
                          long: -103.47597131
                        - lat: 20.59702569
                          long: -103.4759658
                        - lat: 20.59708416
                          long: -103.47582375
                        - lat: 20.59708702
                          long: -103.47581554
                        - lat: 20.59716483
                          long: -103.47558345
                        - lat: 20.59717718
                          long: -103.47547538
                        - lat: 20.59718658
                          long: -103.47521811
                        - lat: 20.59718948
                          long: -103.47513877
                        - lat: 20.59719204
                          long: -103.47506857
                        - lat: 20.5971902
                          long: -103.47501721
                        - lat: 20.59719546
                          long: -103.47498605
                        - lat: 20.59720935
                          long: -103.47490385
                        - lat: 20.59721046
                          long: -103.47489723
                        - lat: 20.59722834
                          long: -103.47479141
                        - lat: 20.59723314
                          long: -103.47476296
                        - lat: 20.59723521
                          long: -103.47472898
                        - lat: 20.59723728
                          long: -103.47469499
                        - lat: 20.59723835
                          long: -103.47469078
                        - lat: 20.59723964
                          long: -103.47468569
                        - lat: 20.59725143
                          long: -103.47463939
                        - lat: 20.59726575
                          long: -103.47458314
                        - lat: 20.59729468
                          long: -103.47447038
                        - lat: 20.59729497
                          long: -103.47446924
                        - lat: 20.59732227
                          long: -103.47436284
                        - lat: 20.59732671
                          long: -103.47434552
                        - lat: 20.59734985
                          long: -103.4742553
                        - lat: 20.59735017
                          long: -103.47425405
                        - lat: 20.5973766
                          long: -103.47415102
                        - lat: 20.59737824
                          long: -103.47414468
                        - lat: 20.59741067
                          long: -103.47401903
                        - lat: 20.59741138
                          long: -103.47401627
                        - lat: 20.59744253
                          long: -103.47389483
                        - lat: 20.59745561
                          long: -103.47376426
                        - lat: 20.59745691
                          long: -103.47375129
                        - lat: 20.59746008
                          long: -103.47371974
                        - lat: 20.59748916
                          long: -103.47343025
                        - lat: 20.59750011
                          long: -103.47332124
                        - lat: 20.59750051
                          long: -103.4733173
                        - lat: 20.59752149
                          long: -103.47310848
                        - lat: 20.59752535
                          long: -103.47307006
                        - lat: 20.59753355
                          long: -103.47298844
                        - lat: 20.59753663
                          long: -103.47295777
                        - lat: 20.5975416
                          long: -103.47290831
                        - lat: 20.59754307
                          long: -103.47289386
                        - lat: 20.59755366
                          long: -103.47278975
                        - lat: 20.59756387
                          long: -103.47268945
                        - lat: 20.59757083
                          long: -103.47262103
                        - lat: 20.59758517
                          long: -103.47247406
                        - lat: 20.59766999
                          long: -103.47207722
                        - lat: 20.59772868
                          long: -103.47180266
                        - lat: 20.59774123
                          long: -103.4717439
                        - lat: 20.59776426
                          long: -103.47163617
                        - lat: 20.5978274
                          long: -103.47134074
                        - lat: 20.59788818
                          long: -103.47105641
                        - lat: 20.59789699
                          long: -103.47085716
                        - lat: 20.59790149
                          long: -103.47075528
                        - lat: 20.59789548
                          long: -103.47068185
                        - lat: 20.59787898
                          long: -103.47048042
                        - lat: 20.59786451
                          long: -103.47030375
                        - lat: 20.59783256
                          long: -103.46998814
                        - lat: 20.59779113
                          long: -103.46952179
                        - lat: 20.59778692
                          long: -103.46947437
                        - lat: 20.5977843
                          long: -103.46944484
                        - lat: 20.59769997
                          long: -103.46849558
                        - lat: 20.59767763
                          long: -103.46824421
                        - lat: 20.59758025
                          long: -103.46714808
                        - lat: 20.59757165
                          long: -103.46705138
                        - lat: 20.59747877
                          long: -103.46626201
                        - lat: 20.59742251
                          long: -103.46578398
                        - lat: 20.5974112
                          long: -103.46568782
                        - lat: 20.59727083
                          long: -103.46449504
                        - lat: 20.59725707
                          long: -103.46437814
                        - lat: 20.59720434
                          long: -103.46386666
                        - lat: 20.59717444
                          long: -103.46357666
                        - lat: 20.59715278
                          long: -103.46336657
                        - lat: 20.59715196
                          long: -103.46335867
                        - lat: 20.59710996
                          long: -103.46296211
                        - lat: 20.59707843
                          long: -103.46266431
                        - lat: 20.59706801
                          long: -103.46256594
                        - lat: 20.59703922
                          long: -103.46229405
                        - lat: 20.59700012
                          long: -103.46192488
                        - lat: 20.59699902
                          long: -103.4619145
                        - lat: 20.59699685
                          long: -103.46189403
                        - lat: 20.59696201
                          long: -103.46156504
                        - lat: 20.59696066
                          long: -103.46155235
                        - lat: 20.59695896
                          long: -103.46154143
                        - lat: 20.59688431
                          long: -103.46106372
                        - lat: 20.59688214
                          long: -103.46104981
                        - lat: 20.59685221
                          long: -103.46067276
                        - lat: 20.59685595
                          long: -103.46055236
                        - lat: 20.5968206
                          long: -103.46021478
                        - lat: 20.59682039
                          long: -103.46021281
                        - lat: 20.59681919
                          long: -103.46020137
                        - lat: 20.59681305
                          long: -103.46014272
                        - lat: 20.59674665
                          long: -103.4596342
                        - lat: 20.59673064
                          long: -103.45951155
                        - lat: 20.59672851
                          long: -103.45949528
                        - lat: 20.59666802
                          long: -103.45903195
                        - lat: 20.59661621
                          long: -103.45840413
                        - lat: 20.59661604
                          long: -103.45840206
                        - lat: 20.59661029
                          long: -103.45835236
                        - lat: 20.59660432
                          long: -103.45830073
                        - lat: 20.59659058
                          long: -103.45818189
                        - lat: 20.59658347
                          long: -103.45812048
                        - lat: 20.59654326
                          long: -103.45777273
                        - lat: 20.59653544
                          long: -103.45770511
                        - lat: 20.59649941
                          long: -103.45739352
                        - lat: 20.59649617
                          long: -103.45736553
                        - lat: 20.59647474
                          long: -103.45718019
                        - lat: 20.59646253
                          long: -103.45707464
                        - lat: 20.59639728
                          long: -103.45651046
                        - lat: 20.59639629
                          long: -103.45650187
                        - lat: 20.59634955
                          long: -103.45605171
                        - lat: 20.59634781
                          long: -103.45603496
                        - lat: 20.59634092
                          long: -103.45596862
                        - lat: 20.59632362
                          long: -103.45580204
                        - lat: 20.59630969
                          long: -103.45566783
                        - lat: 20.59630588
                          long: -103.45563117
                        - lat: 20.59626825
                          long: -103.45526883
                        - lat: 20.59626767
                          long: -103.45526316
                        - lat: 20.59626451
                          long: -103.45523244
                        - lat: 20.59625333
                          long: -103.45512368
                        - lat: 20.59624766
                          long: -103.45506858
                        - lat: 20.59624347
                          long: -103.45502783
                        - lat: 20.59623808
                          long: -103.45497539
                        - lat: 20.59621317
                          long: -103.45473313
                        - lat: 20.59617916
                          long: -103.45440245
                        - lat: 20.59617255
                          long: -103.45433814
                        - lat: 20.59616106
                          long: -103.45422638
                        - lat: 20.59615696
                          long: -103.45418655
                        - lat: 20.59613179
                          long: -103.45394181
                        - lat: 20.59612174
                          long: -103.45384405
                        - lat: 20.59612153
                          long: -103.45384206
                        - lat: 20.59611526
                          long: -103.45378105
                        - lat: 20.59610201
                          long: -103.45358372
                        - lat: 20.59608824
                          long: -103.45345232
                        - lat: 20.59607585
                          long: -103.45333407
                        - lat: 20.59606148
                          long: -103.45319682
                        - lat: 20.59605836
                          long: -103.45316703
                        - lat: 20.5960399
                          long: -103.45299083
                        - lat: 20.59606935
                          long: -103.45284
                        - lat: 20.59606979
                          long: -103.45283775
                        - lat: 20.59610704
                          long: -103.45264699
                        - lat: 20.59613099
                          long: -103.45247212
                        - lat: 20.59614637
                          long: -103.45235978
                        - lat: 20.59620661
                          long: -103.4519056
                        - lat: 20.59621732
                          long: -103.45182483
                        - lat: 20.59621545
                          long: -103.4518245
                        - lat: 20.59617986
                          long: -103.45181816
                        - lat: 20.59622311
                          long: -103.45164458
                        - lat: 20.59625519
                          long: -103.45143625
                        - lat: 20.59626548
                          long: -103.45136949
                        - lat: 20.59628958
                          long: -103.45122466
                        - lat: 20.59629853
                          long: -103.45117083
                        - lat: 20.59631298
                          long: -103.45108398
                        - lat: 20.5963221
                          long: -103.45101206
                        - lat: 20.59632419
                          long: -103.45099555
                        - lat: 20.59636716
                          long: -103.45065658
                        - lat: 20.59638191
                          long: -103.45054332
                        - lat: 20.59639298
                          long: -103.45054253
                        - lat: 20.59642528
                          long: -103.45032095
                        - lat: 20.59642537
                          long: -103.4503204
                        - lat: 20.59643611
                          long: -103.45024896
                        - lat: 20.59644021
                          long: -103.45022173
                        - lat: 20.59647515
                          long: -103.44998953
                        - lat: 20.5964756
                          long: -103.44998652
                        - lat: 20.59649223
                          long: -103.44987411
                        - lat: 20.59650117
                          long: -103.44981298
                        - lat: 20.59650891
                          long: -103.44976013
                        - lat: 20.59652525
                          long: -103.44964846
                        - lat: 20.59654192
                          long: -103.44953457
                        - lat: 20.59654197
                          long: -103.44953423
                        - lat: 20.59654202
                          long: -103.4495339
                        - lat: 20.59655921
                          long: -103.44941233
                        - lat: 20.59657058
                          long: -103.44933789
                        - lat: 20.59657134
                          long: -103.44933281
                        - lat: 20.59657489
                          long: -103.44930919
                        - lat: 20.59657964
                          long: -103.44927755
                        - lat: 20.59659279
                          long: -103.44918989
                        - lat: 20.5965949
                          long: -103.44917586
                        - lat: 20.59660992
                          long: -103.44907576
                        - lat: 20.59661867
                          long: -103.44901747
                        - lat: 20.59662674
                          long: -103.4489637
                        - lat: 20.59665164
                          long: -103.44879782
                        - lat: 20.59668002
                          long: -103.44864614
                        - lat: 20.59671876
                          long: -103.4484127
                        - lat: 20.59673772
                          long: -103.44829843
                        - lat: 20.59673787
                          long: -103.44829753
                        - lat: 20.5967414
                          long: -103.44827625
                        - lat: 20.59661393
                          long: -103.44828931
                        - lat: 20.59648526
                          long: -103.44830249
                        - lat: 20.59641866
                          long: -103.44831136
                        - lat: 20.5963521
                          long: -103.44831835
                        - lat: 20.5962151
                          long: -103.44833249
                        - lat: 20.59621483
                          long: -103.44832624
                        - lat: 20.59608074
                          long: -103.44834039
                        - lat: 20.59601699
                          long: -103.44834799
                        - lat: 20.59600085
                          long: -103.44834991
                        - lat: 20.59593891
                          long: -103.44835729
                        - lat: 20.59593126
                          long: -103.4483582
                        - lat: 20.59579722
                          long: -103.44837416
                        - lat: 20.59570987
                          long: -103.44838263
                        - lat: 20.59567421
                          long: -103.4483861
                        - lat: 20.59557471
                          long: -103.44839704
                        - lat: 20.59553934
                          long: -103.44840093
                        - lat: 20.59540765
                          long: -103.44841385
                        - lat: 20.5953641
                          long: -103.44841987
                        - lat: 20.59528466
                          long: -103.44843086
                        - lat: 20.59520905
                          long: -103.44844132
                        - lat: 20.59520612
                          long: -103.44844172
                        - lat: 20.59517385
                          long: -103.44844554
                        - lat: 20.59516279
                          long: -103.44844685
                        - lat: 20.59505953
                          long: -103.44845909
                        - lat: 20.59504076
                          long: -103.44846131
                        - lat: 20.59500203
                          long: -103.4484659
                        - lat: 20.59493772
                          long: -103.44847351
                        - lat: 20.59492926
                          long: -103.44847452
                        - lat: 20.59491872
                          long: -103.44847577
                        - lat: 20.59479689
                          long: -103.4484902
                        - lat: 20.59479022
                          long: -103.44849099
                        - lat: 20.5946618
                          long: -103.44850635
                        - lat: 20.59430849
                          long: -103.44854809
                        - lat: 20.59427609
                          long: -103.44846832
                        - lat: 20.59422502
                          long: -103.44831818
                        - lat: 20.59419431
                          long: -103.44822793
                        - lat: 20.59418661
                          long: -103.44820528
                        - lat: 20.59417899
                          long: -103.44818288
                        - lat: 20.59413558
                          long: -103.44805528
                        - lat: 20.59413312
                          long: -103.44804807
                        - lat: 20.59408545
                          long: -103.44790794
                        - lat: 20.59405239
                          long: -103.44781075
                        - lat: 20.59404026
                          long: -103.44777513
                        - lat: 20.59399499
                          long: -103.44764205
                        - lat: 20.59395107
                          long: -103.44751297
                        - lat: 20.59394964
                          long: -103.44750876
                        - lat: 20.59390133
                          long: -103.44736675
                        - lat: 20.59385138
                          long: -103.44723569
                        - lat: 20.5938483
                          long: -103.44722619
                        - lat: 20.5938053
                          long: -103.44709383
                        - lat: 20.59376321
                          long: -103.44696867
                        - lat: 20.59374399
                          long: -103.44691151
                        - lat: 20.59371645
                          long: -103.44682962
                        - lat: 20.59367337
                          long: -103.4467015
                        - lat: 20.59367295
                          long: -103.44670025
                        - lat: 20.59359727
                          long: -103.44647518
                        - lat: 20.59356202
                          long: -103.44637287
                        - lat: 20.59338745
                          long: -103.44586838
                        - lat: 20.59287303
                          long: -103.44438185
                        - lat: 20.59287255
                          long: -103.44438177
                        - lat: 20.59285992
                          long: -103.44434545
                        - lat: 20.59280854
                          long: -103.44419922
                        - lat: 20.59277087
                          long: -103.444092
                        - lat: 20.59276562
                          long: -103.44407707
                        - lat: 20.5927253
                          long: -103.44396538
                        - lat: 20.59266555
                          long: -103.44379984
                        - lat: 20.59258341
                          long: -103.4435657
                        - lat: 20.59249321
                          long: -103.44332134
                        - lat: 20.59245823
                          long: -103.44321941
                        - lat: 20.59241721
                          long: -103.44309989
                        - lat: 20.59239219
                          long: -103.44302697
                        - lat: 20.59238553
                          long: -103.44300758
                        - lat: 20.59236912
                          long: -103.44295974
                        - lat: 20.59235586
                          long: -103.44292111
                        - lat: 20.59228677
                          long: -103.4427198
                        - lat: 20.59228106
                          long: -103.44270315
                        - lat: 20.5922314
                          long: -103.44255846
                        - lat: 20.59218616
                          long: -103.44242665
                        - lat: 20.59218265
                          long: -103.4424164
                        - lat: 20.59217587
                          long: -103.44239663
                        - lat: 20.59215889
                          long: -103.44234718
                        - lat: 20.59207127
                          long: -103.44209185
                        - lat: 20.59198795
                          long: -103.44190299
                        - lat: 20.59191139
                          long: -103.44170185
                        - lat: 20.59193967
                          long: -103.44168394
                        - lat: 20.59196465
                          long: -103.44166499
                        - lat: 20.59197388
                          long: -103.44164924
                        - lat: 20.591985
                          long: -103.44161046
                        - lat: 20.59198666
                          long: -103.44160466
                        - lat: 20.59198999
                          long: -103.44154025
                        - lat: 20.59199165
                          long: -103.44147264
                        - lat: 20.59198289
                          long: -103.44142587
                        - lat: 20.59196696
                          long: -103.44137445
                        - lat: 20.59195925
                          long: -103.44136242
                        - lat: 20.59193967
                          long: -103.44133189
                        - lat: 20.59189592
                          long: -103.44128048
                        - lat: 20.59185923
                          long: -103.44125182
                        - lat: 20.59185058
                          long: -103.44125046
                        - lat: 20.59184542
                          long: -103.44124965
                        - lat: 20.591759
                          long: -103.44130152
                        - lat: 20.59164141
                          long: -103.44099263
                        - lat: 20.59090318
                          long: -103.43894718
                        - lat: 20.5909002
                          long: -103.43879306
                        - lat: 20.59021842
                          long: -103.43685439
                        - lat: 20.58902715
                          long: -103.43362364
                        - lat: 20.58889257
                          long: -103.43370615
                        - lat: 20.58790744
                          long: -103.43098469
                        - lat: 20.57921509
                          long: -103.43013502
                        - lat: 20.57920901
                          long: -103.43013438
                        - lat: 20.57917155
                          long: -103.43013044
                        - lat: 20.57894222
                          long: -103.43040505
                        - lat: 20.57892599
                          long: -103.43042448
                        - lat: 20.57887022
                          long: -103.43049125
                        - lat: 20.57884401
                          long: -103.43052264
                        - lat: 20.57879265
                          long: -103.43058272
                        - lat: 20.57864848
                          long: -103.43075139
                        - lat: 20.57860192
                          long: -103.43080586
                        - lat: 20.57850365
                          long: -103.43092082
                        - lat: 20.57843927
                          long: -103.43099614
                        - lat: 20.57840814
                          long: -103.43103256
                        - lat: 20.57814128
                          long: -103.43134475
                        - lat: 20.57791554
                          long: -103.43160883
                        - lat: 20.57761399
                          long: -103.43196011
                        - lat: 20.5775715
                          long: -103.43200961
                        - lat: 20.57750808
                          long: -103.43208344
                        - lat: 20.57729478
                          long: -103.43233175
                        - lat: 20.57715712
                          long: -103.432492
                        - lat: 20.57692365
                          long: -103.43276397
                        - lat: 20.57682127
                          long: -103.43288324
                        - lat: 20.57666239
                          long: -103.4330619
                        - lat: 20.57665012
                          long: -103.4330757
                        - lat: 20.57647961
                          long: -103.43326743
                        - lat: 20.57629335
                          long: -103.43348423
                        - lat: 20.57606028
                          long: -103.43375553
                        - lat: 20.57541737
                          long: -103.43446598
                        - lat: 20.57532219
                          long: -103.43457116
                        - lat: 20.57430312
                          long: -103.43569728
                        - lat: 20.57368844
                          long: -103.43637651
                        - lat: 20.57388912
                          long: -103.43616113
                        - lat: 20.57331071
                          long: -103.4367939
                        - lat: 20.57318871
                          long: -103.43691951
                        - lat: 20.57021847
                          long: -103.43997745
                        - lat: 20.56703663
                          long: -103.44305979
                        - lat: 20.56400424
                          long: -103.44583711
                        - lat: 20.56103664
                          long: -103.44869219
                        - lat: 20.55813561
                          long: -103.45162334
                        - lat: 20.55510323
                          long: -103.45441522
                        - lat: 20.55363963
                          long: -103.45551256
                        - lat: 20.55214535
                          long: -103.45656223
                        - lat: 20.55062176
                          long: -103.45756329
                        - lat: 20.54933394
                          long: -103.45783301
                        - lat: 20.54870326
                          long: -103.45748706
                        - lat: 20.54843745
                          long: -103.45612996
                        - lat: 20.54672612
                          long: -103.45572367
                        - lat: 20.54564662
                          long: -103.45531614
                        - lat: 20.54394131
                          long: -103.45470723
                        - lat: 20.54330989
                          long: -103.45371476
                        - lat: 20.5429102
                          long: -103.45327136
                        - lat: 20.54261388
                          long: -103.45277338
                        - lat: 20.54235131
                          long: -103.45183476
                        - lat: 20.54210393
                          long: -103.451916
                        - lat: 20.54163068
                          long: -103.45108527
                        - lat: 20.54139926
                          long: -103.44980026
                        - lat: 20.54229901
                          long: -103.44957075
                        - lat: 20.54283245
                          long: -103.4494251
                        - lat: 20.54344837
                          long: -103.4492395
                        - lat: 20.54448708
                          long: -103.44889748
                        - lat: 20.54606962
                          long: -103.44835674
                        - lat: 20.54545826
                          long: -103.44627525
                        - lat: 20.54493303
                          long: -103.44429954
                        - lat: 20.54211138
                          long: -103.44550539
                        - lat: 20.54129949
                          long: -103.44576556
                        - lat: 20.54049625
                          long: -103.44605438
                        - lat: 20.54053824
                          long: -103.44517553
                        - lat: 20.54038885
                          long: -103.44435575
                        - lat: 20.54010906
                          long: -103.4438828
                        - lat: 20.54016067
                          long: -103.43956043
                        - lat: 20.53986947
                          long: -103.43863355
                        - lat: 20.53960431
                          long: -103.43805248
                        - lat: 20.53904482
                          long: -103.43698677
                        - lat: 20.53857941
                          long: -103.43610263
                        - lat: 20.53863831
                          long: -103.43552486
                        - lat: 20.53938672
                          long: -103.43401333
                        - lat: 20.53950361
                          long: -103.43420856
                        - lat: 20.53970302
                          long: -103.43399467
                        - lat: 20.53991982
                          long: -103.43363233
                        - lat: 20.5404052
                          long: -103.43309254
                        - lat: 20.54039659
                          long: -103.43301485
                        - lat: 20.54115417
                          long: -103.43264779
                        - lat: 20.54137299
                          long: -103.43251129
                        - lat: 20.54161822
                          long: -103.43225849
                        - lat: 20.54152863
                          long: -103.43207105
                        - lat: 20.54157308
                          long: -103.43197191
                        - lat: 20.54177994
                          long: -103.43191101
                        - lat: 20.54181084
                          long: -103.43204084
                        - lat: 20.54184036
                          long: -103.43209923
                        - lat: 20.54206481
                          long: -103.43243481
                        - lat: 20.54223848
                          long: -103.4327686
                        - lat: 20.54230853
                          long: -103.43284384
                        - lat: 20.54239002
                          long: -103.43296404
                        - lat: 20.54254186
                          long: -103.43323266
                        - lat: 20.54276459
                          long: -103.4335485
                        - lat: 20.54324453
                          long: -103.43442659
                        - lat: 20.54309869
                          long: -103.43449176
                        - lat: 20.54273973
                          long: -103.43469604
                        - lat: 20.54318377
                          long: -103.43538989
                        - lat: 20.54337876
                          long: -103.435325
                        - lat: 20.54359077
                          long: -103.43576448
                        - lat: 20.54361083
                          long: -103.43574567
                        - lat: 20.54382706
                          long: -103.43564133
                        - lat: 20.54466902
                          long: -103.43526478
                        - lat: 20.54532448
                          long: -103.43499365
                        - lat: 20.54623141
                          long: -103.43461849
                        - lat: 20.54572336
                          long: -103.43329863
                        - lat: 20.54678265
                          long: -103.43294852
                        - lat: 20.54586967
                          long: -103.4320866
                        - lat: 20.54677547
                          long: -103.43177744
                        - lat: 20.54766487
                          long: -103.43148256
                        - lat: 20.54872927
                          long: -103.43115131
                        - lat: 20.54933544
                          long: -103.4309545
                        - lat: 20.54955605
                          long: -103.43156002
                        - lat: 20.55012394
                          long: -103.43261726
                        - lat: 20.55028766
                          long: -103.43281713
                        - lat: 20.55082367
                          long: -103.43453081
                        - lat: 20.55171347
                          long: -103.43425343
                        - lat: 20.55870698
                          long: -103.43204746
                        - lat: 20.55809874
                          long: -103.43019006
                        - lat: 20.55769287
                          long: -103.43032343
                        - lat: 20.55721957
                          long: -103.42847444
                        - lat: 20.55727794
                          long: -103.42838637
                        - lat: 20.55702993
                          long: -103.42734683
                        - lat: 20.5568963
                          long: -103.42684725
                        - lat: 20.55681221
                          long: -103.42663988
                        - lat: 20.55659497
                          long: -103.42649152
                        - lat: 20.5565516
                          long: -103.42631252
                        - lat: 20.55649056
                          long: -103.42607587
                        - lat: 20.55612134
                          long: -103.42469449
                        - lat: 20.5545221
                          long: -103.41869055
                        - lat: 20.55451835
                          long: -103.41862806
                        - lat: 20.55450943
                          long: -103.41847932
                        - lat: 20.55446578
                          long: -103.41818107
                        - lat: 20.55446243
                          long: -103.41815818
                        - lat: 20.55436543
                          long: -103.41793454
                        - lat: 20.55436243
                          long: -103.41792718
                        - lat: 20.55430193
                          long: -103.41772592
                        - lat: 20.5542602
                          long: -103.41763877
                        - lat: 20.55423357
                          long: -103.41758314
                        - lat: 20.55408661
                          long: -103.4172762
                        - lat: 20.55408581
                          long: -103.41727454
                        - lat: 20.553708
                          long: -103.41648543
                        - lat: 20.5536561
                          long: -103.41633547
                        - lat: 20.55359752
                          long: -103.4161662
                        - lat: 20.55350473
                          long: -103.4157675
                        - lat: 20.55348976
                          long: -103.41570316
                        - lat: 20.55336523
                          long: -103.41516814
                        - lat: 20.55301585
                          long: -103.41351347
                        - lat: 20.55274857
                          long: -103.41208604
                        - lat: 20.5537261
                          long: -103.41181205
                        - lat: 20.55389709
                          long: -103.41177138
                        - lat: 20.55401645
                          long: -103.4116565
                        - lat: 20.55363683
                          long: -103.41125846
                        - lat: 20.55362116
                          long: -103.41099636
                        - lat: 20.55359817
                          long: -103.41073486
                        - lat: 20.55356787
                          long: -103.41047421
                        - lat: 20.5535303
                          long: -103.41021462
                        - lat: 20.55348548
                          long: -103.40995633
                        - lat: 20.55346612
                          long: -103.40956527
                        - lat: 20.55332398
                          long: -103.40866978
                        - lat: 20.55289188
                          long: -103.40586983
                        - lat: 20.55254677
                          long: -103.40369044
                        - lat: 20.55234088
                          long: -103.40252106
                        - lat: 20.55195224
                          long: -103.40098549
                        - lat: 20.55166563
                          long: -103.40026605
                        - lat: 20.55133282
                          long: -103.39887907
                        - lat: 20.55315304
                          long: -103.39774819
                        - lat: 20.55346747
                          long: -103.39756089
                        - lat: 20.55478665
                          long: -103.39673897
                        - lat: 20.55580903
                          long: -103.39606729
                        - lat: 20.55728952
                          long: -103.39508209
                        - lat: 20.56119694
                          long: -103.39307733
                        - lat: 20.5630099
                          long: -103.39228348
                        - lat: 20.56321555
                          long: -103.38947334
                        - lat: 20.56421086
                          long: -103.38445985
                        - lat: 20.57197237
                          long: -103.36802662
                        - lat: 20.57247807
                          long: -103.36421744
                        - lat: 20.57247812
                          long: -103.36421611
                        - lat: 20.57255981
                          long: -103.36354239
                        - lat: 20.572595
                          long: -103.36325211
                        - lat: 20.57257128
                          long: -103.36322023
                        - lat: 20.57251747
                          long: -103.36314791
                        - lat: 20.57252492
                          long: -103.36276259
                        - lat: 20.5725387
                          long: -103.36205026
                        - lat: 20.57248885
                          long: -103.36133833
                        - lat: 20.5724071
                          long: -103.36017099
                        - lat: 20.5724024
                          long: -103.36010395
                        - lat: 20.57236231
                          long: -103.36004644
                        - lat: 20.5723361
                          long: -103.36000885
                        - lat: 20.57233043
                          long: -103.35998524
                        - lat: 20.57231743
                          long: -103.35992945
                        - lat: 20.57230415
                          long: -103.35987248
                        - lat: 20.5722924
                          long: -103.35982209
                        - lat: 20.57229229
                          long: -103.3598216
                        - lat: 20.57228349
                          long: -103.35978386
                        - lat: 20.57216876
                          long: -103.3593412
                        - lat: 20.57217872
                          long: -103.35933808
                        - lat: 20.5722038
                          long: -103.35930667
                        - lat: 20.57219808
                          long: -103.35928478
                        - lat: 20.57219391
                          long: -103.35926884
                        - lat: 20.57211936
                          long: -103.35898376
                        - lat: 20.57213802
                          long: -103.35898214
                        - lat: 20.57215508
                          long: -103.35898065
                        - lat: 20.57208934
                          long: -103.35872199
                        - lat: 20.57207224
                          long: -103.3586507
                        - lat: 20.57201682
                          long: -103.35844532
                        - lat: 20.5719732
                          long: -103.35828364
                        - lat: 20.57195255
                          long: -103.35820714
                        - lat: 20.57192816
                          long: -103.35811672
                        - lat: 20.57188271
                          long: -103.35793403
                        - lat: 20.57163258
                          long: -103.35808574
                        - lat: 20.55854274
                          long: -103.36602436
                        - lat: 20.55770635
                          long: -103.36534624
                        - lat: 20.5569901
                          long: -103.36479558
                        - lat: 20.55666998
                          long: -103.36443104
                        - lat: 20.55592947
                          long: -103.36341652
                        - lat: 20.55590723
                          long: -103.36338605
                        - lat: 20.55590399
                          long: -103.36338084
                        - lat: 20.55574491
                          long: -103.3631581
                        - lat: 20.55539304
                          long: -103.36268273
                        - lat: 20.55536421
                          long: -103.36264378
                        - lat: 20.55540439
                          long: -103.36261813
                        - lat: 20.55652423
                          long: -103.36174459
                        - lat: 20.55579236
                          long: -103.36089761
                        - lat: 20.55539414
                          long: -103.36046784
                        - lat: 20.55536529
                          long: -103.36035345
                        - lat: 20.55519178
                          long: -103.35975455
                        - lat: 20.55520255
                          long: -103.35925452
                        - lat: 20.55533138
                          long: -103.35589977
                        - lat: 20.55547609
                          long: -103.35408218
                        - lat: 20.55550101
                          long: -103.35376924
                        - lat: 20.55550669
                          long: -103.35369784
                        - lat: 20.55551116
                          long: -103.35364167
                        - lat: 20.55551872
                          long: -103.35354672
                        - lat: 20.55551846
                          long: -103.35348083
                        - lat: 20.55551822
                          long: -103.35342213
                        - lat: 20.55551812
                          long: -103.35339736
                        - lat: 20.55551799
                          long: -103.35336561
                        - lat: 20.55551794
                          long: -103.35335338
                        - lat: 20.5555177
                          long: -103.35329321
                        - lat: 20.55551766
                          long: -103.3532849
                        - lat: 20.55551752
                          long: -103.35327124
                        - lat: 20.55551682
                          long: -103.3532035
                        - lat: 20.55551624
                          long: -103.35314731
                        - lat: 20.55551496
                          long: -103.35302299
                        - lat: 20.5555148
                          long: -103.35300799
                        - lat: 20.55551459
                          long: -103.35299236
                        - lat: 20.55551456
                          long: -103.35299049
                        - lat: 20.55551196
                          long: -103.35280351
                        - lat: 20.55551149
                          long: -103.35276987
                        - lat: 20.55550953
                          long: -103.35262884
                        - lat: 20.55550874
                          long: -103.35257258
                        - lat: 20.55550872
                          long: -103.35257059
                        - lat: 20.55550871
                          long: -103.35256996
                        - lat: 20.55550812
                          long: -103.3525277
                        - lat: 20.55550557
                          long: -103.35234464
                        - lat: 20.55550416
                          long: -103.3522432
                        - lat: 20.55550219
                          long: -103.35218778
                        - lat: 20.55550201
                          long: -103.3521827
                        - lat: 20.55550194
                          long: -103.35218089
                        - lat: 20.55549917
                          long: -103.35210285
                        - lat: 20.55549856
                          long: -103.3520858
                        - lat: 20.55549849
                          long: -103.35208373
                        - lat: 20.55549553
                          long: -103.35200065
                        - lat: 20.55549544
                          long: -103.35199821
                        - lat: 20.55549252
                          long: -103.35179727
                        - lat: 20.55549214
                          long: -103.35177126
                        - lat: 20.55549021
                          long: -103.35170772
                        - lat: 20.55548624
                          long: -103.35157697
                        - lat: 20.55548525
                          long: -103.35154451
                        - lat: 20.55549219
                          long: -103.35148872
                        - lat: 20.55549916
                          long: -103.35142483
                        - lat: 20.55549989
                          long: -103.3514194
                        - lat: 20.55552047
                          long: -103.35126566
                        - lat: 20.55552411
                          long: -103.35123848
                        - lat: 20.55552624
                          long: -103.35122253
                        - lat: 20.55551979
                          long: -103.35122155
                        - lat: 20.55552085
                          long: -103.35108939
                        - lat: 20.55552124
                          long: -103.35104077
                        - lat: 20.55552131
                          long: -103.35103215
                        - lat: 20.55552116
                          long: -103.35089986
                        - lat: 20.55552113
                          long: -103.35087254
                        - lat: 20.55552097
                          long: -103.35072079
                        - lat: 20.55552106
                          long: -103.3506554
                        - lat: 20.55552106
                          long: -103.35065343
                        - lat: 20.55552112
                          long: -103.35060704
                        - lat: 20.55552117
                          long: -103.35056563
                        - lat: 20.55552124
                          long: -103.35051116
                        - lat: 20.5555213
                          long: -103.35047252
                        - lat: 20.55552118
                          long: -103.35038826
                        - lat: 20.55552114
                          long: -103.35035613
                        - lat: 20.55552114
                          long: -103.35035176
                        - lat: 20.55552111
                          long: -103.35033015
                        - lat: 20.55552109
                          long: -103.35031498
                        - lat: 20.55552103
                          long: -103.35027098
                        - lat: 20.55552097
                          long: -103.35022714
                        - lat: 20.55552097
                          long: -103.3502261
                        - lat: 20.55552122
                          long: -103.3500785
                        - lat: 20.55551986
                          long: -103.35007852
                        - lat: 20.55551989
                          long: -103.35006159
                        - lat: 20.55551998
                          long: -103.35001854
                        - lat: 20.55552023
                          long: -103.34988455
                        - lat: 20.55552038
                          long: -103.34983289
                        - lat: 20.5555206
                          long: -103.34975665
                        - lat: 20.55552075
                          long: -103.34970544
                        - lat: 20.55552104
                          long: -103.34960633
                        - lat: 20.55552143
                          long: -103.34947122
                        - lat: 20.55552148
                          long: -103.34946922
                        - lat: 20.55552273
                          long: -103.34941865
                        - lat: 20.5555244
                          long: -103.3493506
                        - lat: 20.55552643
                          long: -103.34926834
                        - lat: 20.55552739
                          long: -103.34922919
                        - lat: 20.55552928
                          long: -103.34915274
                        - lat: 20.55552925
                          long: -103.34915153
                        - lat: 20.55552914
                          long: -103.34914532
                        - lat: 20.55552796
                          long: -103.349082
                        - lat: 20.55552723
                          long: -103.34904301
                        - lat: 20.55552658
                          long: -103.34900767
                        - lat: 20.55552401
                          long: -103.34886938
                        - lat: 20.55552312
                          long: -103.34870858
                        - lat: 20.55552292
                          long: -103.34867139
                        - lat: 20.55552272
                          long: -103.348634
                        - lat: 20.55552249
                          long: -103.34859327
                        - lat: 20.55552098
                          long: -103.34831761
                        - lat: 20.55552085
                          long: -103.34830104
                        - lat: 20.55552007
                          long: -103.34820315
                        - lat: 20.55551761
                          long: -103.34789203
                        - lat: 20.55551744
                          long: -103.34787135
                        - lat: 20.55551616
                          long: -103.34770989
                        - lat: 20.55551577
                          long: -103.34766064
                        - lat: 20.55551576
                          long: -103.34766006
                        - lat: 20.55551548
                          long: -103.34763207
                        - lat: 20.55551372
                          long: -103.34746073
                        - lat: 20.55551076
                          long: -103.34717204
                        - lat: 20.55551086
                          long: -103.34714581
                        - lat: 20.55551102
                          long: -103.34710543
                        - lat: 20.55551122
                          long: -103.34705522
                        - lat: 20.55550229
                          long: -103.34690589
                        - lat: 20.55549994
                          long: -103.34686654
                        - lat: 20.55548868
                          long: -103.3466782
                        - lat: 20.55548817
                          long: -103.34666974
                        - lat: 20.55548123
                          long: -103.34655367
                        - lat: 20.55547463
                          long: -103.34644332
                        - lat: 20.555455
                          long: -103.34626328
                        - lat: 20.55544574
                          long: -103.34617867
                        - lat: 20.55543388
                          long: -103.3460703
                        - lat: 20.55542463
                          long: -103.3459858
                        - lat: 20.55542441
                          long: -103.3459837
                        - lat: 20.55541357
                          long: -103.34588469
                        - lat: 20.55541124
                          long: -103.34586425
                        - lat: 20.55541095
                          long: -103.34586163
                        - lat: 20.55538629
                          long: -103.34564502
                        - lat: 20.55538275
                          long: -103.34561688
                        - lat: 20.55535287
                          long: -103.34537962
                        - lat: 20.55534124
                          long: -103.34528734
                        - lat: 20.55534025
                          long: -103.34527947
                        - lat: 20.55533771
                          long: -103.34523116
                        - lat: 20.55528085
                          long: -103.3441237
                        - lat: 20.55526789
                          long: -103.34387131
                        - lat: 20.5552407
                          long: -103.34334162
                        - lat: 20.55523439
                          long: -103.34321888
                        - lat: 20.55522322
                          long: -103.34312964
                        - lat: 20.55521064
                          long: -103.34313457
                        - lat: 20.55520705
                          long: -103.3430682
                        - lat: 20.55520346
                          long: -103.34300149
                        - lat: 20.55519631
                          long: -103.34286833
                        - lat: 20.55519256
                          long: -103.34279857
                        - lat: 20.55518909
                          long: -103.34273387
                        - lat: 20.55518547
                          long: -103.3426665
                        - lat: 20.55518366
                          long: -103.3426329
                        - lat: 20.5551818
                          long: -103.34259828
                        - lat: 20.55517827
                          long: -103.34253252
                        - lat: 20.55517496
                          long: -103.34247084
                        - lat: 20.5551711
                          long: -103.3423991
                        - lat: 20.55516463
                          long: -103.34234649
                        - lat: 20.55514067
                          long: -103.34215181
                        - lat: 20.55502542
                          long: -103.34121527
                        - lat: 20.55501728
                          long: -103.34114912
                        - lat: 20.55500218
                          long: -103.34102643
                        - lat: 20.55487922
                          long: -103.34002733
                        - lat: 20.55486382
                          long: -103.33990217
                        - lat: 20.55484167
                          long: -103.33972219
                        - lat: 20.55483119
                          long: -103.33963705
                        - lat: 20.5546338
                          long: -103.33803329
                        - lat: 20.55462305
                          long: -103.33794593
                        - lat: 20.5545736
                          long: -103.3375442
                        - lat: 20.55454488
                          long: -103.33731083
                        - lat: 20.55451633
                          long: -103.33707893
                        - lat: 20.55445201
                          long: -103.33660625
                        - lat: 20.55438659
                          long: -103.33612547
                        - lat: 20.55434912
                          long: -103.33585016
                        - lat: 20.55432514
                          long: -103.33567393
                        - lat: 20.55417196
                          long: -103.33454828
                        - lat: 20.55410257
                          long: -103.3341341
                        - lat: 20.554084
                          long: -103.33402322
                        - lat: 20.55399906
                          long: -103.33351616
                        - lat: 20.55398839
                          long: -103.33345248
                        - lat: 20.55379541
                          long: -103.33230051
                        - lat: 20.55381489
                          long: -103.33141231
                        - lat: 20.55380567
                          long: -103.33141001
                        - lat: 20.54799644
                          long: -103.32996163
                        - lat: 20.54752109
                          long: -103.32982519
                        - lat: 20.54704149
                          long: -103.32970667
                        - lat: 20.54655824
                          long: -103.32960622
                        - lat: 20.54634734
                          long: -103.32954215
                        - lat: 20.54613472
                          long: -103.32948481
                        - lat: 20.54592058
                          long: -103.32943425
                        - lat: 20.54585377
                          long: -103.3294153
                        - lat: 20.54564132
                          long: -103.32935504
                        - lat: 20.54504902
                          long: -103.32920112
                        - lat: 20.54431731
                          long: -103.32901624
                        - lat: 20.5442065
                          long: -103.32898824
                        - lat: 20.54382042
                          long: -103.3288907
                        - lat: 20.54380993
                          long: -103.32888848
                        - lat: 20.5436334
                          long: -103.32885105
                        - lat: 20.54310735
                          long: -103.32873954
                        - lat: 20.54292162
                          long: -103.32870016
                        - lat: 20.54269116
                          long: -103.32865131
                        - lat: 20.54267049
                          long: -103.32864693
                        - lat: 20.54266842
                          long: -103.3286259
                        - lat: 20.54260508
                          long: -103.32816896
                        - lat: 20.54259851
                          long: -103.32812155
                        - lat: 20.54259577
                          long: -103.32810174
                        - lat: 20.54257496
                          long: -103.32795161
                        - lat: 20.54256923
                          long: -103.32791029
                        - lat: 20.54245385
                          long: -103.32707787
                        - lat: 20.54240195
                          long: -103.32670352
                        - lat: 20.54236984
                          long: -103.32647187
                        - lat: 20.5423677
                          long: -103.32645651
                        - lat: 20.54230359
                          long: -103.32599613
                        - lat: 20.54213449
                          long: -103.32478185
                        - lat: 20.54212462
                          long: -103.32471098
                        - lat: 20.54207421
                          long: -103.32434903
                        - lat: 20.54207069
                          long: -103.32433905
                        - lat: 20.54206617
                          long: -103.32430939
                        - lat: 20.54201793
                          long: -103.32399304
                        - lat: 20.54201536
                          long: -103.32397618
                        - lat: 20.54196595
                          long: -103.32366318
                        - lat: 20.5419149
                          long: -103.32334384
                        - lat: 20.54186418
                          long: -103.32304776
                        - lat: 20.5418598
                          long: -103.32302223
                        - lat: 20.54184507
                          long: -103.32293624
                        - lat: 20.54180369
                          long: -103.32269473
                        - lat: 20.54174851
                          long: -103.32235579
                        - lat: 20.54169282
                          long: -103.32201358
                        - lat: 20.54166881
                          long: -103.32186967
                        - lat: 20.54166306
                          long: -103.32183517
                        - lat: 20.54163566
                          long: -103.32167097
                        - lat: 20.54160074
                          long: -103.32146165
                        - lat: 20.54158233
                          long: -103.32135124
                        - lat: 20.54157527
                          long: -103.32130894
                        - lat: 20.54153244
                          long: -103.32105221
                        - lat: 20.54151357
                          long: -103.3209391
                        - lat: 20.54147377
                          long: -103.32070463
                        - lat: 20.54145003
                          long: -103.32056475
                        - lat: 20.54139483
                          long: -103.32021952
                        - lat: 20.54138823
                          long: -103.32017824
                        - lat: 20.54130565
                          long: -103.31975108
                        - lat: 20.54129857
                          long: -103.31969782
                        - lat: 20.54129546
                          long: -103.31967449
                        - lat: 20.54124827
                          long: -103.31943966
                        - lat: 20.54112396
                          long: -103.31921577
                        - lat: 20.54008074
                          long: -103.31733694
                        - lat: 20.5398554
                          long: -103.31676506
                        - lat: 20.53994383
                          long: -103.31670962
                        - lat: 20.54019648
                          long: -103.31655124
                        - lat: 20.54062674
                          long: -103.31616289
                        - lat: 20.54060512
                          long: -103.31605255
                        - lat: 20.54058313
                          long: -103.31594027
                        - lat: 20.54057919
                          long: -103.3159202
                        - lat: 20.54054023
                          long: -103.31572133
                        - lat: 20.54092242
                          long: -103.31537574
                        - lat: 20.54097253
                          long: -103.31532292
                        - lat: 20.54103273
                          long: -103.31525453
                        - lat: 20.54148092
                          long: -103.31474537
                        - lat: 20.54213467
                          long: -103.31400267
                        - lat: 20.54248738
                          long: -103.31360197
                        - lat: 20.54269921
                          long: -103.31334506
                        - lat: 20.5426115
                          long: -103.31320298
                        - lat: 20.54252288
                          long: -103.31304802
                        - lat: 20.54243933
                          long: -103.31288991
                        - lat: 20.54236095
                          long: -103.31272884
                        - lat: 20.54228785
                          long: -103.31256501
                        - lat: 20.5422201
                          long: -103.31239859
                        - lat: 20.54217151
                          long: -103.31226697
                        - lat: 20.54213826
                          long: -103.31217103
                        - lat: 20.54210099
                          long: -103.31205884
                        - lat: 20.54204977
                          long: -103.3118859
                        - lat: 20.54200418
                          long: -103.31171119
                        - lat: 20.54196429
                          long: -103.31153491
                        - lat: 20.54193014
                          long: -103.31135729
                        - lat: 20.54214378
                          long: -103.31113659
                        - lat: 20.54208046
                          long: -103.31091806
                        - lat: 20.5420289
                          long: -103.31072782
                        - lat: 20.54200933
                          long: -103.31065282
                        - lat: 20.54199312
                          long: -103.31059065
                        - lat: 20.54198719
                          long: -103.31056792
                        - lat: 20.54191951
                          long: -103.31029463
                        - lat: 20.5419036
                          long: -103.31023188
                        - lat: 20.54197755
                          long: -103.31016814
                        - lat: 20.54196731
                          long: -103.30990234
                        - lat: 20.54195575
                          long: -103.30969745
                        - lat: 20.54195724
                          long: -103.3096601
                        - lat: 20.54195928
                          long: -103.30960891
                        - lat: 20.5419619
                          long: -103.30954312
                        - lat: 20.54196985
                          long: -103.30937861
                        - lat: 20.54197583
                          long: -103.30919771
                        - lat: 20.54201746
                          long: -103.30902189
                        - lat: 20.54189514
                          long: -103.30876043
                        - lat: 20.54186808
                          long: -103.30870258
                        - lat: 20.54121894
                          long: -103.30731505
                        - lat: 20.54117825
                          long: -103.30722809
                        - lat: 20.54095143
                          long: -103.30674327
                        - lat: 20.54080894
                          long: -103.30597382
                        - lat: 20.54078561
                          long: -103.30584782
                        - lat: 20.54073805
                          long: -103.30559103
                        - lat: 20.54068706
                          long: -103.30535442
                        - lat: 20.54067565
                          long: -103.30530149
                        - lat: 20.54068939
                          long: -103.30505454
                        - lat: 20.54069076
                          long: -103.30502992
                        - lat: 20.54069842
                          long: -103.30489213
                        - lat: 20.54063583
                          long: -103.30480901
                        - lat: 20.54054291
                          long: -103.30468563
                        - lat: 20.54030587
                          long: -103.30437088
                        - lat: 20.54005862
                          long: -103.3032996
                        - lat: 20.53989882
                          long: -103.30218381
                        - lat: 20.53943415
                          long: -103.30217537
                        - lat: 20.53933484
                          long: -103.3019251
                        - lat: 20.53949567
                          long: -103.30166124
                        - lat: 20.53965581
                          long: -103.3013985
                        - lat: 20.53966087
                          long: -103.30128113
                        - lat: 20.53966511
                          long: -103.3011825
                        - lat: 20.53967069
                          long: -103.30105305
                        - lat: 20.53959847
                          long: -103.30097626
                        - lat: 20.53957463
                          long: -103.30095091
                        - lat: 20.53947857
                          long: -103.30084876
                        - lat: 20.53919215
                          long: -103.30054419
                        - lat: 20.53901616
                          long: -103.30015767
                        - lat: 20.53899888
                          long: -103.29962498
                        - lat: 20.53890547
                          long: -103.29944616
                        - lat: 20.53852055
                          long: -103.29870929
                        - lat: 20.53851631
                          long: -103.29847518
                        - lat: 20.53851419
                          long: -103.298358
                        - lat: 20.53845711
                          long: -103.29823492
                        - lat: 20.53842187
                          long: -103.29815893
                        - lat: 20.53825314
                          long: -103.29779511
                        - lat: 20.53821965
                          long: -103.29772289
                        - lat: 20.53812936
                          long: -103.29752821
                        - lat: 20.53802186
                          long: -103.29732773
                        - lat: 20.53799956
                          long: -103.29728615
                        - lat: 20.53797512
                          long: -103.29724058
                        - lat: 20.53788671
                          long: -103.29707571
                        - lat: 20.53769083
                          long: -103.29671044
                        - lat: 20.53767662
                          long: -103.29655572
                        - lat: 20.53766672
                          long: -103.29644792
                        - lat: 20.53750531
                          long: -103.29636453
                        - lat: 20.53747976
                          long: -103.29635133
                        - lat: 20.53738478
                          long: -103.29630225
                        - lat: 20.53709562
                          long: -103.29615286
                        - lat: 20.53709786
                          long: -103.29614643
                        - lat: 20.53714751
                          long: -103.29600382
                        - lat: 20.53718008
                          long: -103.29591027
                        - lat: 20.53719286
                          long: -103.29587358
                        - lat: 20.53715047
                          long: -103.29585358
                        - lat: 20.53702231
                          long: -103.2957931
                        - lat: 20.53696357
                          long: -103.29576152
                        - lat: 20.53693982
                          long: -103.29575025
                        - lat: 20.53669193
                          long: -103.29563252
                        - lat: 20.53638415
                          long: -103.29548664
                        - lat: 20.53652101
                          long: -103.29515992
                        - lat: 20.53658937
                          long: -103.29499695
                        - lat: 20.53663214
                          long: -103.29489496
                        - lat: 20.53663857
                          long: -103.29487333
                        - lat: 20.53665362
                          long: -103.2948227
                        - lat: 20.53658856
                          long: -103.29477755
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/57d00b07b2dc9.png
                      id: 5644ce556aa918ea028b4b67
                      jurisdiction_elements:
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5de927dc0007544c098b4577
                              is_default: true
                              color: '#000000'
                              internal_name: zones_prod:Tlj_MX_Distritos_1
                              name: Distritos
                              description: Distritos
                              preset: true
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5de9282500075448098b459b
                              is_default: true
                              color: '#000000'
                              internal_name: zones_prod:Tlj_MX_Colonias_1
                              name: Colonias
                              description: Colonias
                              preset: true
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                          extent:
                            - -103.596649785
                            - 20.360408231
                            - -103.198544508
                            - 20.603946046
                          guided_module: false
                          id: 5c9b55679650e67d42985e83
                          location_additional_data: {}
                          name: mx.tlajomulco
                          type: city
                          visible_name: Tlajomulco
                          is_main: true
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 6638d0af20fe70f2010f8164
                          name: Prueba 750
                          type: city
                          visible_name: Prueba Tlajo
                          position: {}
                          is_main: false
                      jurisdiction_id: mx.tlajomulco
                      key_name: Tlajomulco de Zúñiga, Jal., México
                      locales:
                        - es_MX
                      name: Tlajomulco
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b17720
                          options: []
                        - id: 5850de88e22c6d9f51b17721
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                      lat: 20.4736255
                      long: -103.4478973
                      tags:
                        - name: Cultura
                          color: '#000000'
                          id: Cultura
                        - name: Convocatorias
                          color: '#000000'
                          id: Convocatorias
                        - name: General
                          color: '#000000'
                          id: General
                      third_emails:
                        - comentarios.tlajoapp@mejoratuciudad.org
                      timezone: America/Mexico_City
                      typologies:
                        - id: 5850dca2e22c6d9f51b00c12
                          color: '#0b8d12'
                          description_legend: 'Ej: Luminaria fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: >-
                            Tengo un problema con un elemento o servicio de la
                            ciudad
                          visible_name: Reporte
                          with_authorized_users: true
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                        - id: 5f2834bd1bc94bb3018b4577
                          color: '#eecccc'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                          location_type: geolocation
                          order: 2
                          public: true
                          typology_description: Solicitud de inspección ante una situación irregular
                          visible_name: Inspección
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                        - id: 5fbbe4d82d04ef7f048b4579
                          color: '#ecec29'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                          location_type: geolocation
                          order: 3
                          public: true
                          typology_description: Quiero denuncia una acción o una omisión
                          visible_name: Denuncia
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                        - id: 5fbbe0ca2d04ef7a048b457c
                          color: '#2d9dfa'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                          location_type: geolocation
                          order: 4
                          public: true
                          typology_description: Necesito asesoría en un trámite
                          visible_name: Asesoría
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                        - id: 6058e5585205ad07038b4568
                          color: '#fed049'
                          description_legend: Inscripción a un curso, iniciativa...
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                          location_type: geolocation
                          order: 5
                          public: true
                          typology_description: >-
                            Solicitud de participación en un programa, taller o
                            intervención
                          visible_name: Inscripción
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                      typology_nodes:
                        - id: 651a375298e2752898061092
                          order: -1
                          typology:
                            id: 651a36b9921b21b108013002
                            location_type: geolocation
                            order: 30
                            public: false
                            typology_description: Tipología de prueba
                            visible_name: Tramite QA
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 603d15df431c5aee0a8b4578
                          color: '#eb5e0b'
                          order: 0
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Datos Insuficientes
                        - id: 5fbbe6a799045771058b4567
                          color: '#2a93ed'
                          order: 0
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resolución Administrativa
                        - id: 5850dca2e22c6d9f51b00c68
                          color: '#d5d23b'
                          order: 1
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5f2835177cbbbdbd018b4567
                          color: '#63d423'
                          order: 1
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Inspección
                        - id: 5fbbe129b82eb242048b457d
                          color: '#ffd707'
                          order: 1
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5fbbe51748f572bf048b4579
                          color: '#ffe607'
                          order: 1
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 6058e715c5b80f6a028b4596
                          color: '#fed049'
                          order: 1
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 62461a20c2fe4d1a198b4589
                          color: '#ffc107'
                          order: 1
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Admitido
                        - id: 5850dca2e22c6d9f51b00c69
                          color: '#4d8fd2'
                          order: 2
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En Ejecución
                        - id: 5f2836157cbbbdcb018b4568
                          color: '#c219e0'
                          order: 2
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Visita
                        - id: 5fbbe15bb82eb23f048b45a0
                          color: '#1d83db'
                          order: 2
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 5fbbe56c99045769058b4594
                          color: '#2868e3'
                          order: 2
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Investigación
                        - id: 6058e7674420ab9a028b456f
                          color: '#f48b29'
                          order: 2
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Análisis
                        - id: 62461a34dc539f11198b4569
                          color: '#e91e63'
                          order: 2
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Auditoría
                        - id: 5850dca2e22c6d9f51b00c6a
                          color: '#0277BD'
                          order: 3
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Solucionado
                        - id: 5f2837d1119a47dc018b4586
                          color: '#855454'
                          order: 3
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Visita Planificada
                        - id: 5fbbe1bd48f572bd048b4576
                          color: '#1a8ced'
                          order: 3
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 5fbbe5919ed7a6d0048b457e
                          color: '#3294e8'
                          order: 3
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Averiguación
                        - id: 6058e8ec5205ad34038b4567
                          color: '#456268'
                          order: 3
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificar Ejecución
                        - id: 62461a58dc539f08198b4598
                          color: '#b0451a'
                          order: 3
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Asignación de área
                        - id: 5c759378df4463da068b4567
                          color: '#93d77d'
                          order: 4
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 5f2838d1119a47e6018b4567
                          color: '#635959'
                          order: 4
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Citatorio Planificado
                        - id: 5fbbe20a9904576d058b457d
                          color: '#a542c9'
                          order: 4
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Solucionado
                        - id: 5fbbe5d2db20ff87058b4584
                          color: '#9533b7'
                          order: 4
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Favorable
                        - id: 6058e91e4420aba4028b456c
                          color: '#456268'
                          order: 4
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificado por Contingencias
                        - id: 62461a7194f3b5b0188b4588
                          color: '#c7c5c5'
                          order: 4
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Retornado
                        - id: 5c7594d38aa30753078b4580
                          color: '#c979cd'
                          order: 5
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Validar Ejecución
                        - id: 5f2839022ebc5ec8018b456b
                          color: '#635959'
                          order: 5
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Apercibimiento Planificado
                        - id: 5fbbe2592d04ef7c048b458a
                          color: '#ed17d8'
                          order: 5
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Cancelado
                        - id: 5fbbe602db20ff87058b4585
                          color: '#9533b7'
                          order: 5
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: No Favorable
                        - id: 6058e94cb3cb2b43038b4567
                          color: '#008891'
                          order: 5
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En Ejecución
                        - id: 62461a9894f3b5b0188b4589
                          color: '#0c8418'
                          order: 5
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Notificado resolución
                        - id: 5c7595c4df4463eb068b4568
                          color: '#bd2bda'
                          order: 6
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Cancelado
                        - id: 5f28391f7cbbbde2018b4571
                          color: '#d96714'
                          order: 6
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Citatorio
                        - id: 5fbbe2872d04ef7d048b4592
                          color: '#ed4d4f'
                          order: 6
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 5fbbe636db20ff88058b458f
                          color: '#9533b7'
                          order: 6
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: No Procedente
                        - id: 6058e9a5cf374c7a028b4576
                          color: '#00587a'
                          order: 6
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Validar Ejecución
                        - id: 62461adddc539f09198b457f
                          color: '#005dc9'
                          order: 6
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En prevención
                        - id: 5850dca2e22c6d9f51b00c6b
                          color: '#2E7D32'
                          order: 7
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 5f28393f119a47e7018b456a
                          color: '#0392cf'
                          order: 7
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Apercibimiento
                        - id: 5fbbe2bddb20ff8b058b4568
                          color: '#61e32f'
                          order: 7
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 5fbbe66edb20ff8c058b4581
                          color: '#2a93ed'
                          order: 7
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 6058e9bb3786608c028b4567
                          color: '#0f3057'
                          order: 7
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 62461af394f3b5a3188b4598
                          color: '#00780c'
                          order: 7
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Vencido
                        - id: 5850dca2e22c6d9f51b00c6c
                          color: '#d22d1d'
                          order: 8
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 5fc421ebdb20ffd50a8b456a
                          color: '#a28c2a'
                          order: 8
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Dictamen
                        - id: 60099704108053ae068b4578
                          color: '#337ab7'
                          order: 8
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En Ejecución
                        - id: 5fbbe6de99045771058b4568
                          color: '#000000'
                          order: 8
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Solucionado
                        - id: 6058ed5937866093028b4568
                          color: '#22bc10'
                          order: 8
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Solucionado
                        - id: 62461b0894f3b5b0188b458a
                          color: '#0093ff'
                          order: 8
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Desechado
                        - id: 5c759694df4463ec068b458b
                          color: '#4866ac'
                          order: 9
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificar Ejecución
                        - id: 5f283ae51bc94bfc018b4567
                          color: '#62bfaf'
                          order: 9
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Requisitos Completos
                        - id: 60099a2adcc88c80058b45ad
                          color: '#786666'
                          order: 9
                          typology:
                            id: 5fbbe0ca2d04ef7a048b457c
                            color: '#2d9dfa'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe0ca7d602.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: Necesito asesoría en un trámite
                            visible_name: Asesoría
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificar Ejecución
                        - id: 5fbbe7192d04ef7e048b4582
                          order: 9
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Cancelado
                        - id: 6058ed7fcf374c81028b4567
                          color: '#0c8b3c'
                          order: 9
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 62461b2383f01017198b4591
                          color: '#ba9c9c'
                          order: 9
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Entrega de resolutivo
                        - id: 5c7596ca8aa30766078b457a
                          color: '#7c3e8e'
                          order: 10
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificado por Contingencias
                        - id: 5fbbe7469ed7a6ce048b4597
                          color: '#eb292b'
                          order: 10
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 6058edcacf374c86028b4567
                          color: '#f63636'
                          order: 10
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Cancelado
                        - id: 62461b3d94f3b59f188b4597
                          color: '#6b5b63'
                          order: 10
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Revaloración
                        - id: 5c759667df4463eb068b45d8
                          color: '#afb628'
                          order: 11
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificar Carga de Pipa
                        - id: 5f283b38119a47f9018b4567
                          color: '#2d0d66'
                          order: 11
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Clausura/Multa
                        - id: 5fbbe7699ed7a6d1048b4586
                          color: '#5fcf33'
                          order: 11
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 6058ede837866097028b4567
                          color: '#dd1a1a'
                          order: 11
                          typology:
                            id: 6058e5585205ad07038b4568
                            color: '#fed049'
                            description_legend: Inscripción a un curso, iniciativa...
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/62f3f47534a1f.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Solicitud de participación en un programa, taller
                              o intervención
                            visible_name: Inscripción
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 62461b6e648cf00e198b45aa
                          color: '#945454'
                          order: 11
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Finalizado
                        - id: 5c75962d71044b2b078b456f
                          color: '#744848'
                          order: 12
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Carga de Pipa
                        - id: 5f283be47cbbbd08028b4567
                          color: '#e85757'
                          order: 12
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Multa
                        - id: 62461b81264e80ad1b8b457a
                          color: '#5f6112'
                          order: 12
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Archivo
                        - id: 5c75948671044b27078b4572
                          color: '#70dd78'
                          order: 13
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Entrega de Pipa
                        - id: 5f6c8237d9e3cea3078b457c
                          color: '#c09090'
                          order: 13
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 5fe1204a9f890130028b458b
                          color: '#ef6c00'
                          order: 13
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Determinación
                        - id: 624b0f86dc539fcc198b45a8
                          color: '#10e364'
                          order: 13
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Notificado
                        - id: 5c75944d8aa3075c078b4588
                          color: '#d57e46'
                          order: 14
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 5fb80a5cdb20ff44048b4567
                          color: '#0c8b3c'
                          order: 14
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 5fe12079acba68e9018b4572
                          color: '#e91e63'
                          order: 14
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificar Averiguación
                        - id: 624b0fb8264e808b1c8b4578
                          color: '#0db5a2'
                          order: 14
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Emisión de resolución
                        - id: 5f8491d8eab928cb038b4584
                          color: '#ed1515'
                          order: 15
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: No Válido
                        - id: 5fb80a70db20ff41048b457d
                          color: '#dd1a1a'
                          order: 15
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 6272d6997a258a080a8b457e
                          color: '#0853c4'
                          order: 15
                          typology:
                            id: 5fbbe4d82d04ef7f048b4579
                            color: '#ecec29'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5fbbe4d803a5e.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero denuncia una acción o una omisión
                            visible_name: Denuncia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Revisión
                        - id: 624b19abdc539fd7198b4568
                          color: '#121cff'
                          order: 15
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Orden de pago
                        - id: 5f91f4569bd4a724028b4580
                          color: '#279158'
                          order: 16
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Taller Externo
                        - id: 5fb80a982d04ef42038b4567
                          color: '#22bc10'
                          order: 16
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Solucionado
                        - id: 624b1d09648cf0e3198b459b
                          color: '#f71e1e'
                          order: 16
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Espera de pago
                        - id: 5f91f59c79f3252c038b456c
                          color: '#0f7538'
                          order: 17
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Entrega de Unidad
                        - id: 5fb80aaf2d04ef3f038b4579
                          color: '#f63636'
                          order: 17
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Cancelado
                        - id: 6360036db338244b408b4589
                          color: '#176e55'
                          order: 17
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Acuse
                        - id: 5f93251779f32597068b4571
                          color: '#9c5151'
                          order: 18
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Taller Interno
                        - id: 636002ff7a258a75468b4583
                          color: '#0e3ce9'
                          order: 18
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Comprobante de pago
                        - id: 5f9b3401338c43bb0b8b456b
                          color: '#687bbd'
                          order: 19
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Válido
                        - id: 6360039e0b52f5a5268b4578
                          color: '#007b57'
                          order: 19
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Notificado orden de pago
                        - id: 621d3465648cf034108b4581
                          color: '#25b50d'
                          order: 20
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Apercibimiento
                        - id: 5f283c1f1bc94b06028b4567
                          color: '#fdfdfd'
                          order: 20
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Incompetente
                        - id: 636003dfce6be4a5268b4567
                          color: '#4e7b34'
                          order: 20
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 6232126d648cf001158b456d
                          color: '#1b118f'
                          order: 21
                          typology:
                            id: 5850dca2e22c6d9f51b00c12
                            color: '#0b8d12'
                            description_legend: 'Ej: Luminaria fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e973d544c284.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: >-
                              Tengo un problema con un elemento o servicio de la
                              ciudad
                            visible_name: Reporte
                            with_authorized_users: true
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Validar Cancelación
                        - id: 5f283ac87cbbbdf8018b4567
                          color: '#fdfdfd'
                          order: 21
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Requisitos Completos
                        - id: 636017adb332dd47408b458b
                          color: '#ff0808'
                          order: 21
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 5f283b1c7cbbbdff018b456d
                          color: '#fdfdfd'
                          order: 22
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Clausura/Multa
                        - id: 63a0df7cb3382455508b4582
                          color: '#e3cece'
                          order: 22
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Supervisión
                        - id: 5f283bd22ebc5ede018b4567
                          color: '#fdfdfd'
                          order: 23
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Multa
                        - id: 63a0dfa20b52f535368b4573
                          color: '#f77777'
                          order: 23
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Revisión
                        - id: 5f283c091bc94b03028b4568
                          color: '#842020'
                          order: 24
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Incompetente
                        - id: 63a0e28cb332dd3b508b456d
                          color: '#10489b'
                          order: 24
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Firma
                        - id: 623222e394f3b59e148b4567
                          color: '#3a2300'
                          order: 25
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Validar Ejecución
                        - id: 63c6bea7ce6be41e6a8b456c
                          color: '#13b797'
                          order: 25
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validación
                        - id: 623222ac94f3b59c148b4573
                          color: '#121e05'
                          order: 26
                          typology:
                            id: 5f2834bd1bc94bb3018b4577
                            color: '#eecccc'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5f2834bccd0e3.png
                            location_type: geolocation
                            order: 2
                            public: true
                            typology_description: >-
                              Solicitud de inspección ante una situación
                              irregular
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Validar Cancelación
                        - id: 645526c0a2078c39d4085468
                          color: '#d19709'
                          order: 27
                          typology:
                            id: 624619b9c2fe4d18198b458c
                            color: '#8f99e5'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/624619b9b6d44.png
                            location_type: none
                            order: 6
                            public: false
                            typology_description: >-
                              Tipología enfocada en los trámites y servicios del
                              municipio de Tlajomulco
                            visible_name: Trámites
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Check
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: true
                        service_survey: false
                        alerts: true
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: true
                        planning: true
                        users: true
                        predetermined_response: true
                        predetermined_response_external_source: true
                        company_enquiry: true
                        layer: true
                        jurisdiction_element: false
                        webhook: true
                        user_guide: true
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: https://mapa.mejoratuciudad.org
                        google_play_manager: >-
                          https://play.google.com/store/apps/details?id=com.radmas.iycp.production
                        google_play_citizens: >-
                          https://play.google.com/store/apps/details?id=com.radmas.iyc.tlajomulco.mx
                        app_store: https://itunes.apple.com/es/app/tlajoapp/id1062533937
                    - only_registered_users: true
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7c9de2efef4018b4578
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Zap_MX__Base_1
                          name: Ciudad
                          description: Ciudad
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5de926f80007544c098b4568
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Zap_MX_Distritos
                          name: Distritos
                          description: Distritos
                          preset: true
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5e98156d272bfd04038b45de
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Zap_MX_Colonias_160420
                          name: Colonias
                          description: Colonias
                          preset: true
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5cb6e8833f960e8b457a
                          name: Gestores Avisos
                        - external: false
                          id: 5e2f5d2101394ad80d8b45f5
                          name: Técnicos Avisos
                        - external: true
                          id: 5e2f5d97e8833f980e8b456a
                          name: Atención Ciudadana 02
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5e5f8bf15bc890d2048b45a9
                          name: Gestores Inspecciones
                        - external: false
                          id: 5e5f8c09c0faacdb048b459e
                          name: Técnicos Inspecciones
                        - external: false
                          id: 5e5f8c5e3b5399d7048b45ee
                          name: Gestores de la plataforma
                        - external: false
                          id: 5e73bd8502be88c10f8b4568
                          name: Comunicación
                        - external: false
                          id: 5e8bdba402be8882258b4584
                          name: Supervisores Inspecciones
                        - external: false
                          id: 5e8f476a02be8840288b4570
                          name: I Horarios Normales
                        - external: false
                          id: 5e8f4785ce38c478278b45be
                          name: I Horarios Especiales
                        - external: false
                          id: 5e94d7c102be88f82b8b4575
                          name: Supervisores Avisos
                        - external: false
                          id: 6116bf2c69819736098b4588
                          name: Gestores Avisos Empresa
                        - external: false
                          id: 6116d0d45fc66aa7088b4586
                          name: Coordinación Servicios Municipales
                        - external: false
                          id: 6116e3b597366e68098b4568
                          name: Oficina Digital
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: false
                          id: 66f482359ae3acf15d059a26
                          name: rtrt
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      company_emails:
                        - comentarios.zapopan@mejoratuciudad.org
                      geo_bound:
                        - lat: 20.996223
                          long: -103.30642734
                        - lat: 20.58476254
                          long: -103.66082962
                      geo_perimeter:
                        - lat: 20.88528669
                          long: -103.34458989
                        - lat: 20.88497896
                          long: -103.3432484
                        - lat: 20.88389829
                          long: -103.34205867
                        - lat: 20.88169593
                          long: -103.34157693
                        - lat: 20.87990256
                          long: -103.34039507
                        - lat: 20.87762178
                          long: -103.33795384
                        - lat: 20.87500307
                          long: -103.33741351
                        - lat: 20.87273393
                          long: -103.33617376
                        - lat: 20.86945392
                          long: -103.3348187
                        - lat: 20.86738788
                          long: -103.33356628
                        - lat: 20.8666004
                          long: -103.33199412
                        - lat: 20.8654578
                          long: -103.33055237
                        - lat: 20.86468511
                          long: -103.33049767
                        - lat: 20.86285203
                          long: -103.33133993
                        - lat: 20.86054813
                          long: -103.33262998
                        - lat: 20.85835192
                          long: -103.33278066
                        - lat: 20.85584705
                          long: -103.33173338
                        - lat: 20.85416871
                          long: -103.33017118
                        - lat: 20.85242355
                          long: -103.32785103
                        - lat: 20.85080704
                          long: -103.32654114
                        - lat: 20.84901915
                          long: -103.32592866
                        - lat: 20.84705433
                          long: -103.32544459
                        - lat: 20.84429761
                          long: -103.32605011
                        - lat: 20.84163925
                          long: -103.32753364
                        - lat: 20.83886395
                          long: -103.32920807
                        - lat: 20.83738103
                          long: -103.3294141
                        - lat: 20.83607999
                          long: -103.32999745
                        - lat: 20.83526146
                          long: -103.33133411
                        - lat: 20.83426106
                          long: -103.33229343
                        - lat: 20.83242795
                          long: -103.33313547
                        - lat: 20.83088195
                          long: -103.33296284
                        - lat: 20.82811604
                          long: -103.33248613
                        - lat: 20.82692269
                          long: -103.33193032
                        - lat: 20.82590013
                          long: -103.33061403
                        - lat: 20.82464923
                          long: -103.33024852
                        - lat: 20.82286751
                          long: -103.33026816
                        - lat: 20.82166984
                          long: -103.32926993
                        - lat: 20.82028228
                          long: -103.32707274
                        - lat: 20.81842822
                          long: -103.32576573
                        - lat: 20.81813188
                          long: -103.32583221
                        - lat: 20.81707581
                          long: -103.32717135
                        - lat: 20.81625421
                          long: -103.32819182
                        - lat: 20.81519689
                          long: -103.32940451
                        - lat: 20.81229967
                          long: -103.33076387
                        - lat: 20.80933814
                          long: -103.3316182
                        - lat: 20.80697112
                          long: -103.33252917
                        - lat: 20.8048441
                          long: -103.3336903
                        - lat: 20.80294606
                          long: -103.33396398
                        - lat: 20.80207689
                          long: -103.33389642
                        - lat: 20.80176888
                          long: -103.33276208
                        - lat: 20.80158088
                          long: -103.33175285
                        - lat: 20.80190707
                          long: -103.32865214
                        - lat: 20.80160335
                          long: -103.32796022
                        - lat: 20.80005488
                          long: -103.32753485
                        - lat: 20.79702102
                          long: -103.32706267
                        - lat: 20.79624278
                          long: -103.32643921
                        - lat: 20.79563407
                          long: -103.32492903
                        - lat: 20.79472407
                          long: -103.32297978
                        - lat: 20.7936464
                          long: -103.32210685
                        - lat: 20.79180282
                          long: -103.32187443
                        - lat: 20.79061995
                          long: -103.32239312
                        - lat: 20.78962389
                          long: -103.32379456
                        - lat: 20.78773512
                          long: -103.32501623
                        - lat: 20.78521725
                          long: -103.32472221
                        - lat: 20.7836063
                          long: -103.3239816
                        - lat: 20.78247047
                          long: -103.32323576
                        - lat: 20.78215808
                          long: -103.32165926
                        - lat: 20.78243525
                          long: -103.31963386
                        - lat: 20.78270806
                          long: -103.31716611
                        - lat: 20.7824488
                          long: -103.31495705
                        - lat: 20.78127691
                          long: -103.31054624
                        - lat: 20.78042242
                          long: -103.30821746
                        - lat: 20.77951911
                          long: -103.30696359
                        - lat: 20.77868515
                          long: -103.3067201
                        - lat: 20.77660338
                          long: -103.30642734
                        - lat: 20.77470476
                          long: -103.3066381
                        - lat: 20.77108072
                          long: -103.30655211
                        - lat: 20.76728659
                          long: -103.30728951
                        - lat: 20.76514979
                          long: -103.30743969
                        - lat: 20.76245377
                          long: -103.30899175
                        - lat: 20.76243339
                          long: -103.30904969
                        - lat: 20.76025024
                          long: -103.31052731
                        - lat: 20.75889792
                          long: -103.31193248
                        - lat: 20.75703743
                          long: -103.31398587
                        - lat: 20.75561702
                          long: -103.31450712
                        - lat: 20.75406667
                          long: -103.31389245
                        - lat: 20.75209092
                          long: -103.31241056
                        - lat: 20.75060343
                          long: -103.31384795
                        - lat: 20.74996876
                          long: -103.31555769
                        - lat: 20.74887027
                          long: -103.3172608
                        - lat: 20.74823429
                          long: -103.31901126
                        - lat: 20.74733236
                          long: -103.32006621
                        - lat: 20.74734424
                          long: -103.32171015
                        - lat: 20.74453596
                          long: -103.32638171
                        - lat: 20.74388539
                          long: -103.32647107
                        - lat: 20.74333876
                          long: -103.32702897
                        - lat: 20.74262263
                          long: -103.32718949
                        - lat: 20.74131259
                          long: -103.3264524
                        - lat: 20.73998754
                          long: -103.32644349
                        - lat: 20.73917232
                          long: -103.32614721
                        - lat: 20.73835306
                          long: -103.32592139
                        - lat: 20.73753209
                          long: -103.32551945
                        - lat: 20.7371351
                          long: -103.32557079
                        - lat: 20.73672152
                          long: -103.32618591
                        - lat: 20.7364156
                          long: -103.32651805
                        - lat: 20.73617305
                          long: -103.32656788
                        - lat: 20.73592558
                          long: -103.32658609
                        - lat: 20.73565884
                          long: -103.32662001
                        - lat: 20.73554286
                          long: -103.32667809
                        - lat: 20.73543134
                          long: -103.32669481
                        - lat: 20.73531536
                          long: -103.32675289
                        - lat: 20.73525795
                          long: -103.32684131
                        - lat: 20.7351583
                          long: -103.32707996
                        - lat: 20.73509729
                          long: -103.32729752
                        - lat: 20.73507027
                          long: -103.32751471
                        - lat: 20.73508947
                          long: -103.32754441
                        - lat: 20.73505679
                          long: -103.327578
                        - lat: 20.73480812
                          long: -103.32812085
                        - lat: 20.73448011
                          long: -103.32845321
                        - lat: 20.73397395
                          long: -103.32881454
                        - lat: 20.73307833
                          long: -103.32902922
                        - lat: 20.73281523
                          long: -103.32899938
                        - lat: 20.73252456
                          long: -103.32898338
                        - lat: 20.73231759
                          long: -103.32903757
                        - lat: 20.73207177
                          long: -103.32916222
                        - lat: 20.73197234
                          long: -103.32923081
                        - lat: 20.73188679
                          long: -103.3292892
                        - lat: 20.73187644
                          long: -103.32929136
                        - lat: 20.73140929
                          long: -103.32955574
                        - lat: 20.7309751
                          long: -103.32982467
                        - lat: 20.73016344
                          long: -103.32990455
                        - lat: 20.73005737
                          long: -103.32986823
                        - lat: 20.72997061
                          long: -103.32992352
                        - lat: 20.72990255
                          long: -103.32993022
                        - lat: 20.72951022
                          long: -103.33006981
                        - lat: 20.72940588
                          long: -103.33021807
                        - lat: 20.72931302
                          long: -103.33029264
                        - lat: 20.72916523
                          long: -103.33057549
                        - lat: 20.72902457
                          long: -103.33075443
                        - lat: 20.72893671
                          long: -103.33092414
                        - lat: 20.72886288
                          long: -103.3309457
                        - lat: 20.72865747
                          long: -103.33107863
                        - lat: 20.72851131
                          long: -103.33123934
                        - lat: 20.72835787
                          long: -103.33134728
                        - lat: 20.72827176
                          long: -103.33158043
                        - lat: 20.72823653
                          long: -103.33172359
                        - lat: 20.7282856
                          long: -103.3321687
                        - lat: 20.72822999
                          long: -103.33230777
                        - lat: 20.72803568
                          long: -103.33248509
                        - lat: 20.72794337
                          long: -103.3326159
                        - lat: 20.72782623
                          long: -103.33270372
                        - lat: 20.72777477
                          long: -103.33285139
                        - lat: 20.72771396
                          long: -103.33287369
                        - lat: 20.72768645
                          long: -103.3329735
                        - lat: 20.72769999
                          long: -103.3331118
                        - lat: 20.72770154
                          long: -103.33327187
                        - lat: 20.72774805
                          long: -103.33345309
                        - lat: 20.72781478
                          long: -103.33362109
                        - lat: 20.72789312
                          long: -103.3337284
                        - lat: 20.72795637
                          long: -103.3337877
                        - lat: 20.72815331
                          long: -103.33434576
                        - lat: 20.7279342
                          long: -103.33458364
                        - lat: 20.72710383
                          long: -103.3345731
                        - lat: 20.7266235
                          long: -103.33489545
                        - lat: 20.72658395
                          long: -103.33488945
                        - lat: 20.72635618
                          long: -103.33489627
                        - lat: 20.72616212
                          long: -103.33502387
                        - lat: 20.72605848
                          long: -103.33524566
                        - lat: 20.72606009
                          long: -103.33527354
                        - lat: 20.72600395
                          long: -103.33531121
                        - lat: 20.72494835
                          long: -103.33681416
                        - lat: 20.72416928
                          long: -103.33829443
                        - lat: 20.72377464
                          long: -103.33936436
                        - lat: 20.72317298
                          long: -103.34086317
                        - lat: 20.72312684
                          long: -103.34081965
                        - lat: 20.72310084
                          long: -103.34089646
                        - lat: 20.72222426
                          long: -103.3411557
                        - lat: 20.72199528
                          long: -103.34128053
                        - lat: 20.72197957
                          long: -103.34136983
                        - lat: 20.72177789
                          long: -103.34160444
                        - lat: 20.72150154
                          long: -103.34164669
                        - lat: 20.72105877
                          long: -103.34165151
                        - lat: 20.720523
                          long: -103.34157885
                        - lat: 20.71993303
                          long: -103.34162452
                        - lat: 20.71947805
                          long: -103.34227703
                        - lat: 20.71926328
                          long: -103.34296618
                        - lat: 20.71888947
                          long: -103.34315009
                        - lat: 20.71795123
                          long: -103.34343502
                        - lat: 20.71762426
                          long: -103.3439038
                        - lat: 20.7171269
                          long: -103.34405229
                        - lat: 20.71586739
                          long: -103.34427864
                        - lat: 20.71618747
                          long: -103.34527794
                        - lat: 20.71616403
                          long: -103.34561294
                        - lat: 20.7159466
                          long: -103.34602738
                        - lat: 20.71624416
                          long: -103.34671653
                        - lat: 20.71716834
                          long: -103.34735727
                        - lat: 20.71694972
                          long: -103.34775376
                        - lat: 20.7167627
                          long: -103.34839287
                        - lat: 20.71667801
                          long: -103.35001636
                        - lat: 20.71637505
                          long: -103.35090955
                        - lat: 20.71611997
                          long: -103.35147244
                        - lat: 20.71557754
                          long: -103.3523906
                        - lat: 20.71528679
                          long: -103.35302468
                        - lat: 20.71516422
                          long: -103.35350887
                        - lat: 20.71532186
                          long: -103.35464109
                        - lat: 20.71538981
                          long: -103.35504174
                        - lat: 20.71555328
                          long: -103.35574429
                        - lat: 20.71557064
                          long: -103.35606975
                        - lat: 20.71553864
                          long: -103.35644876
                        - lat: 20.71527018
                          long: -103.35676442
                        - lat: 20.71459445
                          long: -103.35763506
                        - lat: 20.71417995
                          long: -103.35825295
                        - lat: 20.71401868
                          long: -103.35852732
                        - lat: 20.71374293
                          long: -103.35949966
                        - lat: 20.71324735
                          long: -103.36110671
                        - lat: 20.71284688
                          long: -103.36245146
                        - lat: 20.71287973
                          long: -103.36299968
                        - lat: 20.7129989
                          long: -103.36570173
                        - lat: 20.71303247
                          long: -103.36698653
                        - lat: 20.7131173
                          long: -103.36795836
                        - lat: 20.71319746
                          long: -103.36910767
                        - lat: 20.7132853
                          long: -103.37015569
                        - lat: 20.71340106
                          long: -103.3704949
                        - lat: 20.71371722
                          long: -103.37096999
                        - lat: 20.71384102
                          long: -103.37124471
                        - lat: 20.71379256
                          long: -103.37161328
                        - lat: 20.71340824
                          long: -103.37308501
                        - lat: 20.71323385
                          long: -103.37386898
                        - lat: 20.71314998
                          long: -103.37415512
                        - lat: 20.71299703
                          long: -103.3744604
                        - lat: 20.71243818
                          long: -103.37487122
                        - lat: 20.71223177
                          long: -103.37506917
                        - lat: 20.7119798
                          long: -103.37578812
                        - lat: 20.71175918
                          long: -103.37688572
                        - lat: 20.71133967
                          long: -103.37950557
                        - lat: 20.71115784
                          long: -103.3809521
                        - lat: 20.71104127
                          long: -103.38178138
                        - lat: 20.71028562
                          long: -103.38550946
                        - lat: 20.70987969
                          long: -103.3876948
                        - lat: 20.70963972
                          long: -103.38863207
                        - lat: 20.70949945
                          long: -103.38978167
                        - lat: 20.70939404
                          long: -103.39085914
                        - lat: 20.7095814
                          long: -103.39189575
                        - lat: 20.71004201
                          long: -103.39270288
                        - lat: 20.71094069
                          long: -103.39380754
                        - lat: 20.71147063
                          long: -103.39442889
                        - lat: 20.71179587
                          long: -103.39501086
                        - lat: 20.7119329
                          long: -103.39541542
                        - lat: 20.71198255
                          long: -103.39562911
                        - lat: 20.71204748
                          long: -103.39623722
                        - lat: 20.71192467
                          long: -103.39683681
                        - lat: 20.7114447
                          long: -103.39832185
                        - lat: 20.71094477
                          long: -103.3997861
                        - lat: 20.7108241
                          long: -103.40061658
                        - lat: 20.71098567
                          long: -103.40206339
                        - lat: 20.71132905
                          long: -103.40394599
                        - lat: 20.71159076
                          long: -103.40447857
                        - lat: 20.71178033
                          long: -103.40468652
                        - lat: 20.7118729
                          long: -103.40508441
                        - lat: 20.71186653
                          long: -103.40546235
                        - lat: 20.71169286
                          long: -103.40590502
                        - lat: 20.71130106
                          long: -103.4062555
                        - lat: 20.71014782
                          long: -103.40649848
                        - lat: 20.7096261
                          long: -103.40668237
                        - lat: 20.70951275
                          long: -103.40688477
                        - lat: 20.70948024
                          long: -103.40692942
                        - lat: 20.70387132
                          long: -103.40259647
                        - lat: 20.70348119
                          long: -103.40287445
                        - lat: 20.70294137
                          long: -103.40310033
                        - lat: 20.70208323
                          long: -103.40329209
                        - lat: 20.70136957
                          long: -103.40232773
                        - lat: 20.70108969
                          long: -103.40200078
                        - lat: 20.70087923
                          long: -103.40192274
                        - lat: 20.70019652
                          long: -103.40194327
                        - lat: 20.69970936
                          long: -103.40188151
                        - lat: 20.69951148
                          long: -103.40180334
                        - lat: 20.69939202
                          long: -103.40158616
                        - lat: 20.69929335
                          long: -103.40135092
                        - lat: 20.69932347
                          long: -103.4009806
                        - lat: 20.699455
                          long: -103.40068946
                        - lat: 20.69959138
                          long: -103.40046959
                        - lat: 20.69963161
                          long: -103.40028417
                        - lat: 20.69955737
                          long: -103.39996844
                        - lat: 20.69941103
                          long: -103.39956876
                        - lat: 20.69918442
                          long: -103.39955777
                        - lat: 20.69853915
                          long: -103.39972502
                        - lat: 20.69805298
                          long: -103.39977024
                        - lat: 20.69740835
                          long: -103.39972899
                        - lat: 20.69693844
                          long: -103.39955146
                        - lat: 20.69667111
                          long: -103.39933862
                        - lat: 20.69521009
                          long: -103.39832553
                        - lat: 20.69426712
                          long: -103.40237762
                        - lat: 20.69376545
                          long: -103.40355526
                        - lat: 20.69328239
                          long: -103.40438945
                        - lat: 20.6930136
                          long: -103.40480683
                        - lat: 20.69280687
                          long: -103.40504079
                        - lat: 20.69258568
                          long: -103.40516346
                        - lat: 20.69182665
                          long: -103.40427986
                        - lat: 20.69179582
                          long: -103.4035781
                        - lat: 20.6915523
                          long: -103.4035539
                        - lat: 20.6913499
                          long: -103.40344012
                        - lat: 20.69119343
                          long: -103.40330357
                        - lat: 20.69111911
                          long: -103.40297894
                        - lat: 20.69101231
                          long: -103.40277055
                        - lat: 20.69170696
                          long: -103.40117003
                        - lat: 20.6916833
                          long: -103.39933751
                        - lat: 20.69084939
                          long: -103.39783185
                        - lat: 20.68905961
                          long: -103.39955175
                        - lat: 20.6874194
                          long: -103.40077216
                        - lat: 20.68714348
                          long: -103.40154261
                        - lat: 20.68388908
                          long: -103.40110995
                        - lat: 20.68179658
                          long: -103.40092443
                        - lat: 20.68108779
                          long: -103.40085472
                        - lat: 20.68096667
                          long: -103.40152271
                        - lat: 20.68071558
                          long: -103.40190218
                        - lat: 20.68067831
                          long: -103.40332296
                        - lat: 20.68022791
                          long: -103.40333679
                        - lat: 20.67808766
                          long: -103.40326583
                        - lat: 20.67822731
                          long: -103.40260886
                        - lat: 20.67494204
                          long: -103.40266452
                        - lat: 20.67485684
                          long: -103.40217456
                        - lat: 20.67485641
                          long: -103.40212848
                        - lat: 20.674476
                          long: -103.39994093
                        - lat: 20.67103146
                          long: -103.40010476
                        - lat: 20.67063712
                          long: -103.40079011
                        - lat: 20.66753025
                          long: -103.40287772
                        - lat: 20.66707239
                          long: -103.40282749
                        - lat: 20.66694826
                          long: -103.40247117
                        - lat: 20.66674784
                          long: -103.40226236
                        - lat: 20.66640164
                          long: -103.40215595
                        - lat: 20.66609141
                          long: -103.40220504
                        - lat: 20.66590496
                          long: -103.40257378
                        - lat: 20.665585
                          long: -103.40250376
                        - lat: 20.66353878
                          long: -103.40147985
                        - lat: 20.66241562
                          long: -103.40077091
                        - lat: 20.6612804
                          long: -103.39980579
                        - lat: 20.66023484
                          long: -103.39850751
                        - lat: 20.65980487
                          long: -103.39786444
                        - lat: 20.6596009
                          long: -103.39730346
                        - lat: 20.65728322
                          long: -103.39884814
                        - lat: 20.65708004
                          long: -103.39837164
                        - lat: 20.65683738
                          long: -103.3979237
                        - lat: 20.65659498
                          long: -103.39750392
                        - lat: 20.65627322
                          long: -103.39709905
                        - lat: 20.65457564
                          long: -103.39220354
                        - lat: 20.65051219
                          long: -103.39927771
                        - lat: 20.6497035
                          long: -103.39878262
                        - lat: 20.64909801
                          long: -103.39846439
                        - lat: 20.64867273
                          long: -103.39836066
                        - lat: 20.64692028
                          long: -103.39836098
                        - lat: 20.64588696
                          long: -103.39857917
                        - lat: 20.64463535
                          long: -103.39905207
                        - lat: 20.64297824
                          long: -103.39990786
                        - lat: 20.64235783
                          long: -103.3988956
                        - lat: 20.64205557
                          long: -103.39833079
                        - lat: 20.64183
                          long: -103.39780124
                        - lat: 20.6418338
                          long: -103.39729634
                        - lat: 20.64192237
                          long: -103.39678153
                        - lat: 20.64214705
                          long: -103.39630136
                        - lat: 20.64234827
                          long: -103.3960378
                        - lat: 20.64230654
                          long: -103.3951998
                        - lat: 20.64159609
                          long: -103.39545969
                        - lat: 20.63840922
                          long: -103.39698964
                        - lat: 20.63780816
                          long: -103.3971492
                        - lat: 20.63740043
                          long: -103.39710839
                        - lat: 20.63688836
                          long: -103.39688838
                        - lat: 20.63643668
                          long: -103.39664257
                        - lat: 20.63568044
                          long: -103.397736
                        - lat: 20.63441818
                          long: -103.39962483
                        - lat: 20.63359386
                          long: -103.40081215
                        - lat: 20.62814932
                          long: -103.4022927
                        - lat: 20.62750977
                          long: -103.40247079
                        - lat: 20.62107996
                          long: -103.40415744
                        - lat: 20.62090661
                          long: -103.40354026
                        - lat: 20.62107931
                          long: -103.40235983
                        - lat: 20.62134045
                          long: -103.40058063
                        - lat: 20.62083495
                          long: -103.40023025
                        - lat: 20.62021076
                          long: -103.40112592
                        - lat: 20.61958652
                          long: -103.40201566
                        - lat: 20.61924189
                          long: -103.40498307
                        - lat: 20.62018529
                          long: -103.40745498
                        - lat: 20.62009656
                          long: -103.40870453
                        - lat: 20.62009311
                          long: -103.41059173
                        - lat: 20.61984266
                          long: -103.41090348
                        - lat: 20.61926631
                          long: -103.41134984
                        - lat: 20.61858754
                          long: -103.41175662
                        - lat: 20.61789347
                          long: -103.41202466
                        - lat: 20.61784417
                          long: -103.41200314
                        - lat: 20.61604443
                          long: -103.41721947
                        - lat: 20.6199014
                          long: -103.42341434
                        - lat: 20.61626953
                          long: -103.42577876
                        - lat: 20.61626761
                          long: -103.42577878
                        - lat: 20.61573784
                          long: -103.42584554
                        - lat: 20.61406195
                          long: -103.42502594
                        - lat: 20.61329918
                          long: -103.42460864
                        - lat: 20.61224109
                          long: -103.42271563
                        - lat: 20.61181259
                          long: -103.42121205
                        - lat: 20.61149325
                          long: -103.42118146
                        - lat: 20.61093434
                          long: -103.42111944
                        - lat: 20.60976975
                          long: -103.4211145
                        - lat: 20.6094043
                          long: -103.42076926
                        - lat: 20.60926593
                          long: -103.42056587
                        - lat: 20.60915385
                          long: -103.420484
                        - lat: 20.60907627
                          long: -103.420458
                        - lat: 20.60900268
                          long: -103.42042634
                        - lat: 20.60893794
                          long: -103.42036664
                        - lat: 20.60883273
                          long: -103.42019731
                        - lat: 20.60867469
                          long: -103.42007876
                        - lat: 20.60836157
                          long: -103.42003674
                        - lat: 20.60735009
                          long: -103.41980387
                        - lat: 20.60701601
                          long: -103.41969842
                        - lat: 20.6063987
                          long: -103.41957029
                        - lat: 20.60616491
                          long: -103.41949838
                        - lat: 20.60606442
                          long: -103.41943571
                        - lat: 20.60599003
                          long: -103.41940126
                        - lat: 20.60591801
                          long: -103.41937176
                        - lat: 20.6054085
                          long: -103.41918851
                        - lat: 20.60531316
                          long: -103.41915325
                        - lat: 20.60184775
                          long: -103.4198728
                        - lat: 20.60016392
                          long: -103.42021562
                        - lat: 20.59963124
                          long: -103.42035306
                        - lat: 20.59909724
                          long: -103.42035025
                        - lat: 20.59696316
                          long: -103.42022543
                        - lat: 20.59505719
                          long: -103.42017136
                        - lat: 20.58963491
                          long: -103.42004432
                        - lat: 20.58881631
                          long: -103.41849947
                        - lat: 20.5886481
                          long: -103.41827854
                        - lat: 20.58476254
                          long: -103.42348966
                        - lat: 20.5856734
                          long: -103.42388067
                        - lat: 20.58794301
                          long: -103.43094728
                        - lat: 20.58891742
                          long: -103.43368829
                        - lat: 20.58902764
                          long: -103.43361068
                        - lat: 20.58964304
                          long: -103.43521055
                        - lat: 20.59064078
                          long: -103.43801645
                        - lat: 20.5909074
                          long: -103.43883991
                        - lat: 20.59156564
                          long: -103.44090157
                        - lat: 20.59140342
                          long: -103.44103594
                        - lat: 20.59127974
                          long: -103.44118013
                        - lat: 20.59128131
                          long: -103.44135367
                        - lat: 20.5912728
                          long: -103.44147627
                        - lat: 20.59136189
                          long: -103.44176122
                        - lat: 20.59151918
                          long: -103.44214758
                        - lat: 20.59196294
                          long: -103.44192531
                        - lat: 20.59427422
                          long: -103.44845166
                        - lat: 20.59584733
                          long: -103.44837512
                        - lat: 20.5962096
                          long: -103.44833717
                        - lat: 20.59670396
                          long: -103.44864119
                        - lat: 20.59663965
                          long: -103.44879946
                        - lat: 20.59631882
                          long: -103.45095868
                        - lat: 20.59642821
                          long: -103.4510435
                        - lat: 20.59643957
                          long: -103.45153616
                        - lat: 20.59604129
                          long: -103.4530681
                        - lat: 20.59789418
                          long: -103.47098764
                        - lat: 20.59640063
                          long: -103.47934643
                        - lat: 20.59639261
                          long: -103.47948743
                        - lat: 20.59600021
                          long: -103.48050315
                        - lat: 20.59591323
                          long: -103.48204609
                        - lat: 20.59243242
                          long: -103.49197258
                        - lat: 20.59138478
                          long: -103.4929079
                        - lat: 20.59326847
                          long: -103.4944086
                        - lat: 20.59102986
                          long: -103.49499157
                        - lat: 20.59089395
                          long: -103.49498603
                        - lat: 20.59030163
                          long: -103.49518121
                        - lat: 20.59670036
                          long: -103.52535278
                        - lat: 20.59731561
                          long: -103.52770163
                        - lat: 20.59384432
                          long: -103.5277642
                        - lat: 20.59316132
                          long: -103.54541443
                        - lat: 20.59132687
                          long: -103.54884121
                        - lat: 20.58877084
                          long: -103.56733313
                        - lat: 20.60531541
                          long: -103.6019595
                        - lat: 20.60591168
                          long: -103.60391861
                        - lat: 20.61367779
                          long: -103.63090921
                        - lat: 20.62809322
                          long: -103.62598216
                        - lat: 20.63185069
                          long: -103.64418192
                        - lat: 20.68328376
                          long: -103.64063611
                        - lat: 20.6843807
                          long: -103.64043712
                        - lat: 20.70399787
                          long: -103.63920708
                        - lat: 20.70814322
                          long: -103.63884357
                        - lat: 20.74067703
                          long: -103.6398535
                        - lat: 20.76549971
                          long: -103.63723021
                        - lat: 20.76793279
                          long: -103.637601
                        - lat: 20.78447983
                          long: -103.63521192
                        - lat: 20.78529287
                          long: -103.64891275
                        - lat: 20.79287861
                          long: -103.64739954
                        - lat: 20.79741611
                          long: -103.64667617
                        - lat: 20.80045918
                          long: -103.6461147
                        - lat: 20.80449939
                          long: -103.65210854
                        - lat: 20.81563009
                          long: -103.64934631
                        - lat: 20.81863688
                          long: -103.65288483
                        - lat: 20.84119142
                          long: -103.65534793
                        - lat: 20.84153818
                          long: -103.65492622
                        - lat: 20.84172406
                          long: -103.65472636
                        - lat: 20.84190873
                          long: -103.65451601
                        - lat: 20.84217418
                          long: -103.65423826
                        - lat: 20.84258747
                          long: -103.65394869
                        - lat: 20.84302828
                          long: -103.65357029
                        - lat: 20.84338815
                          long: -103.65323704
                        - lat: 20.84361434
                          long: -103.65299298
                        - lat: 20.84390116
                          long: -103.65270453
                        - lat: 20.84416764
                          long: -103.65241565
                        - lat: 20.84447617
                          long: -103.65201649
                        - lat: 20.8454782
                          long: -103.65077507
                        - lat: 20.84615675
                          long: -103.65004285
                        - lat: 20.84672694
                          long: -103.64984887
                        - lat: 20.84733229
                          long: -103.64961432
                        - lat: 20.84755917
                          long: -103.64945793
                        - lat: 20.84809526
                          long: -103.64927716
                        - lat: 20.84840309
                          long: -103.6490762
                        - lat: 20.84964151
                          long: -103.64860264
                        - lat: 20.85036331
                          long: -103.64820037
                        - lat: 20.85089922
                          long: -103.64799736
                        - lat: 20.85135401
                          long: -103.64781731
                        - lat: 20.85249794
                          long: -103.64738872
                        - lat: 20.85370492
                          long: -103.64693794
                        - lat: 20.85442723
                          long: -103.64660112
                        - lat: 20.85488045
                          long: -103.64650876
                        - lat: 20.85556246
                          long: -103.64621674
                        - lat: 20.85564115
                          long: -103.64588567
                        - lat: 20.855804
                          long: -103.64548806
                        - lat: 20.85612154
                          long: -103.64508908
                        - lat: 20.85641746
                          long: -103.64466836
                        - lat: 20.85653975
                          long: -103.64442459
                        - lat: 20.85672501
                          long: -103.64414812
                        - lat: 20.8568671
                          long: -103.6438387
                        - lat: 20.85739577
                          long: -103.6427221
                        - lat: 20.85774019
                          long: -103.64236671
                        - lat: 20.85795531
                          long: -103.64265131
                        - lat: 20.86745308
                          long: -103.64276367
                        - lat: 20.86777647
                          long: -103.64328414
                        - lat: 20.87052258
                          long: -103.64621494
                        - lat: 20.87108491
                          long: -103.6467824
                        - lat: 20.87398879
                          long: -103.65043295
                        - lat: 20.87536583
                          long: -103.65178556
                        - lat: 20.87757998
                          long: -103.65447342
                        - lat: 20.87850134
                          long: -103.65589684
                        - lat: 20.8825312
                          long: -103.66030796
                        - lat: 20.88428001
                          long: -103.66040299
                        - lat: 20.88469635
                          long: -103.66031098
                        - lat: 20.88506788
                          long: -103.66064893
                        - lat: 20.88576265
                          long: -103.66082962
                        - lat: 20.8860307
                          long: -103.66073953
                        - lat: 20.88634009
                          long: -103.66073678
                        - lat: 20.88664011
                          long: -103.66069026
                        - lat: 20.88702367
                          long: -103.6606424
                        - lat: 20.88755995
                          long: -103.66048384
                        - lat: 20.88782834
                          long: -103.660437
                        - lat: 20.88826333
                          long: -103.66046618
                        - lat: 20.8886997
                          long: -103.66067199
                        - lat: 20.88901922
                          long: -103.66052136
                        - lat: 20.89063581
                          long: -103.66017176
                        - lat: 20.89140052
                          long: -103.66027035
                        - lat: 20.89279627
                          long: -103.66005706
                        - lat: 20.89338742
                          long: -103.65998332
                        - lat: 20.89333069
                          long: -103.65966118
                        - lat: 20.89306163
                          long: -103.65962331
                        - lat: 20.89256593
                          long: -103.65948412
                        - lat: 20.8925633
                          long: -103.65914888
                        - lat: 20.89246997
                          long: -103.65876699
                        - lat: 20.89224489
                          long: -103.65857733
                        - lat: 20.89250328
                          long: -103.65833516
                        - lat: 20.89298273
                          long: -103.65848996
                        - lat: 20.89336201
                          long: -103.65847247
                        - lat: 20.89354782
                          long: -103.65826233
                        - lat: 20.89366332
                          long: -103.65801497
                        - lat: 20.89385377
                          long: -103.65782221
                        - lat: 20.89431176
                          long: -103.65804826
                        - lat: 20.89470777
                          long: -103.65785908
                        - lat: 20.89499644
                          long: -103.65751885
                        - lat: 20.89542107
                          long: -103.65723629
                        - lat: 20.8956615
                          long: -103.65708033
                        - lat: 20.89574733
                          long: -103.65679357
                        - lat: 20.89613189
                          long: -103.65658467
                        - lat: 20.89643445
                          long: -103.65628876
                        - lat: 20.89674078
                          long: -103.65589699
                        - lat: 20.89680626
                          long: -103.65546351
                        - lat: 20.89704527
                          long: -103.65527091
                        - lat: 20.89735034
                          long: -103.65543673
                        - lat: 20.89778133
                          long: -103.65553233
                        - lat: 20.89808039
                          long: -103.65536443
                        - lat: 20.89861939
                          long: -103.6549799
                        - lat: 20.89894672
                          long: -103.65496076
                        - lat: 20.89944074
                          long: -103.65474335
                        - lat: 20.90014288
                          long: -103.65456856
                        - lat: 20.90044457
                          long: -103.6544481
                        - lat: 20.90077791
                          long: -103.65404556
                        - lat: 20.90195471
                          long: -103.65340655
                        - lat: 20.9081705
                          long: -103.65379953
                        - lat: 20.91321874
                          long: -103.65313391
                        - lat: 20.91747976
                          long: -103.65123409
                        - lat: 20.91765122
                          long: -103.6483365
                        - lat: 20.91975463
                          long: -103.64397349
                        - lat: 20.92420495
                          long: -103.64145101
                        - lat: 20.92651902
                          long: -103.63915455
                        - lat: 20.92746104
                          long: -103.63542231
                        - lat: 20.92880825
                          long: -103.6337551
                        - lat: 20.93218187
                          long: -103.6329888
                        - lat: 20.93327165
                          long: -103.63288709
                        - lat: 20.94121173
                          long: -103.62929784
                        - lat: 20.94564511
                          long: -103.62470571
                        - lat: 20.94855198
                          long: -103.62364464
                        - lat: 20.95008671
                          long: -103.62114776
                        - lat: 20.95163145
                          long: -103.61989217
                        - lat: 20.95454498
                          long: -103.61965853
                        - lat: 20.95725411
                          long: -103.61818528
                        - lat: 20.96093161
                          long: -103.61628923
                        - lat: 20.96323717
                          long: -103.61030992
                        - lat: 20.96337551
                          long: -103.60612758
                        - lat: 20.96491165
                          long: -103.60383719
                        - lat: 20.96409523
                          long: -103.59908556
                        - lat: 20.96385488
                          long: -103.59350092
                        - lat: 20.95913757
                          long: -103.58713068
                        - lat: 20.95734725
                          long: -103.58218161
                        - lat: 20.96090592
                          long: -103.57737253
                        - lat: 20.96293321
                          long: -103.5761283
                        - lat: 20.9654614
                          long: -103.57631129
                        - lat: 20.96738927
                          long: -103.57443071
                        - lat: 20.96655987
                          long: -103.56823087
                        - lat: 20.96360643
                          long: -103.56370677
                        - lat: 20.96396544
                          long: -103.56018571
                        - lat: 20.96664421
                          long: -103.55519392
                        - lat: 20.96785971
                          long: -103.55250951
                        - lat: 20.9693193
                          long: -103.54978814
                        - lat: 20.97300121
                          long: -103.54851103
                        - lat: 20.97708413
                          long: -103.54867854
                        - lat: 20.97978902
                          long: -103.54678995
                        - lat: 20.98169353
                          long: -103.5422188
                        - lat: 20.98280988
                          long: -103.53641354
                        - lat: 20.98510099
                          long: -103.53163145
                        - lat: 20.98721729
                          long: -103.52912737
                        - lat: 20.98875412
                          long: -103.52704281
                        - lat: 20.996223
                          long: -103.52468164
                        - lat: 20.99219596
                          long: -103.50803221
                        - lat: 20.98882001
                          long: -103.49401298
                        - lat: 20.9838443
                          long: -103.48301901
                        - lat: 20.97187396
                          long: -103.47288829
                        - lat: 20.96597207
                          long: -103.46389942
                        - lat: 20.97568102
                          long: -103.45098721
                        - lat: 20.98118211
                          long: -103.44846241
                        - lat: 20.98514471
                          long: -103.44658619
                        - lat: 20.98986435
                          long: -103.44305654
                        - lat: 20.99317934
                          long: -103.44181967
                        - lat: 20.99542351
                          long: -103.44040399
                        - lat: 20.9954684
                          long: -103.43882127
                        - lat: 20.99539798
                          long: -103.43761949
                        - lat: 20.99464805
                          long: -103.43357675
                        - lat: 20.99385381
                          long: -103.43118004
                        - lat: 20.99342698
                          long: -103.429982
                        - lat: 20.99245801
                          long: -103.42796689
                        - lat: 20.99088926
                          long: -103.42532522
                        - lat: 20.98942517
                          long: -103.42116361
                        - lat: 20.98884245
                          long: -103.4159802
                        - lat: 20.98657437
                          long: -103.41181785
                        - lat: 20.97926681
                          long: -103.41164197
                        - lat: 20.97023776
                          long: -103.40521966
                        - lat: 20.9658231
                          long: -103.40019029
                        - lat: 20.9595638
                          long: -103.39778918
                        - lat: 20.95540418
                          long: -103.39257685
                        - lat: 20.95185429
                          long: -103.39066842
                        - lat: 20.95124056
                          long: -103.38811362
                        - lat: 20.9518673
                          long: -103.38371781
                        - lat: 20.95147603
                          long: -103.37778877
                        - lat: 20.94831024
                          long: -103.37592483
                        - lat: 20.94443234
                          long: -103.37413192
                        - lat: 20.94150408
                          long: -103.37226556
                        - lat: 20.93845279
                          long: -103.36995776
                        - lat: 20.93607595
                          long: -103.36985696
                        - lat: 20.93375486
                          long: -103.36937598
                        - lat: 20.93250951
                          long: -103.36849134
                        - lat: 20.92977571
                          long: -103.36833116
                        - lat: 20.92888182
                          long: -103.36802454
                        - lat: 20.92744192
                          long: -103.3665219
                        - lat: 20.92605109
                          long: -103.36394335
                        - lat: 20.9254408
                          long: -103.36224198
                        - lat: 20.92429112
                          long: -103.36004043
                        - lat: 20.92167064
                          long: -103.35930986
                        - lat: 20.91845563
                          long: -103.35852253
                        - lat: 20.91570297
                          long: -103.35640184
                        - lat: 20.9128068
                          long: -103.35503537
                        - lat: 20.91319815
                          long: -103.35250096
                        - lat: 20.91241997
                          long: -103.35187693
                        - lat: 20.91063459
                          long: -103.35151693
                        - lat: 20.90790994
                          long: -103.35230573
                        - lat: 20.90630335
                          long: -103.35200702
                        - lat: 20.90534943
                          long: -103.35163794
                        - lat: 20.90393199
                          long: -103.35247568
                        - lat: 20.90251088
                          long: -103.35293394
                        - lat: 20.90173758
                          long: -103.35281589
                        - lat: 20.8992328
                          long: -103.35176802
                        - lat: 20.89371374
                          long: -103.35227102
                        - lat: 20.89216287
                          long: -103.35159225
                        - lat: 20.88970893
                          long: -103.3496585
                        - lat: 20.88769255
                          long: -103.34745588
                        - lat: 20.88571859
                          long: -103.34602292
                        - lat: 20.88541307
                          long: -103.34514088
                        - lat: 20.88528669
                          long: -103.34458989
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/569fbfcab7d8a.png
                      id: 5644ce8e6aa918f3028b456f
                      jurisdiction_elements:
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5d9ee7c9de2efef4018b4578
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Zap_MX__Base_1
                              name: Ciudad
                              description: Ciudad
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5de926f80007544c098b4568
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Zap_MX_Distritos
                              name: Distritos
                              description: Distritos
                              preset: true
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5e98156d272bfd04038b45de
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Zap_MX_Colonias_160420
                              name: Colonias
                              description: Colonias
                              preset: true
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                          extent:
                            - -103.66082961871
                            - 20.584762535141
                            - -103.30642733903
                            - 20.996223003911
                          id: 5c9b556b9650e67d42985e84
                          location_additional_data: {}
                          name: mx.zapopan
                          type: city
                          visible_name: Zapopan
                          is_main: true
                      jurisdiction_id: mx.zapopan
                      key_name: Zapopan, Jal., México
                      locales:
                        - es_MX
                      name: Ciudapp Zapopan
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 5850de88e22c6d9f51b17721
                          options:
                            - inperson
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                      lat: 20.6719788
                      long: -103.4164066
                      tags:
                        - name: Dependencias
                          color: '#00bcd4'
                          id: Dependencias
                        - name: Ciudadano
                          color: '#9e9e9e'
                          id: Ciudadano
                        - name: Turismo
                          color: '#880e4f'
                          id: Turismo
                        - name: Educación
                          color: '#000000'
                          id: Educación
                        - name: Emprendedores
                          color: '#000000'
                          id: Emprendedores
                        - name: Instituto de la mujer
                          color: '#4527a0'
                          id: Instituto de la mujer
                        - name: Salud
                          color: '#f50057'
                          id: Salud
                        - name: Seguridad
                          color: '#c22b63'
                          id: Seguridad
                        - name: Medio ambiente
                          color: '#558b2f'
                          id: Medio ambiente
                        - name: Cultura
                          color: '#000000'
                          id: Cultura
                        - name: Deportes
                          color: '#000000'
                          id: Deportes
                        - name: Social
                          color: '#000000'
                          id: Social
                        - name: General
                          color: '#000000'
                          id: General
                        - name: Juventud
                          color: '#ad1457'
                          id: Juventud
                      timezone: America/Mexico_City
                      typologies: []
                      typology_nodes:
                        - id: 5850dca2e22c6d9f51b00c71
                          color: '#d35400'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 5979ab4c60f2845b178b457a
                          color: '#993399'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultado
                        - id: 59674a36d403f6100f8b456d
                          color: '#3abdaa'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 5979ab3360f2841e168b45ff
                          color: '#b39ddb'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En consulta
                        - id: 59674c9d518ef5490d8b45b2
                          color: '#b71b1c'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 59674b15c6c381860d8b4743
                          color: '#8cbc2d'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validado
                        - id: 5850dca2e22c6d9f51b00c6e
                          color: '#0c98f5'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En progreso
                        - id: 5850dca2e22c6d9f51b00c6d
                          color: '#f1c40f'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5850dca2e22c6d9f51b00c6f
                          color: '#21618c'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 5850dca2e22c6d9f51b00c70
                          color: '#33691e'
                          order: 0
                          typology:
                            id: 5850dca2e22c6d9f51b00c13
                            color: '#0b8d12'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a34d952c2.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 5e84a6af02be88d71f8b457a
                          color: '#f7bc1b'
                          order: 1
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Inspección
                        - id: 5e84a6e4586d1cdf208b456d
                          color: '#5488f0'
                          order: 2
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Visita
                        - id: 5e84a70402be88d61f8b45b9
                          color: '#e6a467'
                          order: 3
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Citatorio
                        - id: 5e84a725586d1cdf208b4577
                          color: '#3dd6eb'
                          order: 4
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Apercibimiento
                        - id: 5e84a7af1078bd5d228b4585
                          color: '#e2c0eb'
                          order: 5
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Requisitos Completos
                        - id: 5e84a7ec02be88d91f8b459b
                          color: '#e61c1d'
                          order: 6
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Incompetente
                        - id: 5e84a8171078bd5d228b4586
                          color: '#f04a9a'
                          order: 7
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Multa
                        - id: 5e84a8471078bd51228b4571
                          color: '#af4aed'
                          order: 8
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar Multa y Clausura
                        - id: 5e84a8de02be88d81f8b4596
                          color: '#e047ed'
                          order: 9
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Requisitos Completos
                        - id: 5e84a903ce38c4371f8b4572
                          color: '#f71631'
                          order: 10
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Incompetente
                        - id: 5e84a928ce38c4271f8b457e
                          color: '#f52589'
                          order: 11
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Multa
                        - id: 5e84a944586d1cc1208b45a4
                          color: '#ad0fd9'
                          order: 12
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Multa y Clausura
                        - id: 5e84a9711078bd5e228b45a3
                          color: '#9ab2ed'
                          order: 13
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Visita Planificada
                        - id: 5e84a99b02be8861208b456f
                          color: '#f0bf92'
                          order: 14
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificado en citatorio
                        - id: 5e84a9bf586d1cdf208b457b
                          color: '#6edbeb'
                          order: 15
                          typology:
                            id: 5e84a2b4ce38c4251f8b4590
                            color: '#2566eb'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5e84a2b3e6b44.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero solicitar una inspección de un comercio,
                              una construcción o de medio ambiente
                            visible_name: Inspección
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificado en apercibimiento
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: true
                        service_survey: false
                        alerts: true
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: true
                        planning: false
                        users: false
                        predetermined_response: true
                        predetermined_response_external_source: false
                        company_enquiry: true
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: null
                        google_play_manager: null
                        google_play_citizens: null
                        app_store: null
                    - only_registered_users: true
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers: []
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5cb6e8833f960e8b457a
                          name: Gestores Avisos
                        - external: false
                          id: 5e2f5d2101394ad80d8b45f5
                          name: Técnicos Avisos
                        - external: true
                          id: 5e2f5d97e8833f980e8b456a
                          name: Atención Ciudadana 02
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5e5f8c5e3b5399d7048b45ee
                          name: Gestores de la plataforma
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                      company_emails:
                        - comentarios.santillanadelmar@radmas.com
                      geo_bound:
                        - lat: 43.42820987527291
                          long: -4.0441134
                        - lat: 43.361985
                          long: -4.1441952
                      geo_perimeter:
                        - lat: 43.3837573
                          long: -4.0441134
                        - lat: 43.3837964
                          long: -4.0447684
                        - lat: 43.3836125
                          long: -4.045185
                        - lat: 43.3829749
                          long: -4.0459765
                        - lat: 43.3828723
                          long: -4.0463698
                        - lat: 43.3860161
                          long: -4.0511525
                        - lat: 43.3863081
                          long: -4.0517131
                        - lat: 43.3908473
                          long: -4.0578213
                        - lat: 43.3909242
                          long: -4.0579247
                        - lat: 43.3941348
                          long: -4.0622454
                        - lat: 43.3948474
                          long: -4.0630851
                        - lat: 43.3957474
                          long: -4.0660397
                        - lat: 43.3962772
                          long: -4.0739026
                        - lat: 43.3962304
                          long: -4.074087
                        - lat: 43.396378
                          long: -4.0746699
                        - lat: 43.3965288
                          long: -4.0768336
                        - lat: 43.3964583
                          long: -4.0776226
                        - lat: 43.3965086
                          long: -4.0780187
                        - lat: 43.3977515
                          long: -4.0799053
                        - lat: 43.3980108
                          long: -4.0800952
                        - lat: 43.3986903
                          long: -4.0815644
                        - lat: 43.3988149
                          long: -4.0817148
                        - lat: 43.4014678
                          long: -4.083034
                        - lat: 43.4058525
                          long: -4.0887808
                        - lat: 43.4066107
                          long: -4.0904741
                        - lat: 43.4071027
                          long: -4.0955343
                        - lat: 43.4090322
                          long: -4.0933829
                        - lat: 43.4138506
                          long: -4.0895046
                        - lat: 43.4153698
                          long: -4.0897665
                        - lat: 43.416309
                          long: -4.0904257
                        - lat: 43.416757300000015
                          long: -4.0823916539062495
                        - lat: 43.426582096193805
                          long: -4.081598640136718
                        - lat: 43.42501931433424
                          long: -4.088591349707024
                        - lat: 43.42676545373117
                          long: -4.092582399999995
                        - lat: 43.424193
                          long: -4.0955582
                        - lat: 43.4244346
                          long: -4.0957108
                        - lat: 43.4245672
                          long: -4.0959726
                        - lat: 43.4249938
                          long: -4.096561
                        - lat: 43.42820987527291
                          long: -4.0973628455078215
                        - lat: 43.4256494
                          long: -4.0967334
                        - lat: 43.4257923
                          long: -4.0968595
                        - lat: 43.4260146
                          long: -4.0971326
                        - lat: 43.4265577
                          long: -4.0977999
                        - lat: 43.4262959
                          long: -4.0982305
                        - lat: 43.4262432
                          long: -4.098231
                        - lat: 43.4261896
                          long: -4.0980185
                        - lat: 43.4261182
                          long: -4.0979238
                        - lat: 43.4259833
                          long: -4.0980639
                        - lat: 43.4259622
                          long: -4.0979474
                        - lat: 43.4259843
                          long: -4.0978371
                        - lat: 43.4258787
                          long: -4.0978481
                        - lat: 43.425788
                          long: -4.0979792
                        - lat: 43.4256495
                          long: -4.097847
                        - lat: 43.4254478
                          long: -4.0979395
                        - lat: 43.4253692
                          long: -4.0979737
                        - lat: 43.4252951
                          long: -4.0980055
                        - lat: 43.4251535
                          long: -4.0981422
                        - lat: 43.4250506
                          long: -4.0981942
                        - lat: 43.4249845
                          long: -4.0982306
                        - lat: 43.4249444
                          long: -4.0982548
                        - lat: 43.424875
                          long: -4.098278
                        - lat: 43.4248255
                          long: -4.0982941
                        - lat: 43.424772
                          long: -4.0982992
                        - lat: 43.4247747
                          long: -4.0983835
                        - lat: 43.4247775
                          long: -4.0984182
                        - lat: 43.4247803
                          long: -4.0984533
                        - lat: 43.4247979
                          long: -4.0985222
                        - lat: 43.4248163
                          long: -4.0985908
                        - lat: 43.4248428
                          long: -4.098651
                        - lat: 43.4248676
                          long: -4.0987112
                        - lat: 43.4248887
                          long: -4.0987526
                        - lat: 43.4249978
                          long: -4.09871
                        - lat: 43.4251136
                          long: -4.0986516
                        - lat: 43.4251272
                          long: -4.0987821
                        - lat: 43.425168
                          long: -4.0988612
                        - lat: 43.4252216
                          long: -4.0989197
                        - lat: 43.4252891
                          long: -4.0987713
                        - lat: 43.4253745
                          long: -4.0988298
                        - lat: 43.4254296
                          long: -4.0990725
                        - lat: 43.4254501
                          long: -4.0992537
                        - lat: 43.4254396
                          long: -4.099457
                        - lat: 43.4256044
                          long: -4.1000079
                        - lat: 43.4258299
                          long: -4.1000936
                        - lat: 43.4258031
                          long: -4.1003426
                        - lat: 43.425729
                          long: -4.1007161
                        - lat: 43.4256124
                          long: -4.100891
                        - lat: 43.425447
                          long: -4.1008831
                        - lat: 43.4253367
                          long: -4.1010028
                        - lat: 43.4252642
                          long: -4.1009965
                        - lat: 43.4252311
                          long: -4.1011053
                        - lat: 43.4252721
                          long: -4.1012172
                        - lat: 43.4251539
                          long: -4.101411
                        - lat: 43.4250625
                          long: -4.1015859
                        - lat: 43.4249411
                          long: -4.1015181
                        - lat: 43.4248655
                          long: -4.1013684
                        - lat: 43.4246922
                          long: -4.1013275
                        - lat: 43.4246796
                          long: -4.1015953
                        - lat: 43.4246228
                          long: -4.1017009
                        - lat: 43.4244432
                          long: -4.1016426
                        - lat: 43.4242493
                          long: -4.102272
                        - lat: 43.4245098
                          long: -4.1025602
                        - lat: 43.4243671
                          long: -4.1030154
                        - lat: 43.4239865
                          long: -4.1035081
                        - lat: 43.4238861
                          long: -4.103509
                        - lat: 43.4239186
                          long: -4.103097
                        - lat: 43.4237614
                          long: -4.1032698
                        - lat: 43.4236774
                          long: -4.103892
                        - lat: 43.4237351
                          long: -4.1042216
                        - lat: 43.4235618
                          long: -4.104755
                        - lat: 43.4230745
                          long: -4.1052007
                        - lat: 43.4231979
                          long: -4.1059439
                        - lat: 43.4227352
                          long: -4.1064961
                        - lat: 43.4223959
                          long: -4.1061917
                        - lat: 43.422216
                          long: -4.1058236
                        - lat: 43.4218664
                          long: -4.1068712
                        - lat: 43.4214756
                          long: -4.1075083
                        - lat: 43.4213265
                          long: -4.1067509
                        - lat: 43.4209512
                          long: -4.1075578
                        - lat: 43.4207045
                          long: -4.1091221
                        - lat: 43.4200927
                          long: -4.1120597
                        - lat: 43.4198527
                          long: -4.1126986
                        - lat: 43.4197189
                          long: -4.1126955
                        - lat: 43.4195694
                          long: -4.1129657
                        - lat: 43.4195443
                          long: -4.1127236
                        - lat: 43.4195942
                          long: -4.1124739
                        - lat: 43.4195785
                          long: -4.1121964
                        - lat: 43.4192054
                          long: -4.1117107
                        - lat: 43.4190013
                          long: -4.1114735
                        - lat: 43.4190149
                          long: -4.1114032
                        - lat: 43.4189605
                          long: -4.1113564
                        - lat: 43.4189103
                          long: -4.1113698
                        - lat: 43.4188664
                          long: -4.1117606
                        - lat: 43.4187542
                          long: -4.1120984
                        - lat: 43.4185774
                          long: -4.1127876
                        - lat: 43.4186284
                          long: -4.1128609
                        - lat: 43.4184969
                          long: -4.1135507
                        - lat: 43.4183631
                          long: -4.1136803
                        - lat: 43.4183053
                          long: -4.1138348
                        - lat: 43.4184051
                          long: -4.1140034
                        - lat: 43.4183937
                          long: -4.1141943
                        - lat: 43.4181376
                          long: -4.11482
                        - lat: 43.4180276
                          long: -4.1153939
                        - lat: 43.4180298
                          long: -4.1155859
                        - lat: 43.4179545
                          long: -4.1157583
                        - lat: 43.4178376
                          long: -4.115879
                        - lat: 43.4176837
                          long: -4.1157422
                        - lat: 43.4175122
                          long: -4.1158736
                        - lat: 43.4174367
                          long: -4.1157651
                        - lat: 43.4173568
                          long: -4.1158
                        - lat: 43.4173451
                          long: -4.1159072
                        - lat: 43.4174382
                          long: -4.1159594
                        - lat: 43.4174191
                          long: -4.1161245
                        - lat: 43.4173665
                          long: -4.1162988
                        - lat: 43.4173665
                          long: -4.116433
                        - lat: 43.4175219
                          long: -4.1161874
                        - lat: 43.4177129
                          long: -4.1160721
                        - lat: 43.4178779
                          long: -4.1161173
                        - lat: 43.4179155
                          long: -4.1163001
                        - lat: 43.4178148
                          long: -4.1163887
                        - lat: 43.4176104
                          long: -4.1166526
                        - lat: 43.4174935
                          long: -4.1166824
                        - lat: 43.4174766
                          long: -4.1171411
                        - lat: 43.4173264
                          long: -4.1174221
                        - lat: 43.4170719
                          long: -4.1173726
                        - lat: 43.4168688
                          long: -4.1176415
                        - lat: 43.4168621
                          long: -4.1178669
                        - lat: 43.4173056
                          long: -4.1196166
                        - lat: 43.4173305
                          long: -4.1201646
                        - lat: 43.4162586
                          long: -4.1222614
                        - lat: 43.4162722
                          long: -4.1238819
                        - lat: 43.4149951
                          long: -4.1256813
                        - lat: 43.4150925
                          long: -4.1269339
                        - lat: 43.4146348
                          long: -4.1274412
                        - lat: 43.4148044
                          long: -4.1279176
                        - lat: 43.4146483
                          long: -4.1284219
                        - lat: 43.4149401
                          long: -4.1289543
                        - lat: 43.4145314
                          long: -4.1294847
                        - lat: 43.4146076
                          long: -4.1299724
                        - lat: 43.4143755
                          long: -4.1309384
                        - lat: 43.4145771
                          long: -4.131133
                        - lat: 43.4141768
                          long: -4.1314427
                        - lat: 43.4141205
                          long: -4.1317615
                        - lat: 43.414492
                          long: -4.1317184
                        - lat: 43.4145099
                          long: -4.1318416
                        - lat: 43.4142861
                          long: -4.1321374
                        - lat: 43.414595
                          long: -4.132464
                        - lat: 43.4144233
                          long: -4.1328095
                        - lat: 43.4145164
                          long: -4.1331311
                        - lat: 43.4141503
                          long: -4.1337423
                        - lat: 43.4137183
                          long: -4.1319062
                        - lat: 43.4128347
                          long: -4.1311116
                        - lat: 43.4124931
                          long: -4.1310558
                        - lat: 43.4122483
                          long: -4.1312242
                        - lat: 43.4112194
                          long: -4.1323784
                        - lat: 43.4109835
                          long: -4.1325593
                        - lat: 43.4107308
                          long: -4.1326164
                        - lat: 43.4100031
                          long: -4.1324422
                        - lat: 43.4097815
                          long: -4.1320923
                        - lat: 43.4095701
                          long: -4.131619
                        - lat: 43.4092308
                          long: -4.1313286
                        - lat: 43.4075337
                          long: -4.131754
                        - lat: 43.4060158
                          long: -4.1322815
                        - lat: 43.404677
                          long: -4.1319849
                        - lat: 43.404101
                          long: -4.1319618
                        - lat: 43.4030338
                          long: -4.1315221
                        - lat: 43.398515
                          long: -4.1286348
                        - lat: 43.3975587
                          long: -4.1279132
                        - lat: 43.3956739
                          long: -4.1272855
                        - lat: 43.3952965
                          long: -4.1272045
                        - lat: 43.3938436
                          long: -4.1266095
                        - lat: 43.3913939
                          long: -4.1266629
                        - lat: 43.3891431
                          long: -4.1293746
                        - lat: 43.3856347
                          long: -4.1344949
                        - lat: 43.3835155
                          long: -4.1384431
                        - lat: 43.3827335
                          long: -4.138305
                        - lat: 43.3816085
                          long: -4.1418641
                        - lat: 43.3806627
                          long: -4.1436981
                        - lat: 43.3795232
                          long: -4.1441952
                        - lat: 43.3796236
                          long: -4.1422589
                        - lat: 43.379022
                          long: -4.137569
                        - lat: 43.378373
                          long: -4.1312734
                        - lat: 43.3770638
                          long: -4.1270643
                        - lat: 43.376696
                          long: -4.1250947
                        - lat: 43.3764604
                          long: -4.1197329
                        - lat: 43.3755064
                          long: -4.115074
                        - lat: 43.3745785
                          long: -4.1114155
                        - lat: 43.3726478
                          long: -4.1080846
                        - lat: 43.3670703
                          long: -4.0972452
                        - lat: 43.3683138
                          long: -4.0952681
                        - lat: 43.3727681
                          long: -4.089917
                        - lat: 43.3689871
                          long: -4.0860354
                        - lat: 43.3679841
                          long: -4.0854498
                        - lat: 43.3635325
                          long: -4.0820012
                        - lat: 43.361985
                          long: -4.0751736
                        - lat: 43.364536
                          long: -4.070072
                        - lat: 43.3661072
                          long: -4.0686433
                        - lat: 43.3676039
                          long: -4.06746
                        - lat: 43.3685263
                          long: -4.0670442
                        - lat: 43.3681228
                          long: -4.0653849
                        - lat: 43.3679626
                          long: -4.0647262
                        - lat: 43.3678905
                          long: -4.0637622
                        - lat: 43.3680231
                          long: -4.063061
                        - lat: 43.3681243
                          long: -4.0618532
                        - lat: 43.3686037
                          long: -4.060652
                        - lat: 43.3692014
                          long: -4.0583419
                        - lat: 43.3682384
                          long: -4.0577265
                        - lat: 43.3676527
                          long: -4.0573523
                        - lat: 43.3675809
                          long: -4.0572616
                        - lat: 43.3671904
                          long: -4.0567685
                        - lat: 43.3666914
                          long: -4.0561384
                        - lat: 43.3663869
                          long: -4.0559603
                        - lat: 43.3654901
                          long: -4.0555622
                        - lat: 43.3639844
                          long: -4.0532345
                        - lat: 43.3630841
                          long: -4.0518427
                        - lat: 43.3624452
                          long: -4.04787
                        - lat: 43.3633769
                          long: -4.0483921
                        - lat: 43.3647344
                          long: -4.0486253
                        - lat: 43.3650937
                          long: -4.0487302
                        - lat: 43.3657385
                          long: -4.0491116
                        - lat: 43.3664581
                          long: -4.050173
                        - lat: 43.366736
                          long: -4.0503136
                        - lat: 43.3670698
                          long: -4.0502453
                        - lat: 43.3679473
                          long: -4.0498038
                        - lat: 43.3685513
                          long: -4.0497278
                        - lat: 43.3694953
                          long: -4.0498922
                        - lat: 43.3701858
                          long: -4.0502003
                        - lat: 43.3716162
                          long: -4.0503484
                        - lat: 43.3725538
                          long: -4.0502165
                        - lat: 43.3735121
                          long: -4.049801
                        - lat: 43.3742759
                          long: -4.0489994
                        - lat: 43.3746335
                          long: -4.0482897
                        - lat: 43.3757129
                          long: -4.0474318
                        - lat: 43.3819364
                          long: -4.0443291
                        - lat: 43.3823966
                          long: -4.0442259
                        - lat: 43.3837573
                          long: -4.0441134
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/593e82201d727.png
                      id: 591ed02589cc36d6018b4567
                      jurisdiction_elements:
                        - map_layers: []
                          extent:
                            - -4.1441952
                            - 43.361985
                            - -4.0441134
                            - 43.4265577
                          id: 5c9b557a9650e67d42985e89
                          name: es.santillana
                          type: city
                          visible_name: es.santillana
                          is_main: false
                      jurisdiction_id: es.santillana
                      key_name: Santillana del Mar, Cantabria
                      locales:
                        - es
                      name: Santillana del Mar
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17715
                          options: []
                        - id: 5850de88e22c6d9f51b17716
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                      lat: 43.3908395
                      long: -4.1079477
                      tags: []
                      third_emails:
                        - comentarios.santillanadelmar@radmas.com
                      timezone: Europe/Madrid
                      typologies:
                        - id: 5922da20609044e5108b4582
                          color: '#ebc113'
                          description_legend: 'Ej: farola fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: Tengo un problema con un elemento de la ciudad
                          visible_name: Aviso
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                      typology_nodes:
                        - id: 5e30524701394a650e8b4584
                          color: '#66de80'
                          order: 0
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar solucionado
                        - id: 5e305355fee15c9d0d8b4600
                          color: '#055ee3'
                          order: 0
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Validar ejecución
                        - id: 5e30514401394a650e8b4567
                          color: '#64bbf5'
                          order: 0
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Planificar ejecución
                        - id: 5ea985b81b0e8002048b457b
                          color: '#66de80'
                          order: 0
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Pte. Comunicar solucionado
                        - id: 5ea985e61b0e8000048b45a7
                          color: '#055ee3'
                          order: 0
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Pte. Validar ejecución
                        - id: 5ea985981b0e8003048b4580
                          color: '#64bbf5'
                          order: 0
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Planificar ejecución
                        - id: 5922da7fe73d003d128b456f
                          color: '#ffc107'
                          order: 1
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5ea98315abd2d613048b4567
                          color: '#ffc107'
                          order: 1
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 5922da62f766e68f128b457d
                          color: '#64bbf5'
                          order: 2
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En ejecución
                        - id: 5ea983aa7bf384b3038b4577
                          color: '#64bbf5'
                          order: 2
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: En ejecución
                        - id: 5922dab960904448118b4568
                          color: '#21618c'
                          order: 3
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 5ea983d01b0e8000048b45a3
                          color: '#21618c'
                          order: 3
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 5a422779083f200b3a8b45ae
                          color: '#8cbc2d'
                          order: 4
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validado
                        - id: 5ea983ee7bf384c5038b456c
                          color: '#8cbc2d'
                          order: 4
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Validado
                        - id: 5922da9a309fb549128b4567
                          color: '#d35400'
                          order: 5
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Pte. Comunicar cancelado
                        - id: 5ea9851a1031bf2a048b457f
                          color: '#d35400'
                          order: 5
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Pte. Comunicar cancelado
                        - id: 5922dade309fb52b128b4573
                          color: '#33691e'
                          order: 6
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 5ea985377bf384b6038b4573
                          color: '#33691e'
                          order: 6
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 5a42276a6c6836d3448b4567
                          color: '#b71b1c'
                          order: 7
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 5ea985561031bffd038b4588
                          color: '#b71b1c'
                          order: 7
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 5aa105965edb8bdf048b4581
                          color: '#3abdaa'
                          order: 8
                          typology:
                            id: 5922da20609044e5108b4582
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a168b9.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento de la ciudad
                            visible_name: Aviso
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 5ea98570abd2d61e048b4567
                          color: '#3abdaa'
                          order: 8
                          typology:
                            id: 5ea97e211b0e8003048b4575
                            color: '#f50b0b'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/60c1e48805cb8.png
                            location_type: geolocation
                            order: 0
                            public: false
                            typology_description: >-
                              Quiero solicitar un servicio municipal relativo al
                              Coronavirus.
                            visible_name: Coronavirus
                            with_authorized_users: false
                            with_description: false
                            with_files: false
                            with_geolocation_data: false
                            with_medias: false
                            with_temporality_data: false
                          visible_name: Devuelto
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: true
                        service_survey: true
                        alerts: true
                        inventory: true
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: true
                        planning: true
                        users: true
                        predetermined_response: true
                        predetermined_response_external_source: true
                        company_enquiry: true
                        layer: true
                        jurisdiction_element: true
                        webhook: true
                        user_guide: true
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: https://mapa.mejoratuciudad.org
                        google_play_manager: https://mejoratuciudad.org/
                        google_play_citizens: https://mejoratuciudad.org/
                        app_store: https://mejoratuciudad.org/
                    - only_registered_users: true
                      max_upload_files: 5
                      automatic_typology: false
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7d1de2efef4018b4582
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Riv_Barrios
                          name: Barrios
                          description: Barrios
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 677fb4de2a1d95d91e008633
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:geofences
                          name: geofence
                          description: geofence
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: GEOFENCE
                      accepted_id_documents:
                        - idSpain
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5cb6e8833f960e8b457a
                          name: Gestores Avisos
                        - external: false
                          id: 5e2f5d2101394ad80d8b45f5
                          name: Técnicos Avisos
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5e5f8c5e3b5399d7048b45ee
                          name: Gestores de la plataforma
                        - external: false
                          id: 5e73bd8502be88c10f8b4568
                          name: Comunicación
                        - external: false
                          id: 5e94d7c102be88f82b8b4575
                          name: Supervisores Avisos
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: false
                          id: 64eba83850296950750b5d02
                          name: Canal pruebas
                        - external: true
                          id: 64eba8d39c0de571c50a3264
                          name: Canal pruebas 02
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                        - external: true
                          id: 673db8696b60131e9c0210a7
                          name: Global Externo
                      company_emails:
                        - comentarios.rivas@mejoratuciudad.org
                      geo_bound:
                        - lat: 40.411038646944
                          long: -3.4700083830236
                        - lat: 40.287119395069
                          long: -3.5850750207097
                      geo_perimeter:
                        - lat: 40.327458668663
                          long: -3.4704022742792
                        - lat: 40.327434029989
                          long: -3.4703908026043
                        - lat: 40.327368875174
                          long: -3.470350915856
                        - lat: 40.327291498271
                          long: -3.4703035283326
                        - lat: 40.327285296905
                          long: -3.4702998361378
                        - lat: 40.327133635412
                          long: -3.4702200326118
                        - lat: 40.327124994918
                          long: -3.4702179715072
                        - lat: 40.32701905769
                          long: -3.4701929872426
                        - lat: 40.32695113805
                          long: -3.4701905147989
                        - lat: 40.326892947161
                          long: -3.4701883452972
                        - lat: 40.326867059785
                          long: -3.4701959347768
                        - lat: 40.32681781042
                          long: -3.4702104249609
                        - lat: 40.32678260407
                          long: -3.4702277199922
                        - lat: 40.326697116681
                          long: -3.4702695036216
                        - lat: 40.326601607166
                          long: -3.4702945022837
                        - lat: 40.326487609116
                          long: -3.4703243165032
                        - lat: 40.326424214662
                          long: -3.470338943758
                        - lat: 40.326296522934
                          long: -3.4703686627715
                        - lat: 40.326252335809
                          long: -3.470378950193
                        - lat: 40.32621626491
                          long: -3.470387292827
                        - lat: 40.326086499662
                          long: -3.4704173504046
                        - lat: 40.326080006488
                          long: -3.4704189533021
                        - lat: 40.325910686499
                          long: -3.470450030979
                        - lat: 40.325837747282
                          long: -3.4704634146079
                        - lat: 40.325736497812
                          long: -3.4704820163958
                        - lat: 40.325595487572
                          long: -3.4705079933123
                        - lat: 40.325562399203
                          long: -3.4705140022779
                        - lat: 40.325387759562
                          long: -3.4705461019544
                        - lat: 40.325333392735
                          long: -3.4705562007276
                        - lat: 40.325214389234
                          long: -3.4705540795342
                        - lat: 40.325145834165
                          long: -3.4705527795083
                        - lat: 40.325040794118
                          long: -3.4705508730024
                        - lat: 40.324992237572
                          long: -3.4705500649851
                        - lat: 40.324949907762
                          long: -3.4705467105759
                        - lat: 40.324869300751
                          long: -3.4705403830423
                        - lat: 40.324792206287
                          long: -3.4705343153352
                        - lat: 40.324786352358
                          long: -3.4705338038465
                        - lat: 40.324778156569
                          long: -3.4705331583867
                        - lat: 40.324691785236
                          long: -3.4705264377323
                        - lat: 40.324521474993
                          long: -3.4705130133671
                        - lat: 40.324512208658
                          long: -3.4705097708649
                        - lat: 40.324487917413
                          long: -3.4705014802348
                        - lat: 40.324421252221
                          long: -3.4704785348385
                        - lat: 40.324411280005
                          long: -3.4704716384481
                        - lat: 40.324343992215
                          long: -3.4704245583452
                        - lat: 40.324318298296
                          long: -3.4704067235667
                        - lat: 40.324172972974
                          long: -3.4702752930117
                        - lat: 40.324119834003
                          long: -3.4702271343591
                        - lat: 40.324101163238
                          long: -3.4702102901191
                        - lat: 40.324003154037
                          long: -3.4701409857893
                        - lat: 40.323932723958
                          long: -3.4700911772027
                        - lat: 40.323892478462
                          long: -3.4700626479397
                        - lat: 40.323830864121
                          long: -3.4700604549247
                        - lat: 40.323779158236
                          long: -3.4700586837687
                        - lat: 40.323763394411
                          long: -3.4700581035907
                        - lat: 40.323662595727
                          long: -3.4700544617068
                        - lat: 40.323533422059
                          long: -3.4700497990634
                        - lat: 40.323489935879
                          long: -3.4700427880795
                        - lat: 40.323430333642
                          long: -3.4700331934589
                        - lat: 40.323386380749
                          long: -3.4700301813252
                        - lat: 40.323379715528
                          long: -3.4700297819727
                        - lat: 40.323365845025
                          long: -3.4700288618143
                        - lat: 40.323243983459
                          long: -3.4700206010264
                        - lat: 40.323181386251
                          long: -3.470016400233
                        - lat: 40.323060694893
                          long: -3.4700083830236
                        - lat: 40.323016081717
                          long: -3.4700126641894
                        - lat: 40.323005717069
                          long: -3.4700136516693
                        - lat: 40.322979399804
                          long: -3.4700161764081
                        - lat: 40.322973091116
                          long: -3.4700167211891
                        - lat: 40.32295722859
                          long: -3.4700182590721
                        - lat: 40.322925413446
                          long: -3.4700213342112
                        - lat: 40.322917031733
                          long: -3.4700221000276
                        - lat: 40.322888798666
                          long: -3.4700304968197
                        - lat: 40.322675744099
                          long: -3.4700935223308
                        - lat: 40.322558212433
                          long: -3.47012825438
                        - lat: 40.322382249839
                          long: -3.4701755286068
                        - lat: 40.322126378526
                          long: -3.4702441413964
                        - lat: 40.32205792369
                          long: -3.4702624992868
                        - lat: 40.322041779883
                          long: -3.4702667423675
                        - lat: 40.322026627544
                          long: -3.4702708746206
                        - lat: 40.322019144814
                          long: -3.4702721174569
                        - lat: 40.322007966003
                          long: -3.4702739231724
                        - lat: 40.321996156084
                          long: -3.4702758422134
                        - lat: 40.321898702322
                          long: -3.4702915269926
                        - lat: 40.321884367969
                          long: -3.4702938993303
                        - lat: 40.321691532983
                          long: -3.4703251654226
                        - lat: 40.321449565928
                          long: -3.470364211961
                        - lat: 40.321449475839
                          long: -3.4703642113358
                        - lat: 40.321425746761
                          long: -3.4703727567734
                        - lat: 40.321310352263
                          long: -3.4704136231708
                        - lat: 40.321230956778
                          long: -3.4704416741716
                        - lat: 40.321160899909
                          long: -3.4704551946465
                        - lat: 40.32083973805
                          long: -3.4705172313299
                        - lat: 40.320553559304
                          long: -3.4705725658679
                        - lat: 40.320448158412
                          long: -3.4705929028346
                        - lat: 40.320394150463
                          long: -3.4706033564725
                        - lat: 40.320370076806
                          long: -3.4706080151197
                        - lat: 40.320225838503
                          long: -3.4706302009362
                        - lat: 40.320180042623
                          long: -3.4706372981725
                        - lat: 40.319985230786
                          long: -3.4706672540995
                        - lat: 40.3199652174
                          long: -3.4706704107698
                        - lat: 40.319942139517
                          long: -3.4706738992622
                        - lat: 40.319938172685
                          long: -3.4706745779253
                        - lat: 40.319490943619
                          long: -3.4707433874918
                        - lat: 40.319485354208
                          long: -3.470744290279
                        - lat: 40.31948382172
                          long: -3.4707445150372
                        - lat: 40.319477212188
                          long: -3.4707968460809
                        - lat: 40.319467810826
                          long: -3.4708710501045
                        - lat: 40.319403908906
                          long: -3.4712978603627
                        - lat: 40.319360711398
                          long: -3.4716179415807
                        - lat: 40.319351422157
                          long: -3.4716866142047
                        - lat: 40.319350492463
                          long: -3.4716936697819
                        - lat: 40.319320483274
                          long: -3.4719166215306
                        - lat: 40.319313888578
                          long: -3.4719651860127
                        - lat: 40.31931314577
                          long: -3.4719705950734
                        - lat: 40.319310914942
                          long: -3.4719874107418
                        - lat: 40.31930385632
                          long: -3.4720392675989
                        - lat: 40.319270964784
                          long: -3.4722839735759
                        - lat: 40.319230271512
                          long: -3.472585827403
                        - lat: 40.319217542571
                          long: -3.4726803698958
                        - lat: 40.319162448287
                          long: -3.4730887593635
                        - lat: 40.319136634969
                          long: -3.4732984390235
                        - lat: 40.319121071737
                          long: -3.4734249759592
                        - lat: 40.319104670577
                          long: -3.473558098202
                        - lat: 40.319101503446
                          long: -3.4735834993494
                        - lat: 40.319048756427
                          long: -3.4740119128348
                        - lat: 40.319037039271
                          long: -3.4741450675588
                        - lat: 40.319003399777
                          long: -3.4745271224121
                        - lat: 40.319001609254
                          long: -3.4749634244213
                        - lat: 40.319001260329
                          long: -3.4750484015008
                        - lat: 40.319002113379
                          long: -3.475060059797
                        - lat: 40.319002793982
                          long: -3.4750698336819
                        - lat: 40.319002963045
                          long: -3.4750725419709
                        - lat: 40.31900449621
                          long: -3.4750940918497
                        - lat: 40.319007733039
                          long: -3.4751395468092
                        - lat: 40.319017527708
                          long: -3.4752773247061
                        - lat: 40.319046683932
                          long: -3.4754390139001
                        - lat: 40.319067208044
                          long: -3.4755527386448
                        - lat: 40.319099447332
                          long: -3.4757313985631
                        - lat: 40.319118384394
                          long: -3.4758366379152
                        - lat: 40.319132214293
                          long: -3.4759131225662
                        - lat: 40.319139437032
                          long: -3.4759531914211
                        - lat: 40.319161962467
                          long: -3.4761058893816
                        - lat: 40.31919912565
                          long: -3.4763575587296
                        - lat: 40.319254079927
                          long: -3.4767298788797
                        - lat: 40.319292644364
                          long: -3.4769909748237
                        - lat: 40.319308628754
                          long: -3.47713468217
                        - lat: 40.319321052813
                          long: -3.4772459968139
                        - lat: 40.319335734107
                          long: -3.4773779250267
                        - lat: 40.319339468574
                          long: -3.4774117314458
                        - lat: 40.319345462302
                          long: -3.4774656806142
                        - lat: 40.319367092013
                          long: -3.4776602747097
                        - lat: 40.319369959033
                          long: -3.4776859536906
                        - lat: 40.319458597464
                          long: -3.4782123485847
                        - lat: 40.319487879618
                          long: -3.4783861641767
                        - lat: 40.319497551486
                          long: -3.478443788244
                        - lat: 40.319523087364
                          long: -3.4784559740127
                        - lat: 40.319533697526
                          long: -3.4784609923582
                        - lat: 40.319563909313
                          long: -3.4784753297701
                        - lat: 40.31957335074
                          long: -3.4784797513652
                        - lat: 40.319666009883
                          long: -3.4784691061782
                        - lat: 40.319687371897
                          long: -3.4784666675533
                        - lat: 40.319734963213
                          long: -3.4784612361519
                        - lat: 40.319874762729
                          long: -3.4784452740119
                        - lat: 40.319940381269
                          long: -3.4784377335039
                        - lat: 40.319951918616
                          long: -3.4784364025253
                        - lat: 40.319971027407
                          long: -3.4784341833788
                        - lat: 40.320053681209
                          long: -3.4784247621676
                        - lat: 40.320060307945
                          long: -3.4784344605094
                        - lat: 40.320115201522
                          long: -3.4785150031359
                        - lat: 40.320274688359
                          long: -3.4787489444567
                        - lat: 40.32032779112
                          long: -3.4788267677851
                        - lat: 40.320373729029
                          long: -3.4788943004868
                        - lat: 40.320494888646
                          long: -3.4790719461339
                        - lat: 40.320502052454
                          long: -3.4790824723182
                        - lat: 40.320561072153
                          long: -3.4791672824716
                        - lat: 40.320778341699
                          long: -3.4794797905556
                        - lat: 40.320959519438
                          long: -3.4797401378719
                        - lat: 40.321014508034
                          long: -3.4798192708582
                        - lat: 40.321024000439
                          long: -3.4798331093917
                        - lat: 40.321056238958
                          long: -3.4798800660189
                        - lat: 40.321509007829
                          long: -3.4805398277288
                        - lat: 40.321643511943
                          long: -3.4807359359018
                        - lat: 40.32171452514
                          long: -3.4808394313897
                        - lat: 40.321744969273
                          long: -3.4808844929652
                        - lat: 40.321837313107
                          long: -3.4810147415004
                        - lat: 40.321973455151
                          long: -3.4812067435144
                        - lat: 40.322209464048
                          long: -3.4815395255045
                        - lat: 40.322248105094
                          long: -3.4815848813848
                        - lat: 40.322327628595
                          long: -3.4816781987621
                        - lat: 40.322400787014
                          long: -3.4817639379228
                        - lat: 40.322418538521
                          long: -3.4817847803862
                        - lat: 40.322758497212
                          long: -3.4821644471118
                        - lat: 40.3227944569
                          long: -3.4822046055426
                        - lat: 40.322839742241
                          long: -3.4822553062844
                        - lat: 40.322881172346
                          long: -3.4823015067949
                        - lat: 40.322909599287
                          long: -3.482333254565
                        - lat: 40.323011745269
                          long: -3.4824458033337
                        - lat: 40.323099273769
                          long: -3.4825421224605
                        - lat: 40.323110752725
                          long: -3.4825547988757
                        - lat: 40.323160178109
                          long: -3.4826064712317
                        - lat: 40.323454411329
                          long: -3.4829323809952
                        - lat: 40.32348310836
                          long: -3.4829641312253
                        - lat: 40.323528933404
                          long: -3.4830149545483
                        - lat: 40.323557540814
                          long: -3.4830465865017
                        - lat: 40.323564804663
                          long: -3.4830546424277
                        - lat: 40.323612512703
                          long: -3.4831075980441
                        - lat: 40.323620667613
                          long: -3.4831180144991
                        - lat: 40.323787803435
                          long: -3.4833302573023
                        - lat: 40.323910309325
                          long: -3.4834859179558
                        - lat: 40.32392366284
                          long: -3.4835027278627
                        - lat: 40.323928046792
                          long: -3.4835315977744
                        - lat: 40.323932343598
                          long: -3.4835597608156
                        - lat: 40.323942517471
                          long: -3.4836259857197
                        - lat: 40.323953304216
                          long: -3.483696452533
                        - lat: 40.323954180998
                          long: -3.48370222652
                        - lat: 40.323968827779
                          long: -3.4837975574652
                        - lat: 40.32405214141
                          long: -3.4843410257962
                        - lat: 40.324129488199
                          long: -3.484845844194
                        - lat: 40.324203501716
                          long: -3.485328628249
                        - lat: 40.324213762687
                          long: -3.4853953251419
                        - lat: 40.324226827948
                          long: -3.4854807579102
                        - lat: 40.324046533562
                          long: -3.4856570890077
                        - lat: 40.323286272242
                          long: -3.4864007316435
                        - lat: 40.322849507847
                          long: -3.4868281683892
                        - lat: 40.322639900927
                          long: -3.487033119786
                        - lat: 40.322042015692
                          long: -3.4876180564127
                        - lat: 40.321887048389
                          long: -3.4877696049922
                        - lat: 40.321415812181
                          long: -3.4882305569923
                        - lat: 40.320944574633
                          long: -3.4886913848968
                        - lat: 40.320828053711
                          long: -3.4888054231356
                        - lat: 40.320167375808
                          long: -3.489451668846
                        - lat: 40.320080256329
                          long: -3.489536844462
                        - lat: 40.319571288113
                          long: -3.49003469276
                        - lat: 40.319487063043
                          long: -3.490117062991
                        - lat: 40.319155137571
                          long: -3.4904417521588
                        - lat: 40.318354405454
                          long: -3.4912250122949
                        - lat: 40.318267374758
                          long: -3.4913101840165
                        - lat: 40.318266379772
                          long: -3.491311118395
                        - lat: 40.317104037064
                          long: -3.4924480011263
                        - lat: 40.316984346268
                          long: -3.4925650635789
                        - lat: 40.316643548022
                          long: -3.4928983738621
                        - lat: 40.316589990228
                          long: -3.4929507121899
                        - lat: 40.316351512411
                          long: -3.4931838981595
                        - lat: 40.316188213923
                          long: -3.4933437171285
                        - lat: 40.316175276883
                          long: -3.493356334055
                        - lat: 40.31611065418
                          long: -3.4935737173465
                        - lat: 40.31609913716
                          long: -3.4936124728624
                        - lat: 40.315836164711
                          long: -3.4944966807172
                        - lat: 40.315695405484
                          long: -3.4951998193315
                        - lat: 40.315558139062
                          long: -3.4958857972249
                        - lat: 40.315506223966
                          long: -3.4962900495655
                        - lat: 40.315503519977
                          long: -3.4963113323895
                        - lat: 40.315497369049
                          long: -3.4963590711294
                        - lat: 40.315477421677
                          long: -3.4965146342188
                        - lat: 40.315458127462
                          long: -3.4966649057737
                        - lat: 40.315425875869
                          long: -3.496916299032
                        - lat: 40.315395952853
                          long: -3.497149819663
                        - lat: 40.3154251642
                          long: -3.4975220643127
                        - lat: 40.315484780171
                          long: -3.4982815104738
                        - lat: 40.315625833041
                          long: -3.4989787087667
                        - lat: 40.315716690459
                          long: -3.4994277932352
                        - lat: 40.315748180673
                          long: -3.4995836173126
                        - lat: 40.316027770306
                          long: -3.5003473995369
                        - lat: 40.316199679112
                          long: -3.5008026189775
                        - lat: 40.316292819674
                          long: -3.5011389743763
                        - lat: 40.316322180953
                          long: -3.5012449996519
                        - lat: 40.316484422045
                          long: -3.5018304409563
                        - lat: 40.316676107787
                          long: -3.5025225005376
                        - lat: 40.316782205235
                          long: -3.5030272623991
                        - lat: 40.316831459661
                          long: -3.503261137426
                        - lat: 40.316957149347
                          long: -3.5038589097733
                        - lat: 40.316995325289
                          long: -3.5041950996617
                        - lat: 40.316992819682
                          long: -3.504397872266
                        - lat: 40.316989735684
                          long: -3.5046505439042
                        - lat: 40.316978351835
                          long: -3.504988248316
                        - lat: 40.317052938824
                          long: -3.5054442902304
                        - lat: 40.31704736169
                          long: -3.5058133454651
                        - lat: 40.317046729066
                          long: -3.5058550053722
                        - lat: 40.317041590964
                          long: -3.5059586578022
                        - lat: 40.317034952113
                          long: -3.5060964310455
                        - lat: 40.317023974701
                          long: -3.5063197373222
                        - lat: 40.317046314202
                          long: -3.5065057472603
                        - lat: 40.317060568886
                          long: -3.5066246097593
                        - lat: 40.317073693012
                          long: -3.5067341658141
                        - lat: 40.317082211413
                          long: -3.5068050829386
                        - lat: 40.317128914365
                          long: -3.5070026920168
                        - lat: 40.317152974564
                          long: -3.5071042089879
                        - lat: 40.317154920935
                          long: -3.5071123446336
                        - lat: 40.317161289233
                          long: -3.5071393448642
                        - lat: 40.317171549226
                          long: -3.5071828517847
                        - lat: 40.317178447725
                          long: -3.5072122099342
                        - lat: 40.317225504656
                          long: -3.507411116889
                        - lat: 40.317288000405
                          long: -3.5075818924332
                        - lat: 40.317414237404
                          long: -3.5079268670215
                        - lat: 40.31760393597
                          long: -3.5084273265756
                        - lat: 40.317795191825
                          long: -3.5088804860353
                        - lat: 40.317850026263
                          long: -3.509010600995
                        - lat: 40.317987975691
                          long: -3.5093749716429
                        - lat: 40.318085136927
                          long: -3.5096314606164
                        - lat: 40.318260380712
                          long: -3.5100167116918
                        - lat: 40.31830909837
                          long: -3.5101239488454
                        - lat: 40.318432983302
                          long: -3.5104693864456
                        - lat: 40.318475525101
                          long: -3.5105877590955
                        - lat: 40.318477456161
                          long: -3.5105993081599
                        - lat: 40.318504737758
                          long: -3.5107662934546
                        - lat: 40.318507281238
                          long: -3.5107819666165
                        - lat: 40.318512545771
                          long: -3.5108139027783
                        - lat: 40.318517017681
                          long: -3.5108417134982
                        - lat: 40.318523773177
                          long: -3.5108828414476
                        - lat: 40.318550089897
                          long: -3.5110438170309
                        - lat: 40.318498876285
                          long: -3.5114200683123
                        - lat: 40.318417415027
                          long: -3.5115666951732
                        - lat: 40.318410967669
                          long: -3.5115781810177
                        - lat: 40.31838554483
                          long: -3.5116227147533
                        - lat: 40.318375555869
                          long: -3.5116405295982
                        - lat: 40.318365475774
                          long: -3.5116585791479
                        - lat: 40.318055083305
                          long: -3.5122136557862
                        - lat: 40.318010676214
                          long: -3.5122931196812
                        - lat: 40.317994693814
                          long: -3.5123215995752
                        - lat: 40.317980436138
                          long: -3.5123471500356
                        - lat: 40.317965815493
                          long: -3.5123732862327
                        - lat: 40.317948379652
                          long: -3.5124044621608
                        - lat: 40.317929762734
                          long: -3.5124378654096
                        - lat: 40.317894255169
                          long: -3.5125013893569
                        - lat: 40.317879998497
                          long: -3.512526704353
                        - lat: 40.317873732266
                          long: -3.5125379559888
                        - lat: 40.317853298919
                          long: -3.512574640974
                        - lat: 40.317801263043
                          long: -3.5126678173607
                        - lat: 40.317753042149
                          long: -3.512753960591
                        - lat: 40.317734698008
                          long: -3.512786777222
                        - lat: 40.31771217583
                          long: -3.5128272125837
                        - lat: 40.317321408189
                          long: -3.5135259664703
                        - lat: 40.317291531034
                          long: -3.5135792922939
                        - lat: 40.317208164201
                          long: -3.5137283711484
                        - lat: 40.317203714277
                          long: -3.5137363408138
                        - lat: 40.317203169559
                          long: -3.5137372782608
                        - lat: 40.317196177269
                          long: -3.5137497011388
                        - lat: 40.317186459818
                          long: -3.5137671643258
                        - lat: 40.317161304318
                          long: -3.513812169252
                        - lat: 40.317157965259
                          long: -3.5138134386064
                        - lat: 40.317129720214
                          long: -3.513823817213
                        - lat: 40.317127193528
                          long: -3.513824739634
                        - lat: 40.317121598572
                          long: -3.5138268157639
                        - lat: 40.31705969318
                          long: -3.5138497681314
                        - lat: 40.31704787212
                          long: -3.5138540332947
                        - lat: 40.317036501506
                          long: -3.5138583018713
                        - lat: 40.316935161666
                          long: -3.5138956672781
                        - lat: 40.316908630404
                          long: -3.5139055880248
                        - lat: 40.316871090452
                          long: -3.513919426975
                        - lat: 40.316804944039
                          long: -3.5139438770707
                        - lat: 40.316794295706
                          long: -3.5139477980052
                        - lat: 40.316579793836
                          long: -3.5140270286692
                        - lat: 40.316424309262
                          long: -3.5140844619863
                        - lat: 40.316352297058
                          long: -3.5141111034892
                        - lat: 40.316156384881
                          long: -3.5141834124413
                        - lat: 40.316087982508
                          long: -3.5142086687804
                        - lat: 40.316024452808
                          long: -3.5142321966111
                        - lat: 40.315962006268
                          long: -3.5142552618366
                        - lat: 40.315949372817
                          long: -3.5142598737831
                        - lat: 40.315944589704
                          long: -3.5142617206116
                        - lat: 40.315922299938
                          long: -3.5142700255273
                        - lat: 40.315762754928
                          long: -3.5143288392702
                        - lat: 40.315752466938
                          long: -3.5143327628198
                        - lat: 40.315606367202
                          long: -3.5143867351454
                        - lat: 40.315491129848
                          long: -3.5144292897578
                        - lat: 40.315147673583
                          long: -3.5145561460086
                        - lat: 40.315047325529
                          long: -3.5145932815028
                        - lat: 40.315034782152
                          long: -3.5145978940096
                        - lat: 40.315009784963
                          long: -3.5146072373913
                        - lat: 40.315002204883
                          long: -3.5146100044822
                        - lat: 40.31497928394
                          long: -3.5146184220726
                        - lat: 40.31489823378
                          long: -3.5146109805829
                        - lat: 40.314757387243
                          long: -3.5145979066997
                        - lat: 40.314636892546
                          long: -3.5145868704448
                        - lat: 40.314505951653
                          long: -3.5145748133979
                        - lat: 40.314348264126
                          long: -3.5145603172292
                        - lat: 40.314208047671
                          long: -3.5145473660438
                        - lat: 40.314071523833
                          long: -3.5145346783255
                        - lat: 40.313783795742
                          long: -3.5145082501035
                        - lat: 40.313511197431
                          long: -3.5144831138468
                        - lat: 40.313472473602
                          long: -3.5144795246309
                        - lat: 40.31335161903
                          long: -3.5144683683986
                        - lat: 40.313228152905
                          long: -3.5144569570099
                        - lat: 40.313215724741
                          long: -3.5144559211756
                        - lat: 40.313213833908
                          long: -3.5144556714466
                        - lat: 40.313184475721
                          long: -3.5144529771663
                        - lat: 40.313159335885
                          long: -3.5144133602672
                        - lat: 40.313099304958
                          long: -3.5143186352106
                        - lat: 40.313067186749
                          long: -3.5142680203257
                        - lat: 40.313051888165
                          long: -3.5142438955675
                        - lat: 40.3129448875
                          long: -3.5140751409333
                        - lat: 40.312823035235
                          long: -3.5138829717625
                        - lat: 40.312809917442
                          long: -3.5137329361482
                        - lat: 40.312757173532
                          long: -3.5131329098909
                        - lat: 40.312709834134
                          long: -3.5125934176352
                        - lat: 40.3127061115
                          long: -3.5125592596395
                        - lat: 40.312692428422
                          long: -3.5124347587993
                        - lat: 40.312631980596
                          long: -3.5118843411694
                        - lat: 40.312624964518
                          long: -3.5118207361371
                        - lat: 40.312550983275
                          long: -3.5112944614379
                        - lat: 40.312520411361
                          long: -3.5110770950054
                        - lat: 40.312493859988
                          long: -3.5108876513029
                        - lat: 40.312465403273
                          long: -3.5108440097186
                        - lat: 40.312272024224
                          long: -3.5105470370334
                        - lat: 40.312170277316
                          long: -3.5103910400512
                        - lat: 40.312117713504
                          long: -3.5103183838215
                        - lat: 40.311950796526
                          long: -3.5100881068619
                        - lat: 40.311943454324
                          long: -3.5100778127795
                        - lat: 40.311922144795
                          long: -3.510047759755
                        - lat: 40.31191820524
                          long: -3.510042198791
                        - lat: 40.311911758741
                          long: -3.5100330883347
                        - lat: 40.31184120341
                          long: -3.5099338176093
                        - lat: 40.31181040296
                          long: -3.5098903945953
                        - lat: 40.311451025529
                          long: -3.5098490904156
                        - lat: 40.311055989691
                          long: -3.5098036349101
                        - lat: 40.310577299968
                          long: -3.5097486068934
                        - lat: 40.31035155213
                          long: -3.5097226664771
                        - lat: 40.310168306354
                          long: -3.5097016354643
                        - lat: 40.310123372894
                          long: -3.5096964725936
                        - lat: 40.310119756471
                          long: -3.5096789103935
                        - lat: 40.310107146348
                          long: -3.5096169134827
                        - lat: 40.31004065375
                          long: -3.5092905452704
                        - lat: 40.309796187769
                          long: -3.5080918617109
                        - lat: 40.309614507484
                          long: -3.5072006931545
                        - lat: 40.309611773005
                          long: -3.5071873744318
                        - lat: 40.309607274391
                          long: -3.5071654515986
                        - lat: 40.309593603503
                          long: -3.50709850497
                        - lat: 40.309535041714
                          long: -3.5068110365649
                        - lat: 40.309492265172
                          long: -3.5066013577392
                        - lat: 40.309468716187
                          long: -3.5064858519245
                        - lat: 40.309256591985
                          long: -3.5054458310921
                        - lat: 40.309250329805
                          long: -3.5054150691056
                        - lat: 40.309231277571
                          long: -3.505321722052
                        - lat: 40.309230219111
                          long: -3.5053165361061
                        - lat: 40.309218135356
                          long: -3.5052572514487
                        - lat: 40.309213196205
                          long: -3.5052329719256
                        - lat: 40.309204246489
                          long: -3.5052399662203
                        - lat: 40.309101645186
                          long: -3.5053192260359
                        - lat: 40.309006365255
                          long: -3.5053930090983
                        - lat: 40.308906385703
                          long: -3.5054701697131
                        - lat: 40.308727577891
                          long: -3.5056085255271
                        - lat: 40.308240150895
                          long: -3.5059853547799
                        - lat: 40.30807960339
                          long: -3.5061094870989
                        - lat: 40.30801868045
                          long: -3.5062994402369
                        - lat: 40.307929533572
                          long: -3.5065773251689
                        - lat: 40.307924509075
                          long: -3.5065931745451
                        - lat: 40.307920673262
                          long: -3.5066050316515
                        - lat: 40.307885050231
                          long: -3.5067162091935
                        - lat: 40.307628566122
                          long: -3.5075155778608
                        - lat: 40.307329690571
                          long: -3.5084476008709
                        - lat: 40.307326402348
                          long: -3.5084578143572
                        - lat: 40.307325215149
                          long: -3.5084614535287
                        - lat: 40.307315532205
                          long: -3.508491742304
                        - lat: 40.307304937493
                          long: -3.5085244955078
                        - lat: 40.307246932801
                          long: -3.5087055225404
                        - lat: 40.307186188903
                          long: -3.5088947662746
                        - lat: 40.307162347297
                          long: -3.5089691961569
                        - lat: 40.307098039754
                          long: -3.5091697098822
                        - lat: 40.307069723492
                          long: -3.5092577567708
                        - lat: 40.30705172821
                          long: -3.5093138723371
                        - lat: 40.30702761244
                          long: -3.5093891236195
                        - lat: 40.307023958076
                          long: -3.509400628736
                        - lat: 40.307022222538
                          long: -3.5094060289444
                        - lat: 40.307006329303
                          long: -3.5094553348291
                        - lat: 40.306999296011
                          long: -3.5094771703236
                        - lat: 40.306995824409
                          long: -3.5094880884076
                        - lat: 40.30699244445
                          long: -3.5094986541414
                        - lat: 40.306918270991
                          long: -3.5097298069436
                        - lat: 40.306886208252
                          long: -3.5098297107789
                        - lat: 40.306858346606
                          long: -3.509916701424
                        - lat: 40.306795044917
                          long: -3.5102769111551
                        - lat: 40.306650333052
                          long: -3.5110985134225
                        - lat: 40.306516427127
                          long: -3.5118588833073
                        - lat: 40.306391202584
                          long: -3.5125701263311
                        - lat: 40.306382700048
                          long: -3.5126184277817
                        - lat: 40.306258393676
                          long: -3.5133247324661
                        - lat: 40.306247581146
                          long: -3.5133859608091
                        - lat: 40.305919668565
                          long: -3.5137862877439
                        - lat: 40.305798920015
                          long: -3.5139337637196
                        - lat: 40.305744751052
                          long: -3.5139998407017
                        - lat: 40.305695654784
                          long: -3.5140597191557
                        - lat: 40.305670743665
                          long: -3.5140902439829
                        - lat: 40.305417198284
                          long: -3.5143998114186
                        - lat: 40.305334223044
                          long: -3.514501089688
                        - lat: 40.304914634672
                          long: -3.5150133253218
                        - lat: 40.304894252929
                          long: -3.5150382354236
                        - lat: 40.30482078789
                          long: -3.5151280521877
                        - lat: 40.304815443785
                          long: -3.5151344837404
                        - lat: 40.304741026718
                          long: -3.5150334237285
                        - lat: 40.304721415476
                          long: -3.5150066801719
                        - lat: 40.304372165456
                          long: -3.5145321524065
                        - lat: 40.304275181295
                          long: -3.5144003271587
                        - lat: 40.304179450389
                          long: -3.5142702769081
                        - lat: 40.303805301796
                          long: -3.5137619134335
                        - lat: 40.303748256924
                          long: -3.5136844050691
                        - lat: 40.303699719844
                          long: -3.5136183755997
                        - lat: 40.303657898709
                          long: -3.5135615756108
                        - lat: 40.3036118684
                          long: -3.5134990954993
                        - lat: 40.303594316323
                          long: -3.513475192585
                        - lat: 40.303588226783
                          long: -3.5134669093457
                        - lat: 40.303552763817
                          long: -3.5134187478267
                        - lat: 40.303400703123
                          long: -3.5132121395842
                        - lat: 40.30327228432
                          long: -3.5130376004309
                        - lat: 40.30325616471
                          long: -3.5130157090291
                        - lat: 40.303124879946
                          long: -3.5128372657562
                        - lat: 40.303067207461
                          long: -3.5127589304995
                        - lat: 40.303031833761
                          long: -3.51271088807
                        - lat: 40.303010788877
                          long: -3.5126822522678
                        - lat: 40.302972012071
                          long: -3.5126295949768
                        - lat: 40.302923832647
                          long: -3.5125640404141
                        - lat: 40.302728873791
                          long: -3.5122992173874
                        - lat: 40.302722383781
                          long: -3.5122592776195
                        - lat: 40.302639672567
                          long: -3.5117517233415
                        - lat: 40.302569941388
                          long: -3.5113236964375
                        - lat: 40.302544153853
                          long: -3.5111653515142
                        - lat: 40.302512487562
                          long: -3.5109713079667
                        - lat: 40.302446000086
                          long: -3.510562958192
                        - lat: 40.302356876554
                          long: -3.5100164106468
                        - lat: 40.302276697587
                          long: -3.5095248841012
                        - lat: 40.302259503756
                          long: -3.509419439369
                        - lat: 40.302226169431
                          long: -3.5092147945336
                        - lat: 40.302192840438
                          long: -3.5090088555586
                        - lat: 40.302174471447
                          long: -3.5090065996158
                        - lat: 40.302085867653
                          long: -3.5089958149289
                        - lat: 40.301934232607
                          long: -3.5089773793229
                        - lat: 40.301839325629
                          long: -3.5089658413904
                        - lat: 40.301805018514
                          long: -3.5089617008082
                        - lat: 40.301606560072
                          long: -3.5089376188391
                        - lat: 40.301559916869
                          long: -3.508931973677
                        - lat: 40.30135812716
                          long: -3.5089073962147
                        - lat: 40.301282065092
                          long: -3.5089947244456
                        - lat: 40.301243101814
                          long: -3.5090455004803
                        - lat: 40.301166625431
                          long: -3.5091450628869
                        - lat: 40.300407202292
                          long: -3.5101338900773
                        - lat: 40.300287683245
                          long: -3.5102896066681
                        - lat: 40.300219089283
                          long: -3.5103788708576
                        - lat: 40.300207490833
                          long: -3.5103939626785
                        - lat: 40.300202957796
                          long: -3.510400400275
                        - lat: 40.30018944877
                          long: -3.5104197137373
                        - lat: 40.300168324441
                          long: -3.5104497952781
                        - lat: 40.300145911603
                          long: -3.5105064599207
                        - lat: 40.300125595207
                          long: -3.5105576099443
                        - lat: 40.30006236507
                          long: -3.5107175143511
                        - lat: 40.30002173051
                          long: -3.5108201671031
                        - lat: 40.300004783666
                          long: -3.510863105623
                        - lat: 40.299936542563
                          long: -3.5110355620711
                        - lat: 40.299908025332
                          long: -3.5111075946936
                        - lat: 40.299882879329
                          long: -3.5111710629817
                        - lat: 40.299832585658
                          long: -3.5112983524044
                        - lat: 40.299823475281
                          long: -3.5113212287468
                        - lat: 40.299810556687
                          long: -3.5113496067094
                        - lat: 40.299767979126
                          long: -3.5114433013819
                        - lat: 40.299761247465
                          long: -3.5114579589542
                        - lat: 40.299686009179
                          long: -3.5116234190759
                        - lat: 40.299676638355
                          long: -3.5116440576966
                        - lat: 40.299578018742
                          long: -3.5118608788304
                        - lat: 40.299570740243
                          long: -3.5118769441893
                        - lat: 40.299540626908
                          long: -3.5119430807078
                        - lat: 40.299523158897
                          long: -3.5119815433908
                        - lat: 40.299463841302
                          long: -3.5121119403891
                        - lat: 40.299452377494
                          long: -3.5121372697163
                        - lat: 40.299424719876
                          long: -3.5121981295753
                        - lat: 40.299400429409
                          long: -3.5122513665229
                        - lat: 40.299396499806
                          long: -3.5122639271102
                        - lat: 40.299394306394
                          long: -3.5122709705058
                        - lat: 40.299393849172
                          long: -3.5122724967109
                        - lat: 40.299383064366
                          long: -3.5123072443943
                        - lat: 40.299382150964
                          long: -3.5123100614793
                        - lat: 40.299381327652
                          long: -3.5123128792447
                        - lat: 40.299379865896
                          long: -3.5123174571776
                        - lat: 40.299376576293
                          long: -3.5123279046036
                        - lat: 40.299374564619
                          long: -3.5123345963699
                        - lat: 40.299367527666
                          long: -3.5123571350835
                        - lat: 40.299365396199
                          long: -3.5123705329039
                        - lat: 40.299354273801
                          long: -3.5124408131266
                        - lat: 40.299351436049
                          long: -3.5124916233791
                        - lat: 40.299350451757
                          long: -3.5125104424943
                        - lat: 40.29935016116
                          long: -3.5125150292706
                        - lat: 40.299341348794
                          long: -3.512673929362
                        - lat: 40.299333123688
                          long: -3.5128222439188
                        - lat: 40.299325874933
                          long: -3.5129535042665
                        - lat: 40.299323231744
                          long: -3.5130010213019
                        - lat: 40.299319799986
                          long: -3.5130638289354
                        - lat: 40.299319412494
                          long: -3.5130699446309
                        - lat: 40.299318339062
                          long: -3.5130885277224
                        - lat: 40.299311087396
                          long: -3.5132203763195
                        - lat: 40.299297868097
                          long: -3.5134585496573
                        - lat: 40.29928190114
                          long: -3.5137472983978
                        - lat: 40.299274555498
                          long: -3.5138798521344
                        - lat: 40.299265639146
                          long: -3.5140414573911
                        - lat: 40.299263293489
                          long: -3.5140827403085
                        - lat: 40.299250070324
                          long: -3.514321383939
                        - lat: 40.299249482187
                          long: -3.5143320870645
                        - lat: 40.299161114348
                          long: -3.5144709683837
                        - lat: 40.29915866466
                          long: -3.5144748327677
                        - lat: 40.299153220558
                          long: -3.5144834987277
                        - lat: 40.299078642997
                          long: -3.5146007161725
                        - lat: 40.299038178788
                          long: -3.5146643014832
                        - lat: 40.298973405598
                          long: -3.5147647668066
                        - lat: 40.298874704176
                          long: -3.5149176883663
                        - lat: 40.298869719916
                          long: -3.5149242397737
                        - lat: 40.29876359322
                          long: -3.5150653379883
                        - lat: 40.298742816525
                          long: -3.5150980087183
                        - lat: 40.298662159892
                          long: -3.5152247094492
                        - lat: 40.298642563227
                          long: -3.5152553887458
                        - lat: 40.298564288986
                          long: -3.5154135236484
                        - lat: 40.298537562004
                          long: -3.5154673285737
                        - lat: 40.298524058348
                          long: -3.515505466916
                        - lat: 40.298442028376
                          long: -3.5157380542454
                        - lat: 40.298422776591
                          long: -3.515792386448
                        - lat: 40.298326878698
                          long: -3.5160638144167
                        - lat: 40.298321742353
                          long: -3.5160842489006
                        - lat: 40.2983177065
                          long: -3.5161003381815
                        - lat: 40.298313670646
                          long: -3.5161164274604
                        - lat: 40.298286612291
                          long: -3.5162242372085
                        - lat: 40.298219172414
                          long: -3.5163566842351
                        - lat: 40.298096379738
                          long: -3.5165980191446
                        - lat: 40.298085199933
                          long: -3.5166200547807
                        - lat: 40.297957771663
                          long: -3.5168704135052
                        - lat: 40.297884786154
                          long: -3.5170138773381
                        - lat: 40.297847612402
                          long: -3.5170867805807
                        - lat: 40.297723364151
                          long: -3.5173309256621
                        - lat: 40.297650105174
                          long: -3.5174749747332
                        - lat: 40.297596116109
                          long: -3.5175809301047
                        - lat: 40.297504678293
                          long: -3.5177607270166
                        - lat: 40.297501770148
                          long: -3.5177663526291
                        - lat: 40.297495088241
                          long: -3.5177697138429
                        - lat: 40.297385742648
                          long: -3.517824062897
                        - lat: 40.297113507043
                          long: -3.5179594139109
                        - lat: 40.297030617695
                          long: -3.5180005509437
                        - lat: 40.296985561262
                          long: -3.5180229155984
                        - lat: 40.296920302077
                          long: -3.518050185384
                        - lat: 40.296696002388
                          long: -3.5181437780196
                        - lat: 40.296543219694
                          long: -3.518180733155
                        - lat: 40.296473198863
                          long: -3.5182251447364
                        - lat: 40.296429198656
                          long: -3.5182731672008
                        - lat: 40.296344275992
                          long: -3.5183659409632
                        - lat: 40.296315161088
                          long: -3.5184094882411
                        - lat: 40.296262102201
                          long: -3.5184886212909
                        - lat: 40.296240605936
                          long: -3.5185208136301
                        - lat: 40.296163717108
                          long: -3.5186703605643
                        - lat: 40.296124546102
                          long: -3.5187464226116
                        - lat: 40.296021753976
                          long: -3.5189464824142
                        - lat: 40.295987008432
                          long: -3.5189999872653
                        - lat: 40.295981474431
                          long: -3.5190085341107
                        - lat: 40.295885674058
                          long: -3.5191561702857
                        - lat: 40.295813814225
                          long: -3.5192489245366
                        - lat: 40.295654057019
                          long: -3.5194145428457
                        - lat: 40.295614773736
                          long: -3.5194553051981
                        - lat: 40.295484197113
                          long: -3.5196029088857
                        - lat: 40.295472350976
                          long: -3.5196127015193
                        - lat: 40.295454082048
                          long: -3.5196283279088
                        - lat: 40.295442687415
                          long: -3.5196378886741
                        - lat: 40.295439884065
                          long: -3.5196402203824
                        - lat: 40.295438618582
                          long: -3.5196411519615
                        - lat: 40.295435995412
                          long: -3.5196434850498
                        - lat: 40.295430388713
                          long: -3.5196481484654
                        - lat: 40.295429393498
                          long: -3.5196490821146
                        - lat: 40.29539945966
                          long: -3.5196742671671
                        - lat: 40.295367685724
                          long: -3.519687907516
                        - lat: 40.29533067707
                          long: -3.519703625609
                        - lat: 40.29516864317
                          long: -3.5197341520695
                        - lat: 40.294787859746
                          long: -3.519805712178
                        - lat: 40.294731985094
                          long: -3.5198095197164
                        - lat: 40.294720269203
                          long: -3.5198103712045
                        - lat: 40.294716304198
                          long: -3.5198105761377
                        - lat: 40.294715132503
                          long: -3.5198106848173
                        - lat: 40.294707922683
                          long: -3.51981121786
                        - lat: 40.294679174021
                          long: -3.5198132330666
                        - lat: 40.29467674107
                          long: -3.5198133320814
                        - lat: 40.294651016114
                          long: -3.5198040753094
                        - lat: 40.294649756972
                          long: -3.5198035950301
                        - lat: 40.294613778173
                          long: -3.5197906123071
                        - lat: 40.294602714581
                          long: -3.5197866448299
                        - lat: 40.294593989622
                          long: -3.5197835188769
                        - lat: 40.294582296458
                          long: -3.5197793112629
                        - lat: 40.294472471333
                          long: -3.5197396427991
                        - lat: 40.294391275894
                          long: -3.5197645523553
                        - lat: 40.294354647141
                          long: -3.519775919778
                        - lat: 40.294283916901
                          long: -3.5197976150379
                        - lat: 40.294280849622
                          long: -3.5197985327923
                        - lat: 40.29429402904
                          long: -3.5200333598103
                        - lat: 40.294308882797
                          long: -3.5202964374831
                        - lat: 40.294356762674
                          long: -3.5211481726809
                        - lat: 40.294401887309
                          long: -3.5219502364639
                        - lat: 40.295505080977
                          long: -3.5244389818112
                        - lat: 40.295466367948
                          long: -3.5244728036774
                        - lat: 40.2954163489
                          long: -3.5245164214494
                        - lat: 40.294487510663
                          long: -3.5253264884498
                        - lat: 40.293210155938
                          long: -3.5264802075283
                        - lat: 40.293207792874
                          long: -3.5265045438272
                        - lat: 40.293195885246
                          long: -3.5266266952002
                        - lat: 40.293180101691
                          long: -3.5267888192051
                        - lat: 40.293164510413
                          long: -3.5269482385582
                        - lat: 40.29315779949
                          long: -3.5270172500137
                        - lat: 40.293137668622
                          long: -3.5272238136919
                        - lat: 40.293116499738
                          long: -3.5274406051694
                        - lat: 40.293096273732
                          long: -3.5276481090946
                        - lat: 40.293073969302
                          long: -3.5278766569712
                        - lat: 40.293049870553
                          long: -3.5281231919396
                        - lat: 40.293026146683
                          long: -3.5283664353128
                        - lat: 40.293004311172
                          long: -3.5285906331354
                        - lat: 40.292969522544
                          long: -3.5289482680798
                        - lat: 40.292924813171
                          long: -3.5294064200658
                        - lat: 40.292938449951
                          long: -3.5297929047719
                        - lat: 40.292985435796
                          long: -3.5311187713127
                        - lat: 40.293627418677
                          long: -3.5321815245587
                        - lat: 40.29338232853
                          long: -3.5329726002226
                        - lat: 40.293166902842
                          long: -3.5337768456294
                        - lat: 40.292749553201
                          long: -3.5349948149266
                        - lat: 40.291653903556
                          long: -3.5371792180264
                        - lat: 40.291315968957
                          long: -3.5381671716407
                        - lat: 40.290733908596
                          long: -3.5392637672621
                        - lat: 40.290406426988
                          long: -3.5398807111122
                        - lat: 40.290327169485
                          long: -3.5400299668088
                        - lat: 40.290240731007
                          long: -3.5401928123917
                        - lat: 40.290257388231
                          long: -3.5402721235282
                        - lat: 40.290271664081
                          long: -3.5403404742767
                        - lat: 40.290318638751
                          long: -3.5405641484662
                        - lat: 40.290355475937
                          long: -3.540739976155
                        - lat: 40.290364025467
                          long: -3.5407805159902
                        - lat: 40.290411615605
                          long: -3.5410072546039
                        - lat: 40.290459114656
                          long: -3.5412341104586
                        - lat: 40.290507584974
                          long: -3.5414650921496
                        - lat: 40.290527236631
                          long: -3.5415588988283
                        - lat: 40.290556672235
                          long: -3.5416989027099
                        - lat: 40.290567686643
                          long: -3.5417516981321
                        - lat: 40.290576146277
                          long: -3.5417921198522
                        - lat: 40.290608841617
                          long: -3.5419477975157
                        - lat: 40.290617918031
                          long: -3.5419911654796
                        - lat: 40.290622240883
                          long: -3.5420492018182
                        - lat: 40.290638354007
                          long: -3.542263572565
                        - lat: 40.290642593801
                          long: -3.5423200788143
                        - lat: 40.290662947187
                          long: -3.5425907206731
                        - lat: 40.290667359827
                          long: -3.5426487578056
                        - lat: 40.290683129144
                          long: -3.5428593612566
                        - lat: 40.290687880477
                          long: -3.5429219895163
                        - lat: 40.290703739385
                          long: -3.5431325938102
                        - lat: 40.290707974888
                          long: -3.5431899236886
                        - lat: 40.290724262206
                          long: -3.5434051199222
                        - lat: 40.290730875843
                          long: -3.5434931757701
                        - lat: 40.290740543042
                          long: -3.543621610366
                        - lat: 40.290742241461
                          long: -3.5436436246975
                        - lat: 40.290749020168
                          long: -3.5437348584897
                        - lat: 40.290768947449
                          long: -3.5439996152223
                        - lat: 40.29077640731
                          long: -3.5440992077672
                        - lat: 40.290789550012
                          long: -3.544273907257
                        - lat: 40.290809814821
                          long: -3.5445432554019
                        - lat: 40.290819394085
                          long: -3.544670983681
                        - lat: 40.290830584637
                          long: -3.5448200197786
                        - lat: 40.290849830838
                          long: -3.5450758301847
                        - lat: 40.290851358224
                          long: -3.5450958431442
                        - lat: 40.290854068702
                          long: -3.5451324544173
                        - lat: 40.290854578198
                          long: -3.5451390469734
                        - lat: 40.290878403927
                          long: -3.5451302969251
                        - lat: 40.290884721271
                          long: -3.5451279946608
                        - lat: 40.290956829081
                          long: -3.5451017495416
                        - lat: 40.290992206204
                          long: -3.5450888568267
                        - lat: 40.291066841496
                          long: -3.5450615730678
                        - lat: 40.291110070248
                          long: -3.5450458021005
                        - lat: 40.291175770606
                          long: -3.5450218583698
                        - lat: 40.291222609578
                          long: -3.545004704533
                        - lat: 40.291286324081
                          long: -3.544981568335
                        - lat: 40.291336140984
                          long: -3.5449633794961
                        - lat: 40.291394712071
                          long: -3.5449419666896
                        - lat: 40.291450304662
                          long: -3.544921706445
                        - lat: 40.291503370314
                          long: -3.5449023670901
                        - lat: 40.291564919325
                          long: -3.5448799192254
                        - lat: 40.291607787138
                          long: -3.5448642627838
                        - lat: 40.291678271057
                          long: -3.5448384746821
                        - lat: 40.291715091795
                          long: -3.5448251226795
                        - lat: 40.291791261308
                          long: -3.544797262405
                        - lat: 40.291824020817
                          long: -3.5447854072331
                        - lat: 40.291903529166
                          long: -3.544756397151
                        - lat: 40.291934394023
                          long: -3.5447451149923
                        - lat: 40.292012458716
                          long: -3.5447165638384
                        - lat: 40.292044857304
                          long: -3.5447048233455
                        - lat: 40.292063268219
                          long: -3.5446980296259
                        - lat: 40.292129690321
                          long: -3.54467385572
                        - lat: 40.292148371502
                          long: -3.5446670641536
                        - lat: 40.292241326953
                          long: -3.5446331026502
                        - lat: 40.292250442041
                          long: -3.5446297638729
                        - lat: 40.292256398463
                          long: -3.5446275762729
                        - lat: 40.292356753968
                          long: -3.5445909680304
                        - lat: 40.292457109459
                          long: -3.544554359681
                        - lat: 40.292466585457
                          long: -3.5445509061259
                        - lat: 40.292538152034
                          long: -3.5445247731097
                        - lat: 40.292577319486
                          long: -3.5445104983753
                        - lat: 40.292638236681
                          long: -3.544488280048
                        - lat: 40.292689767966
                          long: -3.5444695159829
                        - lat: 40.292803119539
                          long: -3.5444280700861
                        - lat: 40.292916470542
                          long: -3.5443867417029
                        - lat: 40.293029550707
                          long: -3.5443455286655
                        - lat: 40.293141818945
                          long: -3.5443045442886
                        - lat: 40.293253906435
                          long: -3.5442636759832
                        - lat: 40.293367438106
                          long: -3.5442222308529
                        - lat: 40.293476727813
                          long: -3.544182398738
                        - lat: 40.293589537631
                          long: -3.5441411828614
                        - lat: 40.293683395467
                          long: -3.5441068742072
                        - lat: 40.293742778292
                          long: -3.5440852311407
                        - lat: 40.293766784113
                          long: -3.5440764818053
                        - lat: 40.293768208392
                          long: -3.5440801405696
                        - lat: 40.29377319143
                          long: -3.5440933580266
                        - lat: 40.293875169843
                          long: -3.5443629030527
                        - lat: 40.293934434686
                          long: -3.5445195087379
                        - lat: 40.293977414011
                          long: -3.5446332746184
                        - lat: 40.294077787829
                          long: -3.5448989257071
                        - lat: 40.294114005333
                          long: -3.5449945186013
                        - lat: 40.29417709437
                          long: -3.5451615099261
                        - lat: 40.294279780997
                          long: -3.5454331816831
                        - lat: 40.294280670797
                          long: -3.5454355419785
                        - lat: 40.294379708614
                          long: -3.5456975373201
                        - lat: 40.29448221712
                          long: -3.5459685033216
                        - lat: 40.294502326349
                          long: -3.5460218463276
                        - lat: 40.294561854747
                          long: -3.5461793982914
                        - lat: 40.294581876565
                          long: -3.5462321524307
                        - lat: 40.294620760635
                          long: -3.5463351806535
                        - lat: 40.294681357447
                          long: -3.5464953302449
                        - lat: 40.294714546709
                          long: -3.5465832526841
                        - lat: 40.294722555254
                          long: -3.5466043779614
                        - lat: 40.294735207305
                          long: -3.5466342473412
                        - lat: 40.29478884344
                          long: -3.5467611618262
                        - lat: 40.294885959136
                          long: -3.5469907895877
                        - lat: 40.294889345262
                          long: -3.5469986999846
                        - lat: 40.294983073815
                          long: -3.5472205356569
                        - lat: 40.294996438628
                          long: -3.5472520582324
                        - lat: 40.295026018248
                          long: -3.5473220682575
                        - lat: 40.295103620964
                          long: -3.547505535657
                        - lat: 40.29521329683
                          long: -3.5477650346097
                        - lat: 40.295240114565
                          long: -3.5478284338896
                        - lat: 40.29525757819
                          long: -3.547869520166
                        - lat: 40.295272456513
                          long: -3.5479048203022
                        - lat: 40.295274238798
                          long: -3.5479089527547
                        - lat: 40.295322082359
                          long: -3.5480221740317
                        - lat: 40.295435321035
                          long: -3.5482900572451
                        - lat: 40.295543213972
                          long: -3.5485451909262
                        - lat: 40.295567982094
                          long: -3.5486037502164
                        - lat: 40.295620636218
                          long: -3.5487283066865
                        - lat: 40.295624755772
                          long: -3.5487335170232
                        - lat: 40.295684313004
                          long: -3.5488082419337
                        - lat: 40.295730256993
                          long: -3.548865913847
                        - lat: 40.2958430123
                          long: -3.5490074295946
                        - lat: 40.29592155548
                          long: -3.5491060759683
                        - lat: 40.29594976663
                          long: -3.5491414846569
                        - lat: 40.29606261112
                          long: -3.549283119706
                        - lat: 40.296170708638
                          long: -3.5494188337629
                        - lat: 40.296276656703
                          long: -3.5495518246481
                        - lat: 40.296290000642
                          long: -3.5495686405501
                        - lat: 40.296363438984
                          long: -3.5496607755261
                        - lat: 40.296471446515
                          long: -3.5497963724006
                        - lat: 40.296513360025
                          long: -3.5498489535662
                        - lat: 40.296584021589
                          long: -3.5499376544685
                        - lat: 40.296639726555
                          long: -3.550007643819
                        - lat: 40.296651817008
                          long: -3.550022802481
                        - lat: 40.296692118315
                          long: -3.5500733706124
                        - lat: 40.296799856758
                          long: -3.5502086136386
                        - lat: 40.296892011856
                          long: -3.5503243165024
                        - lat: 40.296894608773
                          long: -3.5503276320956
                        - lat: 40.296991689548
                          long: -3.5504494936659
                        - lat: 40.29699607817
                          long: -3.5504549417202
                        - lat: 40.297035662487
                          long: -3.5505046809151
                        - lat: 40.297020827292
                          long: -3.5505551550852
                        - lat: 40.297009105503
                          long: -3.5505950649463
                        - lat: 40.29692870445
                          long: -3.5508680932716
                        - lat: 40.296850497965
                          long: -3.5511341967517
                        - lat: 40.296788867285
                          long: -3.5513437215735
                        - lat: 40.296774215268
                          long: -3.5513934908967
                        - lat: 40.29669289574
                          long: -3.5516698043714
                        - lat: 40.296623113701
                          long: -3.5519070299176
                        - lat: 40.296613039995
                          long: -3.5519413049891
                        - lat: 40.296557543222
                          long: -3.5521300522777
                        - lat: 40.296540050372
                          long: -3.5521897993162
                        - lat: 40.296460835274
                          long: -3.5524589507095
                        - lat: 40.296383816543
                          long: -3.5527208244079
                        - lat: 40.296327677759
                          long: -3.5529116830763
                        - lat: 40.296306706009
                          long: -3.5529829320834
                        - lat: 40.296267052294
                          long: -3.553117565385
                        - lat: 40.296229319552
                          long: -3.5532460958553
                        - lat: 40.296153125049
                          long: -3.5535047976615
                        - lat: 40.296128030804
                          long: -3.5535902495463
                        - lat: 40.296110538893
                          long: -3.5536496428558
                        - lat: 40.296109531584
                          long: -3.55365304678
                        - lat: 40.296103211831
                          long: -3.553674644673
                        - lat: 40.29609927437
                          long: -3.5536879081348
                        - lat: 40.296088008708
                          long: -3.5537264087121
                        - lat: 40.296075003745
                          long: -3.5537706604244
                        - lat: 40.296015383514
                          long: -3.5539732549246
                        - lat: 40.29599752598
                          long: -3.5540337039901
                        - lat: 40.295917664716
                          long: -3.5543051989876
                        - lat: 40.295907131965
                          long: -3.5543411168318
                        - lat: 40.295889913885
                          long: -3.5543996883729
                        - lat: 40.295873612454
                          long: -3.5544549729026
                        - lat: 40.295849891406
                          long: -3.5545357289187
                        - lat: 40.295805564631
                          long: -3.5546863239068
                        - lat: 40.295772502563
                          long: -3.5547986538024
                        - lat: 40.295765084036
                          long: -3.5548238899416
                        - lat: 40.295693921646
                          long: -3.555065804072
                        - lat: 40.295669284603
                          long: -3.5551496113087
                        - lat: 40.295653806604
                          long: -3.5552021960511
                        - lat: 40.295590431986
                          long: -3.5553042762538
                        - lat: 40.29557708497
                          long: -3.5553258162985
                        - lat: 40.295481478357
                          long: -3.5554797553389
                        - lat: 40.295397038392
                          long: -3.5556159012506
                        - lat: 40.295369527789
                          long: -3.5556601509867
                        - lat: 40.295303519837
                          long: -3.5557664444776
                        - lat: 40.295262752155
                          long: -3.5558322346743
                        - lat: 40.295154252135
                          long: -3.5560068921753
                        - lat: 40.29504702215
                          long: -3.556179676998
                        - lat: 40.294953321555
                          long: -3.5563304524975
                        - lat: 40.294942516648
                          long: -3.5563478949519
                        - lat: 40.294832380101
                          long: -3.5565254788302
                        - lat: 40.29481403947
                          long: -3.5565549781659
                        - lat: 40.294767370264
                          long: -3.5566301316207
                        - lat: 40.294759289497
                          long: -3.5566431253351
                        - lat: 40.294655055292
                          long: -3.5568109911181
                        - lat: 40.294609293609
                          long: -3.5568847397804
                        - lat: 40.29454845927
                          long: -3.5569828373487
                        - lat: 40.294547007081
                          long: -3.5569850609174
                        - lat: 40.294439549563
                          long: -3.5571299560063
                        - lat: 40.294329643589
                          long: -3.5572781249226
                        - lat: 40.29432583491
                          long: -3.5572832705467
                        - lat: 40.294243768633
                          long: -3.5573937821926
                        - lat: 40.294221913738
                          long: -3.5574233698187
                        - lat: 40.294116632555
                          long: -3.5575652223356
                        - lat: 40.294009446283
                          long: -3.557709764852
                        - lat: 40.293911510191
                          long: -3.5578416760917
                        - lat: 40.293897998412
                          long: -3.5578599193734
                        - lat: 40.293787184376
                          long: -3.5580093726796
                        - lat: 40.293664672589
                          long: -3.5581744951497
                        - lat: 40.293606635777
                          long: -3.5582527293858
                        - lat: 40.293592869953
                          long: -3.5582862656701
                        - lat: 40.293562420789
                          long: -3.5583604911869
                        - lat: 40.293455939853
                          long: -3.5586199865826
                        - lat: 40.293344627349
                          long: -3.5588910892432
                        - lat: 40.293286826479
                          long: -3.5590322700212
                        - lat: 40.293263305484
                          long: -3.5590896096119
                        - lat: 40.293237597303
                          long: -3.5591521079646
                        - lat: 40.29313776961
                          long: -3.5593954193443
                        - lat: 40.293028733708
                          long: -3.55966112612
                        - lat: 40.292992540318
                          long: -3.5597493039263
                        - lat: 40.292984973554
                          long: -3.5597677132906
                        - lat: 40.292920481681
                          long: -3.5599136611908
                        - lat: 40.292811447354
                          long: -3.5601601886188
                        - lat: 40.292707694661
                          long: -3.5603949934563
                        - lat: 40.292672351412
                          long: -3.5604749416824
                        - lat: 40.292603578287
                          long: -3.5606303828409
                        - lat: 40.292492445868
                          long: -3.5608819497382
                        - lat: 40.292388874179
                          long: -3.5611162832506
                        - lat: 40.292326111713
                          long: -3.561258242672
                        - lat: 40.292288490529
                          long: -3.5613433479069
                        - lat: 40.292188106436
                          long: -3.5615704118878
                        - lat: 40.292149665083
                          long: -3.5616573924395
                        - lat: 40.292094930416
                          long: -3.5617044711969
                        - lat: 40.292004912449
                          long: -3.5617818475201
                        - lat: 40.291977228066
                          long: -3.561805737142
                        - lat: 40.29194266834
                          long: -3.5618354524548
                        - lat: 40.291873277456
                          long: -3.5618951160477
                        - lat: 40.291763626588
                          long: -3.5619895065259
                        - lat: 40.291655423928
                          long: -3.5620824968699
                        - lat: 40.291548125514
                          long: -3.5621747884983
                        - lat: 40.291463534877
                          long: -3.5622476201273
                        - lat: 40.291460006537
                          long: -3.5622506498415
                        - lat: 40.291437026703
                          long: -3.5622704602501
                        - lat: 40.291428703627
                          long: -3.5622775680464
                        - lat: 40.29136618845
                          long: -3.5623312874815
                        - lat: 40.291327828834
                          long: -3.5623642650174
                        - lat: 40.29131697182
                          long: -3.5623737048239
                        - lat: 40.291273364719
                          long: -3.562411227232
                        - lat: 40.291256809209
                          long: -3.5624253258541
                        - lat: 40.291240162465
                          long: -3.5624396590164
                        - lat: 40.291222792147
                          long: -3.5624545744315
                        - lat: 40.291218901156
                          long: -3.5624580717245
                        - lat: 40.291206235488
                          long: -3.5624689083264
                        - lat: 40.291202887892
                          long: -3.5624718218645
                        - lat: 40.291189226666
                          long: -3.5624835914204
                        - lat: 40.291172218415
                          long: -3.5624981568603
                        - lat: 40.291155210161
                          long: -3.5625127222929
                        - lat: 40.29114525803
                          long: -3.5625213459936
                        - lat: 40.29113964848
                          long: -3.5625262408483
                        - lat: 40.291123001723
                          long: -3.5625405739613
                        - lat: 40.29110554073
                          long: -3.5625556062248
                        - lat: 40.291088985203
                          long: -3.562569704777
                        - lat: 40.291072519192
                          long: -3.5625839217161
                        - lat: 40.291055782339
                          long: -3.5625982540538
                        - lat: 40.291038954823
                          long: -3.562612703284
                        - lat: 40.291022307484
                          long: -3.5626271540012
                        - lat: 40.291005299214
                          long: -3.5626417193695
                        - lat: 40.290987928869
                          long: -3.5626566346817
                        - lat: 40.290971553508
                          long: -3.5626707346793
                        - lat: 40.290954816072
                          long: -3.5626851846209
                        - lat: 40.290937988546
                          long: -3.5626996338082
                        - lat: 40.290921522518
                          long: -3.5627138506843
                        - lat: 40.290904694988
                          long: -3.5627282998575
                        - lat: 40.290888319618
                          long: -3.5627423998206
                        - lat: 40.290869863613
                          long: -3.562758247285
                        - lat: 40.290842360352
                          long: -3.5627819023138
                        - lat: 40.290842896309
                          long: -3.5627828479679
                        - lat: 40.290894609808
                          long: -3.5628753977657
                        - lat: 40.291282953276
                          long: -3.5635697063204
                        - lat: 40.291622258136
                          long: -3.5641765522134
                        - lat: 40.291784183799
                          long: -3.5644661477889
                        - lat: 40.291910562779
                          long: -3.5646920339397
                        - lat: 40.291822340526
                          long: -3.5647887160805
                        - lat: 40.291469448987
                          long: -3.5651757950749
                        - lat: 40.291384396693
                          long: -3.5652689728161
                        - lat: 40.291018007232
                          long: -3.5656708760153
                        - lat: 40.290663482518
                          long: -3.5660596970055
                        - lat: 40.290482324538
                          long: -3.5662584265346
                        - lat: 40.29031194557
                          long: -3.5664452446911
                        - lat: 40.289970824646
                          long: -3.5668192281172
                        - lat: 40.289615209254
                          long: -3.5672092045272
                        - lat: 40.289566477169
                          long: -3.567262680284
                        - lat: 40.289254519863
                          long: -3.5676047815363
                        - lat: 40.288817379818
                          long: -3.5680840676219
                        - lat: 40.287572382558
                          long: -3.5705933720216
                        - lat: 40.287167897693
                          long: -3.5714084243831
                        - lat: 40.287119395069
                          long: -3.5715062491367
                        - lat: 40.287123370027
                          long: -3.5715040473694
                        - lat: 40.287520301932
                          long: -3.571288570406
                        - lat: 40.28754848639
                          long: -3.5712732785248
                        - lat: 40.28765950844
                          long: -3.5712129199485
                        - lat: 40.288551590184
                          long: -3.5710156065032
                        - lat: 40.288733382222
                          long: -3.5710004304986
                        - lat: 40.288768262356
                          long: -3.5709975475546
                        - lat: 40.289007827582
                          long: -3.5709775634905
                        - lat: 40.289817926255
                          long: -3.5711267364224
                        - lat: 40.29084423017
                          long: -3.5713158524557
                        - lat: 40.290896791164
                          long: -3.5711806433451
                        - lat: 40.291064325856
                          long: -3.5707501555427
                        - lat: 40.291353098638
                          long: -3.5702882128536
                        - lat: 40.291680122539
                          long: -3.5700714222921
                        - lat: 40.291877660824
                          long: -3.570060258008
                        - lat: 40.292124277105
                          long: -3.5701268042198
                        - lat: 40.292961735267
                          long: -3.5709213049089
                        - lat: 40.293349991647
                          long: -3.5712585959266
                        - lat: 40.294476449537
                          long: -3.5722372250459
                        - lat: 40.295505859476
                          long: -3.5730541091519
                        - lat: 40.295666147716
                          long: -3.5731605330636
                        - lat: 40.295713022572
                          long: -3.5731915205883
                        - lat: 40.295753161737
                          long: -3.5732182154942
                        - lat: 40.295863882241
                          long: -3.5732916295045
                        - lat: 40.295949368762
                          long: -3.5733484757442
                        - lat: 40.296026414886
                          long: -3.5733996031006
                        - lat: 40.296079844586
                          long: -3.5734349997928
                        - lat: 40.296215887187
                          long: -3.5735253363741
                        - lat: 40.296235553079
                          long: -3.5735383276281
                        - lat: 40.296473164672
                          long: -3.5736943546379
                        - lat: 40.296786388087
                          long: -3.573899969528
                        - lat: 40.296838920818
                          long: -3.5739345357983
                        - lat: 40.296882294825
                          long: -3.5739629062271
                        - lat: 40.297208742516
                          long: -3.5741541631286
                        - lat: 40.297399814352
                          long: -3.5742660301212
                        - lat: 40.297842054164
                          long: -3.5745251033013
                        - lat: 40.297998241166
                          long: -3.5746044370877
                        - lat: 40.298017921535
                          long: -3.5746144875383
                        - lat: 40.298059107423
                          long: -3.5746298973793
                        - lat: 40.298133564814
                          long: -3.5746579438013
                        - lat: 40.298526805516
                          long: -3.5748057672737
                        - lat: 40.298549646573
                          long: -3.5748143150121
                        - lat: 40.298842801195
                          long: -3.5749244627919
                        - lat: 40.298915910092
                          long: -3.5749519101154
                        - lat: 40.299589424271
                          long: -3.5751730662487
                        - lat: 40.300229658318
                          long: -3.5753832367896
                        - lat: 40.300316350006
                          long: -3.5754149187834
                        - lat: 40.300699718397
                          long: -3.5755549016762
                        - lat: 40.300933909604
                          long: -3.5756734985828
                        - lat: 40.301012624945
                          long: -3.5756786381367
                        - lat: 40.301356847033
                          long: -3.5757010930834
                        - lat: 40.301729528361
                          long: -3.57572555492
                        - lat: 40.301764022988
                          long: -3.5757277304681
                        - lat: 40.301849132859
                          long: -3.5757332774544
                        - lat: 40.302464264551
                          long: -3.5757735655557
                        - lat: 40.302894136327
                          long: -3.5758016909812
                        - lat: 40.302956108597
                          long: -3.5758039822433
                        - lat: 40.30317571449
                          long: -3.575811965813
                        - lat: 40.303354875803
                          long: -3.5758185469736
                        - lat: 40.303491340908
                          long: -3.5758235889067
                        - lat: 40.303737249173
                          long: -3.5758325020046
                        - lat: 40.303900647283
                          long: -3.5758384787447
                        - lat: 40.30394631641
                          long: -3.5758400432789
                        - lat: 40.304164157863
                          long: -3.5758586028064
                        - lat: 40.304319140808
                          long: -3.5758719216835
                        - lat: 40.304702682212
                          long: -3.575904597529
                        - lat: 40.304841092447
                          long: -3.5758989478373
                        - lat: 40.305689577378
                          long: -3.5758640255683
                        - lat: 40.305955674897
                          long: -3.5758531055299
                        - lat: 40.306127245938
                          long: -3.5758460897835
                        - lat: 40.306498349469
                          long: -3.575825470319
                        - lat: 40.306573687623
                          long: -3.5758212852844
                        - lat: 40.306650647373
                          long: -3.5758171140119
                        - lat: 40.307038422544
                          long: -3.5757955767236
                        - lat: 40.307455035432
                          long: -3.5757724012156
                        - lat: 40.307660502606
                          long: -3.5757610834572
                        - lat: 40.307672758765
                          long: -3.5757603637682
                        - lat: 40.307695604391
                          long: -3.5757679716147
                        - lat: 40.307726185342
                          long: -3.5757781164381
                        - lat: 40.307727444826
                          long: -3.5757784801741
                        - lat: 40.307747772068
                          long: -3.5757852428851
                        - lat: 40.307771157637
                          long: -3.5757929730142
                        - lat: 40.307792024238
                          long: -3.5757999756752
                        - lat: 40.307794363029
                          long: -3.5758007016187
                        - lat: 40.307974070248
                          long: -3.5758604796622
                        - lat: 40.307987742052
                          long: -3.575864949964
                        - lat: 40.308290852851
                          long: -3.5759655528139
                        - lat: 40.308792738906
                          long: -3.5761322175513
                        - lat: 40.309212326627
                          long: -3.5762714712679
                        - lat: 40.309877009837
                          long: -3.5764922471666
                        - lat: 40.310245058943
                          long: -3.5766144735427
                        - lat: 40.310302442803
                          long: -3.5766335557724
                        - lat: 40.310374937496
                          long: -3.5766575916385
                        - lat: 40.310416761241
                          long: -3.5766714811389
                        - lat: 40.310424856311
                          long: -3.5766741390623
                        - lat: 40.310568945955
                          long: -3.5767219679996
                        - lat: 40.31059682825
                          long: -3.5767312669452
                        - lat: 40.310660598403
                          long: -3.5767524043553
                        - lat: 40.310750901859
                          long: -3.5767823585761
                        - lat: 40.310873404803
                          long: -3.5768230608594
                        - lat: 40.31089193313
                          long: -3.5768292204742
                        - lat: 40.310906504012
                          long: -3.5768340518777
                        - lat: 40.310958041456
                          long: -3.5768512017673
                        - lat: 40.311005351775
                          long: -3.5768669034841
                        - lat: 40.311015335765
                          long: -3.5768701659571
                        - lat: 40.311023250652
                          long: -3.5768728223954
                        - lat: 40.311234617889
                          long: -3.5769429966762
                        - lat: 40.311260881502
                          long: -3.5769516936001
                        - lat: 40.311394357571
                          long: -3.576996020495
                        - lat: 40.311478364725
                          long: -3.5770239211113
                        - lat: 40.311701694257
                          long: -3.5770980818547
                        - lat: 40.311714016433
                          long: -3.5771021881105
                        - lat: 40.312182945809
                          long: -3.5769580106756
                        - lat: 40.312367647639
                          long: -3.5769013268515
                        - lat: 40.312602969519
                          long: -3.5768289500871
                        - lat: 40.313035264471
                          long: -3.5766961085667
                        - lat: 40.313117554896
                          long: -3.5766707991894
                        - lat: 40.313419466382
                          long: -3.5765780383841
                        - lat: 40.313581881522
                          long: -3.5765281067311
                        - lat: 40.313722731457
                          long: -3.5764848175164
                        - lat: 40.313875762681
                          long: -3.5764377479054
                        - lat: 40.313915193541
                          long: -3.5764256079489
                        - lat: 40.3140335762
                          long: -3.576389188762
                        - lat: 40.314531197281
                          long: -3.5762363009484
                        - lat: 40.314536250447
                          long: -3.5762346962134
                        - lat: 40.314556552613
                          long: -3.5762283957241
                        - lat: 40.314570177088
                          long: -3.5762242746198
                        - lat: 40.314615112116
                          long: -3.5762104158222
                        - lat: 40.314884630403
                          long: -3.5761276149556
                        - lat: 40.314647560856
                          long: -3.5777968307037
                        - lat: 40.315455631937
                          long: -3.5787815177009
                        - lat: 40.315663110175
                          long: -3.5790344483368
                        - lat: 40.315867185696
                          long: -3.579283114449
                        - lat: 40.315886563481
                          long: -3.5795153734815
                        - lat: 40.315939423737
                          long: -3.5801492573533
                        - lat: 40.315967466801
                          long: -3.5804856330728
                        - lat: 40.315949395958
                          long: -3.5804960708297
                        - lat: 40.315937867417
                          long: -3.5807287718688
                        - lat: 40.315920130496
                          long: -3.5810853519165
                        - lat: 40.315902398392
                          long: -3.5814407548706
                        - lat: 40.315880246112
                          long: -3.5818866267052
                        - lat: 40.3161406807
                          long: -3.582410250638
                        - lat: 40.315811952241
                          long: -3.5838185808079
                        - lat: 40.317549819797
                          long: -3.584677439013
                        - lat: 40.318354315865
                          long: -3.5850750207097
                        - lat: 40.319367141418
                          long: -3.5850734060803
                        - lat: 40.320285459979
                          long: -3.5850717996568
                        - lat: 40.320415644152
                          long: -3.5850716287661
                        - lat: 40.320674640479
                          long: -3.5849862937735
                        - lat: 40.320904488221
                          long: -3.5849105936428
                        - lat: 40.321297223779
                          long: -3.5847812132495
                        - lat: 40.322158498235
                          long: -3.5844974420969
                        - lat: 40.322171132601
                          long: -3.5844931959674
                        - lat: 40.322189000415
                          long: -3.5844873470977
                        - lat: 40.322328694081
                          long: -3.5844594786157
                        - lat: 40.322435561702
                          long: -3.5844380361662
                        - lat: 40.322580263129
                          long: -3.584399734834
                        - lat: 40.322715461249
                          long: -3.5843343966575
                        - lat: 40.322809657585
                          long: -3.5842888325265
                        - lat: 40.32291514288
                          long: -3.5842378333832
                        - lat: 40.323128200034
                          long: -3.5841508014004
                        - lat: 40.323220844587
                          long: -3.5841092254116
                        - lat: 40.323479815641
                          long: -3.5839930437238
                        - lat: 40.323603206385
                          long: -3.583946553108
                        - lat: 40.32372244473
                          long: -3.5839016744593
                        - lat: 40.323979166129
                          long: -3.5837492175491
                        - lat: 40.32399435026
                          long: -3.5837395785429
                        - lat: 40.324340870529
                          long: -3.5835202110247
                        - lat: 40.324371871151
                          long: -3.583500585122
                        - lat: 40.324506990677
                          long: -3.5834149967725
                        - lat: 40.324644855984
                          long: -3.5833387307824
                        - lat: 40.324852195565
                          long: -3.583224100463
                        - lat: 40.324930049274
                          long: -3.5831855730579
                        - lat: 40.325053964884
                          long: -3.5831242530204
                        - lat: 40.325059654686
                          long: -3.5831214769345
                        - lat: 40.325108654004
                          long: -3.5830878802709
                        - lat: 40.325183961553
                          long: -3.5830361470747
                        - lat: 40.325241523386
                          long: -3.5830017999825
                        - lat: 40.325312548698
                          long: -3.582959564326
                        - lat: 40.3255704471
                          long: -3.5828056979254
                        - lat: 40.325579656267
                          long: -3.5828017749487
                        - lat: 40.325719960619
                          long: -3.5827420071143
                        - lat: 40.325767721677
                          long: -3.5827217006155
                        - lat: 40.325890420234
                          long: -3.5826694323329
                        - lat: 40.325910784927
                          long: -3.5826686657519
                        - lat: 40.325955478789
                          long: -3.5826670489669
                        - lat: 40.326001074127
                          long: -3.5826653222197
                        - lat: 40.32605373788
                          long: -3.5826375241677
                        - lat: 40.326155541845
                          long: -3.5825838987495
                        - lat: 40.326290838485
                          long: -3.5824987787322
                        - lat: 40.326345973667
                          long: -3.5823737710756
                        - lat: 40.326352535282
                          long: -3.5823588779695
                        - lat: 40.326421431232
                          long: -3.5822026767411
                        - lat: 40.326423345598
                          long: -3.5821982201059
                        - lat: 40.326432003509
                          long: -3.5821785187543
                        - lat: 40.326435192735
                          long: -3.5821713656777
                        - lat: 40.326438638007
                          long: -3.5821670399064
                        - lat: 40.326458948696
                          long: -3.5821411998815
                        - lat: 40.326484338085
                          long: -3.5821086938401
                        - lat: 40.326570750725
                          long: -3.581998432848
                        - lat: 40.326573561228
                          long: -3.5819949255982
                        - lat: 40.326593963151
                          long: -3.5819688508281
                        - lat: 40.326647414008
                          long: -3.5818561875966
                        - lat: 40.326685749084
                          long: -3.5817754123985
                        - lat: 40.326743091547
                          long: -3.5816950357094
                        - lat: 40.326782740677
                          long: -3.5816395799572
                        - lat: 40.326827709587
                          long: -3.5815653356513
                        - lat: 40.326836976114
                          long: -3.5815499947226
                        - lat: 40.32691319626
                          long: -3.5814241067925
                        - lat: 40.326960346081
                          long: -3.5813461140754
                        - lat: 40.327004378842
                          long: -3.5812609139719
                        - lat: 40.327088352359
                          long: -3.5810980120292
                        - lat: 40.327091628059
                          long: -3.5810915658576
                        - lat: 40.327170688098
                          long: -3.5809382739202
                        - lat: 40.327185972486
                          long: -3.5809086233074
                        - lat: 40.327254231407
                          long: -3.580771247495
                        - lat: 40.327331317354
                          long: -3.5806162899004
                        - lat: 40.327339599874
                          long: -3.5805995277247
                        - lat: 40.327382101769
                          long: -3.5805140781156
                        - lat: 40.327410861468
                          long: -3.5804561735762
                        - lat: 40.327445627796
                          long: -3.5803861958447
                        - lat: 40.327477936306
                          long: -3.5803212587175
                        - lat: 40.327479843514
                          long: -3.5803182144733
                        - lat: 40.327589807187
                          long: -3.5801463510054
                        - lat: 40.327609874908
                          long: -3.5801149752625
                        - lat: 40.327642927952
                          long: -3.5800632282867
                        - lat: 40.327752528536
                          long: -3.5798918317458
                        - lat: 40.327759231654
                          long: -3.5798845907805
                        - lat: 40.327874654335
                          long: -3.5797558563949
                        - lat: 40.327918558682
                          long: -3.5796780690789
                        - lat: 40.327941283664
                          long: -3.5796377694098
                        - lat: 40.328067788635
                          long: -3.57943685167
                        - lat: 40.328096667838
                          long: -3.5793909541068
                        - lat: 40.328142059335
                          long: -3.5793039971889
                        - lat: 40.328162707442
                          long: -3.5792646212321
                        - lat: 40.328206096863
                          long: -3.5791816493696
                        - lat: 40.32820827961
                          long: -3.5791775479735
                        - lat: 40.328355547293
                          long: -3.5788961704786
                        - lat: 40.328359276847
                          long: -3.5788890216613
                        - lat: 40.328362278625
                          long: -3.5788832792186
                        - lat: 40.328418857208
                          long: -3.5787751105522
                        - lat: 40.32852377954
                          long: -3.5786740644246
                        - lat: 40.328549308098
                          long: -3.5786495620053
                        - lat: 40.328644723362
                          long: -3.5785579693556
                        - lat: 40.32866954002
                          long: -3.5785316950209
                        - lat: 40.328684392799
                          long: -3.5785161655265
                        - lat: 40.328845698257
                          long: -3.5783459115124
                        - lat: 40.328984179422
                          long: -3.5781998293792
                        - lat: 40.32900851967
                          long: -3.5781787302759
                        - lat: 40.329063625249
                          long: -3.5781308186996
                        - lat: 40.329124068961
                          long: -3.5780783616117
                        - lat: 40.329161801666
                          long: -3.5780454872158
                        - lat: 40.329229846281
                          long: -3.5779863849146
                        - lat: 40.329276898047
                          long: -3.5779455851074
                        - lat: 40.329357429487
                          long: -3.5778756413517
                        - lat: 40.329364136008
                          long: -3.5778676937388
                        - lat: 40.329400477222
                          long: -3.57782480122
                        - lat: 40.329620428953
                          long: -3.5775648715766
                        - lat: 40.329712449209
                          long: -3.5774493501818
                        - lat: 40.329834296399
                          long: -3.5772964126639
                        - lat: 40.330011350373
                          long: -3.5770932079995
                        - lat: 40.330185866843
                          long: -3.5768929236528
                        - lat: 40.330364938738
                          long: -3.5767004465478
                        - lat: 40.330418288887
                          long: -3.5766431003045
                        - lat: 40.330496383907
                          long: -3.5765557105667
                        - lat: 40.330584626241
                          long: -3.5764568704115
                        - lat: 40.330664805469
                          long: -3.5763670258548
                        - lat: 40.330718983256
                          long: -3.5763062722514
                        - lat: 40.330820180128
                          long: -3.5761930620196
                        - lat: 40.33105964772
                          long: -3.5759754316276
                        - lat: 40.331063448426
                          long: -3.5759720500363
                        - lat: 40.331374181588
                          long: -3.5757175883482
                        - lat: 40.331407471762
                          long: -3.5756902067143
                        - lat: 40.331505801957
                          long: -3.5756098143887
                        - lat: 40.331542167408
                          long: -3.5755799866223
                        - lat: 40.331673292213
                          long: -3.5754631433377
                        - lat: 40.331679083632
                          long: -3.5754580127687
                        - lat: 40.331918166657
                          long: -3.5752449649549
                        - lat: 40.331948958833
                          long: -3.5752126173229
                        - lat: 40.332053744125
                          long: -3.5751022592232
                        - lat: 40.332235305134
                          long: -3.57484339756
                        - lat: 40.332629364711
                          long: -3.5742817860359
                        - lat: 40.332819180349
                          long: -3.5740112175435
                        - lat: 40.332947078484
                          long: -3.5738180564958
                        - lat: 40.33314151303
                          long: -3.5735242151097
                        - lat: 40.333262643462
                          long: -3.5733512435898
                        - lat: 40.333582209236
                          long: -3.5728948199971
                        - lat: 40.33361056954
                          long: -3.5728622144935
                        - lat: 40.333787527428
                          long: -3.5726586330137
                        - lat: 40.333812388791
                          long: -3.5726230545964
                        - lat: 40.333851495984
                          long: -3.5725669945732
                        - lat: 40.334308895392
                          long: -3.5719110037906
                        - lat: 40.334422192145
                          long: -3.5717366653112
                        - lat: 40.334480838365
                          long: -3.5716462752266
                        - lat: 40.334594198952
                          long: -3.5715501071072
                        - lat: 40.33474024737
                          long: -3.5715117830325
                        - lat: 40.33491830594
                          long: -3.5715408335361
                        - lat: 40.334985870935
                          long: -3.5715598868464
                        - lat: 40.335078356646
                          long: -3.5715859786881
                        - lat: 40.335135538206
                          long: -3.5716096535874
                        - lat: 40.335152502731
                          long: -3.5716041458004
                        - lat: 40.33525031901
                          long: -3.5715724782532
                        - lat: 40.335732479492
                          long: -3.5712649182147
                        - lat: 40.335838171167
                          long: -3.5712074159216
                        - lat: 40.335858676439
                          long: -3.5711964045658
                        - lat: 40.335863554578
                          long: -3.57119373793
                        - lat: 40.33590700564
                          long: -3.5711700875649
                        - lat: 40.335925705073
                          long: -3.571159885065
                        - lat: 40.335927331313
                          long: -3.5711589569432
                        - lat: 40.336160484505
                          long: -3.5710322443541
                        - lat: 40.336499853774
                          long: -3.5707964660551
                        - lat: 40.337021924479
                          long: -3.5704337796683
                        - lat: 40.337175788835
                          long: -3.570326762522
                        - lat: 40.337477579394
                          long: -3.5700927800956
                        - lat: 40.337557437344
                          long: -3.570048831766
                        - lat: 40.337639553286
                          long: -3.5700037250132
                        - lat: 40.3378587971
                          long: -3.5699753127717
                        - lat: 40.338132382291
                          long: -3.5699619565315
                        - lat: 40.338208798619
                          long: -3.5699582434452
                        - lat: 40.338636324113
                          long: -3.5699869184352
                        - lat: 40.338681289185
                          long: -3.5699850598923
                        - lat: 40.338754369339
                          long: -3.5699819074049
                        - lat: 40.338836279884
                          long: -3.5699784760202
                        - lat: 40.33903259987
                          long: -3.569939980621
                        - lat: 40.339210635616
                          long: -3.5698640091606
                        - lat: 40.339344703791
                          long: -3.5698068582584
                        - lat: 40.339685355266
                          long: -3.5695479974757
                        - lat: 40.339760522945
                          long: -3.5694868182128
                        - lat: 40.340040476791
                          long: -3.5692594684176
                        - lat: 40.340261726586
                          long: -3.5690796601537
                        - lat: 40.340331697277
                          long: -3.5690126670831
                        - lat: 40.340500062906
                          long: -3.568851133295
                        - lat: 40.340782606432
                          long: -3.5684815729834
                        - lat: 40.340875820619
                          long: -3.5683595547936
                        - lat: 40.341046379654
                          long: -3.5681364594245
                        - lat: 40.341174501366
                          long: -3.5680425193279
                        - lat: 40.341324232717
                          long: -3.5679327476414
                        - lat: 40.341687196608
                          long: -3.5676241355298
                        - lat: 40.341770880672
                          long: -3.5675530158651
                        - lat: 40.341863068801
                          long: -3.5674746674292
                        - lat: 40.34214318158
                          long: -3.5673059382482
                        - lat: 40.342277059004
                          long: -3.5671955596416
                        - lat: 40.342529256025
                          long: -3.5669873868777
                        - lat: 40.342792431047
                          long: -3.5667266741211
                        - lat: 40.342846116427
                          long: -3.5666734333487
                        - lat: 40.343221519935
                          long: -3.5663443068267
                        - lat: 40.343305524777
                          long: -3.5662627076216
                        - lat: 40.343434972286
                          long: -3.5661368637978
                        - lat: 40.343542061268
                          long: -3.5660326149866
                        - lat: 40.343715320918
                          long: -3.5658642780218
                        - lat: 40.343739219418
                          long: -3.5658409291448
                        - lat: 40.343847265953
                          long: -3.5657618844187
                        - lat: 40.344133431152
                          long: -3.5655524545729
                        - lat: 40.344377976657
                          long: -3.565360808077
                        - lat: 40.344410427369
                          long: -3.5653203395635
                        - lat: 40.346921326241
                          long: -3.5621889418947
                        - lat: 40.346993657887
                          long: -3.5620987583168
                        - lat: 40.347009248627
                          long: -3.5620792237303
                        - lat: 40.347025198828
                          long: -3.5620784141476
                        - lat: 40.347037364749
                          long: -3.5620776908991
                        - lat: 40.347061245578
                          long: -3.5620763584061
                        - lat: 40.347225797676
                          long: -3.5620672447329
                        - lat: 40.347244779723
                          long: -3.5620543321669
                        - lat: 40.349154898963
                          long: -3.5607568971024
                        - lat: 40.34917614049
                          long: -3.5607424717396
                        - lat: 40.349272018061
                          long: -3.5605711116238
                        - lat: 40.34928642613
                          long: -3.5605167114878
                        - lat: 40.349309367001
                          long: -3.5604304710122
                        - lat: 40.349318658128
                          long: -3.5604094702039
                        - lat: 40.349328313027
                          long: -3.560387765885
                        - lat: 40.349338424068
                          long: -3.5603648878089
                        - lat: 40.349582531961
                          long: -3.5598152350981
                        - lat: 40.349776814046
                          long: -3.5593778568478
                        - lat: 40.349918097371
                          long: -3.5591875567187
                        - lat: 40.350157693284
                          long: -3.5589179947608
                        - lat: 40.350201949575
                          long: -3.5588763218871
                        - lat: 40.350331459822
                          long: -3.5587544554153
                        - lat: 40.350472281006
                          long: -3.5587155810593
                        - lat: 40.350478135606
                          long: -3.558715864884
                        - lat: 40.350548930762
                          long: -3.5587193929949
                        - lat: 40.350602432952
                          long: -3.5587219541165
                        - lat: 40.350736259656
                          long: -3.558676309785
                        - lat: 40.350883803641
                          long: -3.5586258327392
                        - lat: 40.351104081569
                          long: -3.5585505203455
                        - lat: 40.351274775396
                          long: -3.5584634938615
                        - lat: 40.351463442195
                          long: -3.5583671946741
                        - lat: 40.351904319586
                          long: -3.5581685242254
                        - lat: 40.352016414898
                          long: -3.5581268202977
                        - lat: 40.352208391294
                          long: -3.5579980453127
                        - lat: 40.352339821206
                          long: -3.5578889072589
                        - lat: 40.352438958896
                          long: -3.5578065870675
                        - lat: 40.352550307273
                          long: -3.5577142400264
                        - lat: 40.352570297403
                          long: -3.5576976830384
                        - lat: 40.352666691611
                          long: -3.5576050947083
                        - lat: 40.352755218479
                          long: -3.5573877349769
                        - lat: 40.352928989261
                          long: -3.5569609944038
                        - lat: 40.352988163079
                          long: -3.5567773061752
                        - lat: 40.353097850585
                          long: -3.5566367795331
                        - lat: 40.353401691179
                          long: -3.5561579939433
                        - lat: 40.353997384928
                          long: -3.5552190355408
                        - lat: 40.354307937619
                          long: -3.5547295759789
                        - lat: 40.355000746706
                          long: -3.5541463232016
                        - lat: 40.355439913737
                          long: -3.5537764910873
                        - lat: 40.355620193659
                          long: -3.5536246377795
                        - lat: 40.3556641558
                          long: -3.5535875484942
                        - lat: 40.355701061737
                          long: -3.5535565251708
                        - lat: 40.355727745986
                          long: -3.5535341327462
                        - lat: 40.35575524497
                          long: -3.5535109226196
                        - lat: 40.355809428185
                          long: -3.5534653199957
                        - lat: 40.355851400444
                          long: -3.553429862931
                        - lat: 40.355884054723
                          long: -3.5534024553625
                        - lat: 40.355906669194
                          long: -3.5533833269401
                        - lat: 40.356013045114
                          long: -3.5532938714073
                        - lat: 40.356116408506
                          long: -3.5532691614232
                        - lat: 40.357680871255
                          long: -3.5529072142821
                        - lat: 40.359375494425
                          long: -3.5528700635185
                        - lat: 40.360032152444
                          long: -3.5528555243613
                        - lat: 40.361289283044
                          long: -3.5528009007111
                        - lat: 40.361498979698
                          long: -3.5529028391102
                        - lat: 40.361251100624
                          long: -3.5532119712709
                        - lat: 40.360523069682
                          long: -3.5541340644765
                        - lat: 40.360450628754
                          long: -3.5542295732911
                        - lat: 40.360309401564
                          long: -3.5544099030189
                        - lat: 40.360102942385
                          long: -3.5546664844012
                        - lat: 40.359989423869
                          long: -3.5548173611183
                        - lat: 40.359445966043
                          long: -3.5555356620165
                        - lat: 40.359460609686
                          long: -3.5555442616735
                        - lat: 40.359473182433
                          long: -3.5555526087947
                        - lat: 40.359486474187
                          long: -3.555561315132
                        - lat: 40.359499857725
                          long: -3.5555696689152
                        - lat: 40.359513146084
                          long: -3.5555790818536
                        - lat: 40.359530749056
                          long: -3.555590532311
                        - lat: 40.359545130351
                          long: -3.5555974810513
                        - lat: 40.359549713533
                          long: -3.5555998740837
                        - lat: 40.359553936928
                          long: -3.5556021463924
                        - lat: 40.359558789808
                          long: -3.5556046594098
                        - lat: 40.359563013203
                          long: -3.5556069317191
                        - lat: 40.359567414512
                          long: -3.555609676571
                        - lat: 40.359572175607
                          long: -3.5556125421474
                        - lat: 40.359576848311
                          long: -3.5556150536871
                        - lat: 40.359581161794
                          long: -3.5556173267373
                        - lat: 40.359585653755
                          long: -3.5556199545643
                        - lat: 40.359590145151
                          long: -3.5556227001576
                        - lat: 40.359594277326
                          long: -3.5556252072612
                        - lat: 40.359599219163
                          long: -3.5556279565532
                        - lat: 40.359604070911
                          long: -3.5556307051059
                        - lat: 40.359608473916
                          long: -3.5556330966634
                        - lat: 40.35961323784
                          long: -3.5556353734138
                        - lat: 40.359617552454
                          long: -3.5556374109347
                        - lat: 40.359622137332
                          long: -3.5556394506746
                        - lat: 40.359627083129
                          long: -3.5556413756074
                        - lat: 40.359632030623
                          long: -3.5556429472427
                        - lat: 40.359637158293
                          long: -3.5556445203574
                        - lat: 40.359641746001
                          long: -3.5556459712688
                        - lat: 40.359646692929
                          long: -3.5556476606707
                        - lat: 40.359651639857
                          long: -3.5556493500729
                        - lat: 40.359656497263
                          long: -3.5556509209697
                        - lat: 40.359661623236
                          long: -3.5556528473836
                        - lat: 40.35966657073
                          long: -3.5556544190205
                        - lat: 40.359671428136
                          long: -3.5556559899181
                        - lat: 40.359676375064
                          long: -3.5556576793215
                        - lat: 40.359680781463
                          long: -3.5556593642874
                        - lat: 40.359685456429
                          long: -3.5556614047704
                        - lat: 40.359689771608
                          long: -3.5556633245292
                        - lat: 40.359694714575
                          long: -3.5556658382958
                        - lat: 40.35969929719
                          long: -3.5556683491042
                        - lat: 40.359711157143
                          long: -3.5556750416363
                        - lat: 40.359722843708
                          long: -3.5556803194986
                        - lat: 40.359727427454
                          long: -3.5556825947768
                        - lat: 40.35973174037
                          long: -3.5556849856025
                        - lat: 40.359736502594
                          long: -3.555687615659
                        - lat: 40.359741265385
                          long: -3.5556901279498
                        - lat: 40.359745757911
                          long: -3.555692638022
                        - lat: 40.3597507904
                          long: -3.5556952702986
                        - lat: 40.359755821757
                          long: -3.555698138108
                        - lat: 40.3597609449
                          long: -3.555700653359
                        - lat: 40.359765708255
                          long: -3.5557030478855
                        - lat: 40.359770561134
                          long: -3.5557055609182
                        - lat: 40.359774693306
                          long: -3.5557080680336
                        - lat: 40.359779635141
                          long: -3.5557108173391
                        - lat: 40.359784218886
                          long: -3.5557130926213
                        - lat: 40.359789070632
                          long: -3.5557158411878
                        - lat: 40.359793921813
                          long: -3.5557187075209
                        - lat: 40.359799045521
                          long: -3.5557211050087
                        - lat: 40.359803450221
                          long: -3.5557231432805
                        - lat: 40.359808302533
                          long: -3.5557257740823
                        - lat: 40.359812525925
                          long: -3.5557280464077
                        - lat: 40.359817378803
                          long: -3.5557305594439
                        - lat: 40.359821784069
                          long: -3.5557324799506
                        - lat: 40.359826547424
                          long: -3.5557348744815
                        - lat: 40.359831310213
                          long: -3.5557373867791
                        - lat: 40.359835984046
                          long: -3.5557396628047
                        - lat: 40.359840299224
                          long: -3.5557415825728
                        - lat: 40.359845064842
                          long: -3.5557435060399
                        - lat: 40.359850011203
                          long: -3.5557453132204
                        - lat: 40.359854868042
                          long: -3.5557470018952
                        - lat: 40.359859905622
                          long: -3.5557485742835
                        - lat: 40.359864312586
                          long: -3.5557501414936
                        - lat: 40.359869078204
                          long: -3.555752064962
                        - lat: 40.359873665344
                          long: -3.5557536336522
                        - lat: 40.35987852388
                          long: -3.5557549690291
                        - lat: 40.359883022063
                          long: -3.5557563014472
                        - lat: 40.359887700988
                          long: -3.5557575175786
                        - lat: 40.359892289826
                          long: -3.5557587329705
                        - lat: 40.359897148927
                          long: -3.5557599505818
                        - lat: 40.359913979003
                          long: -3.5557635041449
                        - lat: 40.360053455496
                          long: -3.555797978764
                        - lat: 40.360172299323
                          long: -3.5557953038252
                        - lat: 40.360243147099
                          long: -3.5557878771747
                        - lat: 40.360358611715
                          long: -3.5557759882615
                        - lat: 40.360444015745
                          long: -3.5557578460858
                        - lat: 40.360561419285
                          long: -3.5557549236972
                        - lat: 40.360661992291
                          long: -3.5557672912712
                        - lat: 40.360773256921
                          long: -3.5557857530852
                        - lat: 40.360880899909
                          long: -3.5558079539465
                        - lat: 40.360990737267
                          long: -3.555823459846
                        - lat: 40.361031509842
                          long: -3.555831567725
                        - lat: 40.361066859014
                          long: -3.5558433998088
                        - lat: 40.361138680389
                          long: -3.5558770839586
                        - lat: 40.361212796977
                          long: -3.5559018362625
                        - lat: 40.36152638064
                          long: -3.5560195949293
                        - lat: 40.36161258542
                          long: -3.5560410314104
                        - lat: 40.361669996533
                          long: -3.55605504714
                        - lat: 40.361802670358
                          long: -3.5560802809996
                        - lat: 40.361981570035
                          long: -3.5560662047582
                        - lat: 40.362159917794
                          long: -3.5560357531934
                        - lat: 40.362208558587
                          long: -3.5560375661454
                        - lat: 40.362261440315
                          long: -3.5560380006442
                        - lat: 40.362286795278
                          long: -3.5560298469339
                        - lat: 40.362333386628
                          long: -3.5560082057699
                        - lat: 40.36246161069
                          long: -3.5559470738081
                        - lat: 40.362598837304
                          long: -3.5558873110997
                        - lat: 40.362655942898
                          long: -3.5558711737922
                        - lat: 40.36272163969
                          long: -3.5558482760204
                        - lat: 40.362781007008
                          long: -3.5558114286452
                        - lat: 40.362801196271
                          long: -3.555790865875
                        - lat: 40.362945391617
                          long: -3.5556869936624
                        - lat: 40.363013186993
                          long: -3.5556585773557
                        - lat: 40.363067797244
                          long: -3.5556367659974
                        - lat: 40.363147160789
                          long: -3.555619515577
                        - lat: 40.363216942174
                          long: -3.5556090174994
                        - lat: 40.363275165687
                          long: -3.5556039600226
                        - lat: 40.363322798973
                          long: -3.5555904534232
                        - lat: 40.363370431691
                          long: -3.5555770645776
                        - lat: 40.363412683015
                          long: -3.5555774114591
                        - lat: 40.363466542127
                          long: -3.5555806802948
                        - lat: 40.363563824273
                          long: -3.5555841878664
                        - lat: 40.363632478201
                          long: -3.5555833381934
                        - lat: 40.363686975282
                          long: -3.5555850811752
                        - lat: 40.363749243267
                          long: -3.555600785733
                        - lat: 40.363823254511
                          long: -3.5556287178595
                        - lat: 40.36385206648
                          long: -3.55557607215
                        - lat: 40.363870787564
                          long: -3.555542305805
                        - lat: 40.363898232899
                          long: -3.5554928288091
                        - lat: 40.36392151904
                          long: -3.5554652243471
                        - lat: 40.364073393015
                          long: -3.5555632847591
                        - lat: 40.364334006714
                          long: -3.555248835128
                        - lat: 40.36463040505
                          long: -3.5548552933225
                        - lat: 40.364633215298
                          long: -3.5548516652082
                        - lat: 40.364748865739
                          long: -3.5546883111363
                        - lat: 40.364878238143
                          long: -3.5545190621922
                        - lat: 40.364958803912
                          long: -3.5544389254417
                        - lat: 40.365096989654
                          long: -3.5541976662823
                        - lat: 40.365238313138
                          long: -3.5539783389668
                        - lat: 40.365353540112
                          long: -3.553809089457
                        - lat: 40.365501310636
                          long: -3.5536355121908
                        - lat: 40.365652597809
                          long: -3.5534424112793
                        - lat: 40.365773662889
                          long: -3.5532578959982
                        - lat: 40.365859711532
                          long: -3.5530860498005
                        - lat: 40.365915325867
                          long: -3.5529860367595
                        - lat: 40.365975884263
                          long: -3.5528883018025
                        - lat: 40.366090038796
                          long: -3.5527734550375
                        - lat: 40.366133019789
                          long: -3.5527342314488
                        - lat: 40.366179801918
                          long: -3.5526913876178
                        - lat: 40.366372527105
                          long: -3.5525553920962
                        - lat: 40.366534953976
                          long: -3.552462845784
                        - lat: 40.366727554016
                          long: -3.5523529956957
                        - lat: 40.36689053382
                          long: -3.5522955523298
                        - lat: 40.367171161545
                          long: -3.5522782908687
                        - lat: 40.367418603449
                          long: -3.5522300167541
                        - lat: 40.36756658694
                          long: -3.5521811661859
                        - lat: 40.367943560071
                          long: -3.5519484370326
                        - lat: 40.368158538371
                          long: -3.551812146252
                        - lat: 40.368313514269
                          long: -3.5517705362035
                        - lat: 40.368389973032
                          long: -3.551757732152
                        - lat: 40.370169173782
                          long: -3.5514592769544
                        - lat: 40.370345115777
                          long: -3.5514607110746
                        - lat: 40.3705110105
                          long: -3.5511885560602
                        - lat: 40.370958165019
                          long: -3.551125529834
                        - lat: 40.370958256229
                          long: -3.5511252949965
                        - lat: 40.371066408207
                          long: -3.5511353637004
                        - lat: 40.371112593904
                          long: -3.5511608293437
                        - lat: 40.371127780053
                          long: -3.5511690806147
                        - lat: 40.371314313122
                          long: -3.5511788456796
                        - lat: 40.371316474674
                          long: -3.5511789810812
                        - lat: 40.371367490897
                          long: -3.5511738605464
                        - lat: 40.371389123257
                          long: -3.5511716809685
                        - lat: 40.371493769939
                          long: -3.5511611077954
                        - lat: 40.371571556345
                          long: -3.5511532605474
                        - lat: 40.371637174688
                          long: -3.5511466098572
                        - lat: 40.371659798015
                          long: -3.5511444383361
                        - lat: 40.371663223045
                          long: -3.5511441128647
                        - lat: 40.371670794371
                          long: -3.5511433500063
                        - lat: 40.371676923726
                          long: -3.5511426931919
                        - lat: 40.371699097174
                          long: -3.5511404002118
                        - lat: 40.371715411531
                          long: -3.5511387662473
                        - lat: 40.371776883576
                          long: -3.5511325529187
                        - lat: 40.371787789282
                          long: -3.5511315816386
                        - lat: 40.371830819934
                          long: -3.5511385285376
                        - lat: 40.371911209619
                          long: -3.5511515516125
                        - lat: 40.372012664746
                          long: -3.5511679267321
                        - lat: 40.372060029164
                          long: -3.5511729065203
                        - lat: 40.372084341147
                          long: -3.5511755782366
                        - lat: 40.372241562448
                          long: -3.5511920544257
                        - lat: 40.372293088877
                          long: -3.551193298797
                        - lat: 40.372420283644
                          long: -3.5511963376288
                        - lat: 40.372566951458
                          long: -3.5511965903121
                        - lat: 40.37259623063
                          long: -3.5511967110821
                        - lat: 40.372872088607
                          long: -3.5511971918513
                        - lat: 40.373066780887
                          long: -3.5512151515665
                        - lat: 40.373088123328
                          long: -3.551217092381
                        - lat: 40.373094246507
                          long: -3.5512177312448
                        - lat: 40.373110546264
                          long: -3.5512191597952
                        - lat: 40.373202759347
                          long: -3.5512276855997
                        - lat: 40.373229333068
                          long: -3.5512283733132
                        - lat: 40.373345176722
                          long: -3.5512313197773
                        - lat: 40.373444174474
                          long: -3.5512340111873
                        - lat: 40.373445976234
                          long: -3.5512340258692
                        - lat: 40.373453543067
                          long: -3.5512342053236
                        - lat: 40.373470298316
                          long: -3.5512345774462
                        - lat: 40.373480296963
                          long: -3.5512348945115
                        - lat: 40.373482008635
                          long: -3.5512349084594
                        - lat: 40.373493538779
                          long: -3.5512352380045
                        - lat: 40.373494800011
                          long: -3.551235248282
                        - lat: 40.373499934467
                          long: -3.5512354079159
                        - lat: 40.373506330155
                          long: -3.5512355778272
                        - lat: 40.373507591387
                          long: -3.5512355881047
                        - lat: 40.373513086195
                          long: -3.5512357506751
                        - lat: 40.373514527603
                          long: -3.5512357624207
                        - lat: 40.373515068131
                          long: -3.5512357668253
                        - lat: 40.373519217233
                          long: -3.5512347404824
                        - lat: 40.37352255442
                          long: -3.5512339431129
                        - lat: 40.373526973786
                          long: -3.5512329189721
                        - lat: 40.373542937893
                          long: -3.5512291618305
                        - lat: 40.373556105903
                          long: -3.5512260886718
                        - lat: 40.37357838347
                          long: -3.5512208516394
                        - lat: 40.373684902057
                          long: -3.5511955691118
                        - lat: 40.373704662772
                          long: -3.5511891336015
                        - lat: 40.373763312052
                          long: -3.5511702930727
                        - lat: 40.373822322804
                          long: -3.5511512198664
                        - lat: 40.37389414626
                          long: -3.5511280103818
                        - lat: 40.373986542334
                          long: -3.5510981363094
                        - lat: 40.374034193563
                          long: -3.5510807373731
                        - lat: 40.374162616686
                          long: -3.5510339584616
                        - lat: 40.374179402802
                          long: -3.5510278520173
                        - lat: 40.374330749785
                          long: -3.5509725427111
                        - lat: 40.374413777784
                          long: -3.5509423563478
                        - lat: 40.374462422201
                          long: -3.5509244940986
                        - lat: 40.374554665535
                          long: -3.5508888462307
                        - lat: 40.37467542997
                          long: -3.550842239833
                        - lat: 40.374738339694
                          long: -3.550817896982
                        - lat: 40.374930317609
                          long: -3.5507437166399
                        - lat: 40.374934289335
                          long: -3.5507420998161
                        - lat: 40.374989977972
                          long: -3.5507206429239
                        - lat: 40.37509388466
                          long: -3.5506762546476
                        - lat: 40.375200408929
                          long: -3.5506308273654
                        - lat: 40.375219547406
                          long: -3.5506226195201
                        - lat: 40.375348060977
                          long: -3.5505757218823
                        - lat: 40.375412859124
                          long: -3.5505521007067
                        - lat: 40.375438160589
                          long: -3.5505361683005
                        - lat: 40.375553009528
                          long: -3.5504641859062
                        - lat: 40.375557617472
                          long: -3.5504613962459
                        - lat: 40.375571172163
                          long: -3.5504527894759
                        - lat: 40.375578762543
                          long: -3.5504480215125
                        - lat: 40.375590702937
                          long: -3.550437870222
                        - lat: 40.375611779782
                          long: -3.5504199007821
                        - lat: 40.375632857185
                          long: -3.5504018135372
                        - lat: 40.375653843375
                          long: -3.5503839611358
                        - lat: 40.375662437053
                          long: -3.5503766097557
                        - lat: 40.375674920212
                          long: -3.5503659916625
                        - lat: 40.375677453327
                          long: -3.5503637741014
                        - lat: 40.375698348863
                          long: -3.5503460387375
                        - lat: 40.375703776566
                          long: -3.5503413709561
                        - lat: 40.375743216373
                          long: -3.550307765839
                        - lat: 40.375812891847
                          long: -3.5502436611817
                        - lat: 40.375896321746
                          long: -3.5501668281891
                        - lat: 40.375913604766
                          long: -3.5501509481086
                        - lat: 40.375979089162
                          long: -3.5500777385201
                        - lat: 40.376056438345
                          long: -3.5499913139594
                        - lat: 40.37606442155
                          long: -3.5499797167516
                        - lat: 40.376149331506
                          long: -3.5498568356425
                        - lat: 40.376197321285
                          long: -3.5497871351014
                        - lat: 40.376234278912
                          long: -3.5497070962474
                        - lat: 40.376314839275
                          long: -3.5495325829118
                        - lat: 40.376344605337
                          long: -3.5494681527187
                        - lat: 40.376357987072
                          long: -3.549439047098
                        - lat: 40.376376830042
                          long: -3.5493982058516
                        - lat: 40.376391849572
                          long: -3.5493656973123
                        - lat: 40.376403296347
                          long: -3.5493456465194
                        - lat: 40.376409053026
                          long: -3.5493286123033
                        - lat: 40.37647250007
                          long: -3.5491910660959
                        - lat: 40.376502630211
                          long: -3.5491258139585
                        - lat: 40.37651325217
                          long: -3.5491087013957
                        - lat: 40.376555376832
                          long: -3.5490408371431
                        - lat: 40.376621536439
                          long: -3.5489580894569
                        - lat: 40.376628424505
                          long: -3.5489494281473
                        - lat: 40.376650809879
                          long: -3.5489214555721
                        - lat: 40.3766985714
                          long: -3.5488617650258
                        - lat: 40.376807100192
                          long: -3.5487734707221
                        - lat: 40.376830343363
                          long: -3.5487545756151
                        - lat: 40.376840006256
                          long: -3.5487497063873
                        - lat: 40.376960025535
                          long: -3.5486890703045
                        - lat: 40.37697382409
                          long: -3.5486860016183
                        - lat: 40.377070411736
                          long: -3.5486649919668
                        - lat: 40.377098258429
                          long: -3.5486632152353
                        - lat: 40.377179275487
                          long: -3.5486579823679
                        - lat: 40.377223614432
                          long: -3.5486550435973
                        - lat: 40.37737412577
                          long: -3.5486616833634
                        - lat: 40.377462348959
                          long: -3.5486946766581
                        - lat: 40.377541399929
                          long: -3.5487240615748
                        - lat: 40.37756530744
                          long: -3.5487360357112
                        - lat: 40.377669655884
                          long: -3.5487882439526
                        - lat: 40.377812203363
                          long: -3.5488593750779
                        - lat: 40.378005286238
                          long: -3.5489317412663
                        - lat: 40.378115452777
                          long: -3.5489729239209
                        - lat: 40.378244388357
                          long: -3.5490077799001
                        - lat: 40.378349660426
                          long: -3.5490362003536
                        - lat: 40.37844377556
                          long: -3.5490615852416
                        - lat: 40.378518005294
                          long: -3.549081743215
                        - lat: 40.378667366187
                          long: -3.5491219488123
                        - lat: 40.378695451259
                          long: -3.5491268889849
                        - lat: 40.378777007192
                          long: -3.5491409807885
                        - lat: 40.378828857026
                          long: -3.5491500014645
                        - lat: 40.378984046731
                          long: -3.549176942852
                        - lat: 40.379012682956
                          long: -3.5491796492653
                        - lat: 40.379037536605
                          long: -3.5491820893579
                        - lat: 40.379089946541
                          long: -3.5491869914942
                        - lat: 40.379112639198
                          long: -3.5491891784362
                        - lat: 40.37956127279
                          long: -3.5492316971614
                        - lat: 40.379715781474
                          long: -3.5492502693224
                        - lat: 40.380127262946
                          long: -3.5493000267324
                        - lat: 40.380282767608
                          long: -3.5492985801978
                        - lat: 40.380308197028
                          long: -3.5492936032469
                        - lat: 40.380447968188
                          long: -3.5492663470229
                        - lat: 40.380501351725
                          long: -3.5492559423469
                        - lat: 40.380509652684
                          long: -3.5492533002035
                        - lat: 40.380523367312
                          long: -3.5492489349215
                        - lat: 40.380592482658
                          long: -3.5492267594677
                        - lat: 40.380620724382
                          long: -3.5492176820577
                        - lat: 40.380688125253
                          long: -3.5491960816547
                        - lat: 40.380727735957
                          long: -3.5491833267074
                        - lat: 40.380796670553
                          long: -3.5491612674616
                        - lat: 40.380863015529
                          long: -3.5491343570347
                        - lat: 40.380964473508
                          long: -3.549093241302
                        - lat: 40.381189938709
                          long: -3.5489674857148
                        - lat: 40.381396980878
                          long: -3.5487941029653
                        - lat: 40.381439402625
                          long: -3.5487585156044
                        - lat: 40.381561442599
                          long: -3.5486327436521
                        - lat: 40.381628980718
                          long: -3.5485631952728
                        - lat: 40.381642940318
                          long: -3.5485451659346
                        - lat: 40.381780451845
                          long: -3.5483674470436
                        - lat: 40.381972452911
                          long: -3.5481359767674
                        - lat: 40.382067536024
                          long: -3.5480331927654
                        - lat: 40.382087821236
                          long: -3.5480110911227
                        - lat: 40.38211779442
                          long: -3.5479788185229
                        - lat: 40.382151892661
                          long: -3.5479505848515
                        - lat: 40.382214933457
                          long: -3.5478984346198
                        - lat: 40.382254006049
                          long: -3.5478661178182
                        - lat: 40.382256536325
                          long: -3.5478644889773
                        - lat: 40.38228653984
                          long: -3.5478448221521
                        - lat: 40.382377543563
                          long: -3.5477853583769
                        - lat: 40.382492767264
                          long: -3.5477099505867
                        - lat: 40.382522137904
                          long: -3.5476907497416
                        - lat: 40.382640253282
                          long: -3.5476134800773
                        - lat: 40.38274671045
                          long: -3.5475438912677
                        - lat: 40.382757916495
                          long: -3.5475365599169
                        - lat: 40.382793167364
                          long: -3.5475122228507
                        - lat: 40.382835196574
                          long: -3.5474833460082
                        - lat: 40.38313771904
                          long: -3.5472749126085
                        - lat: 40.383318400742
                          long: -3.5471504340094
                        - lat: 40.383412283574
                          long: -3.5470916985717
                        - lat: 40.383539689306
                          long: -3.5470120279551
                        - lat: 40.38369492564
                          long: -3.5469149102617
                        - lat: 40.383772595471
                          long: -3.5468363683536
                        - lat: 40.383804006949
                          long: -3.5468046951301
                        - lat: 40.383858864264
                          long: -3.54674929546
                        - lat: 40.383877421965
                          long: -3.5467304776436
                        - lat: 40.383948120929
                          long: -3.5466590655504
                        - lat: 40.383958077938
                          long: -3.5466491319426
                        - lat: 40.383965229969
                          long: -3.5466417675424
                        - lat: 40.383977450312
                          long: -3.546629495966
                        - lat: 40.384002525508
                          long: -3.5466041332377
                        - lat: 40.384032670123
                          long: -3.5465736276906
                        - lat: 40.384079379883
                          long: -3.5465265265333
                        - lat: 40.384080737884
                          long: -3.5465251237509
                        - lat: 40.38408906606
                          long: -3.5465167085113
                        - lat: 40.384097122859
                          long: -3.5465085267028
                        - lat: 40.384100652991
                          long: -3.5465050208369
                        - lat: 40.384115770609
                          long: -3.5464897094823
                        - lat: 40.384153156743
                          long: -3.5464519579295
                        - lat: 40.384266311049
                          long: -3.5463376507467
                        - lat: 40.384273009837
                          long: -3.5463308716858
                        - lat: 40.38428295346
                          long: -3.5463237653988
                        - lat: 40.384383565818
                          long: -3.5462516515918
                        - lat: 40.38442521377
                          long: -3.5462271293263
                        - lat: 40.384615747261
                          long: -3.5461147421937
                        - lat: 40.384645290022
                          long: -3.5460971908505
                        - lat: 40.384666430124
                          long: -3.546084755459
                        - lat: 40.384727875721
                          long: -3.5460459017062
                        - lat: 40.38487498497
                          long: -3.5459526023799
                        - lat: 40.384941581662
                          long: -3.5459103733503
                        - lat: 40.385042334452
                          long: -3.5458466242234
                        - lat: 40.385081732343
                          long: -3.5458216120517
                        - lat: 40.385211412758
                          long: -3.5457560932826
                        - lat: 40.385219536239
                          long: -3.5457528600235
                        - lat: 40.38527941687
                          long: -3.545721061942
                        - lat: 40.385607562541
                          long: -3.5456377047309
                        - lat: 40.385853880477
                          long: -3.5455404910994
                        - lat: 40.386214767637
                          long: -3.5453725682999
                        - lat: 40.386438957598
                          long: -3.5452679875529
                        - lat: 40.386561932852
                          long: -3.5452105417767
                        - lat: 40.386825318856
                          long: -3.5450472491693
                        - lat: 40.386831107804
                          long: -3.5450423474798
                        - lat: 40.386849343744
                          long: -3.5450152785228
                        - lat: 40.38684667942
                          long: -3.5450071276056
                        - lat: 40.386871524384
                          long: -3.5449540741169
                        - lat: 40.38688886331
                          long: -3.5449261731643
                        - lat: 40.386957903556
                          long: -3.5448050233961
                        - lat: 40.387436790015
                          long: -3.5445072653823
                        - lat: 40.387860553171
                          long: -3.5443023727496
                        - lat: 40.387984657785
                          long: -3.5442345649697
                        - lat: 40.388013289949
                          long: -3.544219007557
                        - lat: 40.388022593399
                          long: -3.54421389836
                        - lat: 40.388095213136
                          long: -3.5441743062045
                        - lat: 40.388185807473
                          long: -3.5441248438956
                        - lat: 40.388204775825
                          long: -3.5441143927167
                        - lat: 40.388292118102
                          long: -3.544066789208
                        - lat: 40.388363609878
                          long: -3.5440179976542
                        - lat: 40.388504750354
                          long: -3.5439483229611
                        - lat: 40.388682544369
                          long: -3.543881534898
                        - lat: 40.388751857103
                          long: -3.5438554648569
                        - lat: 40.38897014817
                          long: -3.5437788693663
                        - lat: 40.389354946773
                          long: -3.543621608053
                        - lat: 40.390091807628
                          long: -3.5433140042931
                        - lat: 40.390193399361
                          long: -3.5432823013445
                        - lat: 40.390644155841
                          long: -3.5431417062927
                        - lat: 40.39095404549
                          long: -3.5430317907528
                        - lat: 40.391206616928
                          long: -3.5429453325019
                        - lat: 40.391229995602
                          long: -3.5429357407332
                        - lat: 40.391236223835
                          long: -3.5429331985884
                        - lat: 40.391258683374
                          long: -3.5429274876775
                        - lat: 40.391269867546
                          long: -3.5429247496802
                        - lat: 40.391381621388
                          long: -3.542896897649
                        - lat: 40.391726243767
                          long: -3.5427959778553
                        - lat: 40.39179172277
                          long: -3.5427804791767
                        - lat: 40.392092960195
                          long: -3.5427096093285
                        - lat: 40.392202461179
                          long: -3.5427010622148
                        - lat: 40.392338244634
                          long: -3.5426784689298
                        - lat: 40.392372776483
                          long: -3.542672736928
                        - lat: 40.392389095655
                          long: -3.5426700400665
                        - lat: 40.392399280006
                          long: -3.5426691791997
                        - lat: 40.39248426658
                          long: -3.5426626739301
                        - lat: 40.392558298928
                          long: -3.5426483040675
                        - lat: 40.392871799666
                          long: -3.5426518810747
                        - lat: 40.39311557733
                          long: -3.542673044086
                        - lat: 40.393152769785
                          long: -3.5426762883815
                        - lat: 40.39312245579
                          long: -3.542474321892
                        - lat: 40.393120709308
                          long: -3.5424625249837
                        - lat: 40.393054600226
                          long: -3.542266634307
                        - lat: 40.393024388042
                          long: -3.5421773134085
                        - lat: 40.393023679493
                          long: -3.5421747154928
                        - lat: 40.393015860039
                          long: -3.5421515583433
                        - lat: 40.392985559887
                          long: -3.5420617655272
                        - lat: 40.392857605728
                          long: -3.5416825101077
                        - lat: 40.392252650901
                          long: -3.5398892780441
                        - lat: 40.391313876457
                          long: -3.5373412211162
                        - lat: 40.391471890885
                          long: -3.5354585559309
                        - lat: 40.391689929642
                          long: -3.5328607954777
                        - lat: 40.391429193891
                          long: -3.5321002942749
                        - lat: 40.391423770628
                          long: -3.5320845807304
                        - lat: 40.391125017472
                          long: -3.5316559367716
                        - lat: 40.391125291528
                          long: -3.5316551141485
                        - lat: 40.390773378943
                          long: -3.531148880984
                        - lat: 40.39077283625
                          long: -3.5311493480198
                        - lat: 40.389853313247
                          long: -3.529825095318
                        - lat: 40.389853044063
                          long: -3.5298248575619
                        - lat: 40.389384771198
                          long: -3.5291511315405
                        - lat: 40.389794558216
                          long: -3.5268906020863
                        - lat: 40.389922007803
                          long: -3.5265806593778
                        - lat: 40.389921827627
                          long: -3.5265806579745
                        - lat: 40.390221362623
                          long: -3.5258522469949
                        - lat: 40.390326216972
                          long: -3.5255972664129
                        - lat: 40.390340246378
                          long: -3.5255630886581
                        - lat: 40.39035136029
                          long: -3.5255360754996
                        - lat: 40.390416313222
                          long: -3.5253781067636
                        - lat: 40.390844640428
                          long: -3.5243386839602
                        - lat: 40.391865005106
                          long: -3.5225894468702
                        - lat: 40.392102058999
                          long: -3.5204067626905
                        - lat: 40.39208239973
                          long: -3.5203710275413
                        - lat: 40.392180098357
                          long: -3.52032217426
                        - lat: 40.392319655629
                          long: -3.520280830472
                        - lat: 40.392482303495
                          long: -3.5202734808175
                        - lat: 40.39260557328
                          long: -3.5202679489802
                        - lat: 40.392732057668
                          long: -3.5202287429645
                        - lat: 40.392842216423
                          long: -3.5202338325286
                        - lat: 40.392955408424
                          long: -3.5202856056246
                        - lat: 40.393062228569
                          long: -3.5203118788079
                        - lat: 40.393120605703
                          long: -3.5203123281314
                        - lat: 40.393188717699
                          long: -3.5202916431435
                        - lat: 40.393318933271
                          long: -3.5202841616553
                        - lat: 40.393493789059
                          long: -3.5203067167859
                        - lat: 40.393636417705
                          long: -3.5203035727175
                        - lat: 40.393727058588
                          long: -3.5203015602844
                        - lat: 40.393817969734
                          long: -3.5202995499274
                        - lat: 40.393833158052
                          long: -3.5203077971175
                        - lat: 40.393876117865
                          long: -3.5203308690328
                        - lat: 40.394005735634
                          long: -3.5203361086555
                        - lat: 40.394103376877
                          long: -3.5203400416814
                        - lat: 40.39418741953
                          long: -3.520362840811
                        - lat: 40.394278304739
                          long: -3.5203465727765
                        - lat: 40.394372255062
                          long: -3.5203298569687
                        - lat: 40.394485763477
                          long: -3.5203313198616
                        - lat: 40.394546597848
                          long: -3.5203462814121
                        - lat: 40.394556947381
                          long: -3.5203487177109
                        - lat: 40.394595750929
                          long: -3.5203744680346
                        - lat: 40.394663767478
                          long: -3.5203749916434
                        - lat: 40.394745310978
                          long: -3.5203925871722
                        - lat: 40.394924876015
                          long: -3.5202695388236
                        - lat: 40.395142035249
                          long: -3.5201206202934
                        - lat: 40.395173574587
                          long: -3.5200989461175
                        - lat: 40.395179629571
                          long: -3.5200947507333
                        - lat: 40.395207372484
                          long: -3.5200758753073
                        - lat: 40.395228157939
                          long: -3.5200615418115
                        - lat: 40.395239453932
                          long: -3.5200538517626
                        - lat: 40.395258973911
                          long: -3.5200404511792
                        - lat: 40.395223434024
                          long: -3.5198899411036
                        - lat: 40.395211941347
                          long: -3.5198411878274
                        - lat: 40.395200850315
                          long: -3.5197832467112
                        - lat: 40.395178669224
                          long: -3.5196671288781
                        - lat: 40.39517751464
                          long: -3.5195631916591
                        - lat: 40.395197392951
                          long: -3.5194700210145
                        - lat: 40.395234994321
                          long: -3.5194024383535
                        - lat: 40.395290323966
                          long: -3.519339233805
                        - lat: 40.395365064994
                          long: -3.5192867832379
                        - lat: 40.395407846148
                          long: -3.5192694369499
                        - lat: 40.395410915494
                          long: -3.5192680465331
                        - lat: 40.395561661537
                          long: -3.519262841587
                        - lat: 40.395754447654
                          long: -3.5192849434677
                        - lat: 40.395853046545
                          long: -3.5192963059885
                        - lat: 40.395930394686
                          long: -3.5193052664341
                        - lat: 40.396007383002
                          long: -3.5193141063027
                        - lat: 40.3961027403
                          long: -3.5193250905043
                        - lat: 40.396175226322
                          long: -3.5193334244904
                        - lat: 40.396867219638
                          long: -3.5194130955774
                        - lat: 40.397087919233
                          long: -3.5194384766031
                        - lat: 40.397279174291
                          long: -3.5194604499274
                        - lat: 40.397661325516
                          long: -3.5194840084211
                        - lat: 40.397859035997
                          long: -3.519472801588
                        - lat: 40.398106239466
                          long: -3.5193941005712
                        - lat: 40.398219271115
                          long: -3.5193412351088
                        - lat: 40.398356316975
                          long: -3.5192772415167
                        - lat: 40.398541354603
                          long: -3.5191790896803
                        - lat: 40.398805812679
                          long: -3.5190095477026
                        - lat: 40.398987058442
                          long: -3.5189131329682
                        - lat: 40.399304388005
                          long: -3.5187662663782
                        - lat: 40.399347541042
                          long: -3.5187463291536
                        - lat: 40.399387636367
                          long: -3.5187251900361
                        - lat: 40.399483901799
                          long: -3.5186743149258
                        - lat: 40.399585404473
                          long: -3.5186207695347
                        - lat: 40.400000792018
                          long: -3.5184450744696
                        - lat: 40.40018278128
                          long: -3.5183836611236
                        - lat: 40.400445621245
                          long: -3.5183135580332
                        - lat: 40.400713650882
                          long: -3.5182513896352
                        - lat: 40.401701807793
                          long: -3.5180219832812
                        - lat: 40.401903100271
                          long: -3.5179753279436
                        - lat: 40.402153619165
                          long: -3.5179405983973
                        - lat: 40.402289058998
                          long: -3.5179332694564
                        - lat: 40.402429184461
                          long: -3.5179257407099
                        - lat: 40.402685086622
                          long: -3.5179361868828
                        - lat: 40.40298627419
                          long: -3.5179936473385
                        - lat: 40.403184364031
                          long: -3.5180585672104
                        - lat: 40.40336223503
                          long: -3.5181320531125
                        - lat: 40.403410869685
                          long: -3.5181554061718
                        - lat: 40.40360477975
                          long: -3.5182483425392
                        - lat: 40.403801363066
                          long: -3.5183679335155
                        - lat: 40.404106390781
                          long: -3.5185534094618
                        - lat: 40.404344482876
                          long: -3.5186981868875
                        - lat: 40.404581525778
                          long: -3.5188157341695
                        - lat: 40.404782150948
                          long: -3.5188977656556
                        - lat: 40.405057926369
                          long: -3.5189766036288
                        - lat: 40.405306471025
                          long: -3.5190204672559
                        - lat: 40.4053591323
                          long: -3.5190298283806
                        - lat: 40.405773688453
                          long: -3.5190795639078
                        - lat: 40.406104504526
                          long: -3.5191193464208
                        - lat: 40.406571183815
                          long: -3.5191578161985
                        - lat: 40.406927255005
                          long: -3.5191709231691
                        - lat: 40.407008683946
                          long: -3.5191739059183
                        - lat: 40.407388732132
                          long: -3.5191640979651
                        - lat: 40.407722697983
                          long: -3.5191243543673
                        - lat: 40.408059983686
                          long: -3.519067546917
                        - lat: 40.408383790744
                          long: -3.5189627859951
                        - lat: 40.408715628214
                          long: -3.5188552572073
                        - lat: 40.408747386239
                          long: -3.5188450118901
                        - lat: 40.408747476327
                          long: -3.5188450125819
                        - lat: 40.408772626912
                          long: -3.5189219301758
                        - lat: 40.408804299589
                          long: -3.5189708481159
                        - lat: 40.408850974984
                          long: -3.5190091564184
                        - lat: 40.408864349418
                          long: -3.5190201019541
                        - lat: 40.408943889963
                          long: -3.5190624342286
                        - lat: 40.409018461614
                          long: -3.5190677214135
                        - lat: 40.409055567792
                          long: -3.5190702457736
                        - lat: 40.409149431768
                          long: -3.5191128061409
                        - lat: 40.409210703602
                          long: -3.5191707911729
                        - lat: 40.40934230795
                          long: -3.5192953169208
                        - lat: 40.409413057013
                          long: -3.519369403747
                        - lat: 40.409451704382
                          long: -3.519409890247
                        - lat: 40.409608693835
                          long: -3.5195990803106
                        - lat: 40.409704989563
                          long: -3.5197018858715
                        - lat: 40.409718349095
                          long: -3.5197161315922
                        - lat: 40.409722568394
                          long: -3.5197194640724
                        - lat: 40.409780912741
                          long: -3.519426446338
                        - lat: 40.409826189095
                          long: -3.5191744601705
                        - lat: 40.409781812428
                          long: -3.5188448237346
                        - lat: 40.409780414916
                          long: -3.5188350307833
                        - lat: 40.409706651479
                          long: -3.5182879570915
                        - lat: 40.409706127857
                          long: -3.5182841816208
                        - lat: 40.409685464736
                          long: -3.5181305721278
                        - lat: 40.40971598386
                          long: -3.5180952130837
                        - lat: 40.40972765567
                          long: -3.5180036090917
                        - lat: 40.409725463372
                          long: -3.5178494340656
                        - lat: 40.409698612251
                          long: -3.5175887622532
                        - lat: 40.409644908768
                          long: -3.5170673013779
                        - lat: 40.409628341108
                          long: -3.5170048278041
                        - lat: 40.409587932763
                          long: -3.5167736352929
                        - lat: 40.409580728848
                          long: -3.516732565705
                        - lat: 40.409529379887
                          long: -3.5165302828534
                        - lat: 40.409482706629
                          long: -3.5163097681227
                        - lat: 40.409479767731
                          long: -3.5162617776442
                        - lat: 40.409474902008
                          long: -3.5161812437687
                        - lat: 40.409497906804
                          long: -3.5160530726343
                        - lat: 40.409557160276
                          long: -3.5159580605157
                        - lat: 40.409624980442
                          long: -3.5158612279176
                        - lat: 40.410417920119
                          long: -3.5150824582847
                        - lat: 40.410435288412
                          long: -3.5150665618519
                        - lat: 40.410476084658
                          long: -3.5148474188984
                        - lat: 40.410463430008
                          long: -3.5148365972675
                        - lat: 40.41042878619
                          long: -3.5148071041793
                        - lat: 40.410383115529
                          long: -3.5147046901634
                        - lat: 40.410257176476
                          long: -3.5145004240781
                        - lat: 40.410210574674
                          long: -3.5144249931104
                        - lat: 40.410049922412
                          long: -3.5142269460748
                        - lat: 40.409954588161
                          long: -3.5141094227934
                        - lat: 40.409785405279
                          long: -3.5138644048573
                        - lat: 40.409663286657
                          long: -3.513671839129
                        - lat: 40.409601913486
                          long: -3.5135752005673
                        - lat: 40.409642942622
                          long: -3.5135058584791
                        - lat: 40.409739656772
                          long: -3.5133533781712
                        - lat: 40.41013921254
                          long: -3.5127235129837
                        - lat: 40.41092153211
                          long: -3.5122426882294
                        - lat: 40.410975634124
                          long: -3.5120285929531
                        - lat: 40.411033922072
                          long: -3.5116624893034
                        - lat: 40.411038646944
                          long: -3.51163306002
                        - lat: 40.410908246936
                          long: -3.5115399059038
                        - lat: 40.410762220853
                          long: -3.5114762166604
                        - lat: 40.410645626102
                          long: -3.5114800483149
                        - lat: 40.410306474306
                          long: -3.5114911522745
                        - lat: 40.410024335066
                          long: -3.5115260237735
                        - lat: 40.409835496514
                          long: -3.5116092161632
                        - lat: 40.409382396069
                          long: -3.5116572887046
                        - lat: 40.409208150156
                          long: -3.5116595048152
                        - lat: 40.409023273327
                          long: -3.5116617582658
                        - lat: 40.409013182423
                          long: -3.5116619175586
                        - lat: 40.408843518086
                          long: -3.5116467255988
                        - lat: 40.408793087032
                          long: -3.5116422187151
                        - lat: 40.408788223842
                          long: -3.5116418283178
                        - lat: 40.408735662486
                          long: -3.5116301160779
                        - lat: 40.408698131231
                          long: -3.5116218176453
                        - lat: 40.4086085781
                          long: -3.5116020468247
                        - lat: 40.408529645446
                          long: -3.511584595737
                        - lat: 40.408502464405
                          long: -3.5115786149872
                        - lat: 40.408500124201
                          long: -3.5115781258442
                        - lat: 40.408461243184
                          long: -3.5115694636834
                        - lat: 40.408394101108
                          long: -3.511554576914
                        - lat: 40.408323538291
                          long: -3.511539074998
                        - lat: 40.408286666318
                          long: -3.5115242996094
                        - lat: 40.408180006441
                          long: -3.5114817713195
                        - lat: 40.408054460373
                          long: -3.5114317931893
                        - lat: 40.407984133484
                          long: -3.5114036827897
                        - lat: 40.407912752113
                          long: -3.5113695538725
                        - lat: 40.407793994904
                          long: -3.5113123205444
                        - lat: 40.407711916472
                          long: -3.5112728074239
                        - lat: 40.407678596977
                          long: -3.511249220118
                        - lat: 40.407564808661
                          long: -3.511168453955
                        - lat: 40.407512809172
                          long: -3.5111315257735
                        - lat: 40.407469432633
                          long: -3.5110800489747
                        - lat: 40.407389668854
                          long: -3.5109856339151
                        - lat: 40.40729054803
                          long: -3.5108679733813
                        - lat: 40.407243585548
                          long: -3.5108124627874
                        - lat: 40.407202538657
                          long: -3.5107638324967
                        - lat: 40.407110765788
                          long: -3.5106550671567
                        - lat: 40.407104165889
                          long: -3.5106399320391
                        - lat: 40.407029784365
                          long: -3.5104690719011
                        - lat: 40.406970028796
                          long: -3.5103319107581
                        - lat: 40.406960575683
                          long: -3.5103100365236
                        - lat: 40.406876204146
                          long: -3.5101163560542
                        - lat: 40.406832679929
                          long: -3.5100165595744
                        - lat: 40.406800606343
                          long: -3.5099351168361
                        - lat: 40.406724785266
                          long: -3.5097431517385
                        - lat: 40.406649499203
                          long: -3.5095523696327
                        - lat: 40.406586212434
                          long: -3.5093371650861
                        - lat: 40.406569169875
                          long: -3.5092792888996
                        - lat: 40.406562206382
                          long: -3.5091625624664
                        - lat: 40.406557509118
                          long: -3.509083565919
                        - lat: 40.406550802204
                          long: -3.508969905622
                        - lat: 40.406551848332
                          long: -3.5089369148149
                        - lat: 40.406557329528
                          long: -3.5087559347149
                        - lat: 40.406565899183
                          long: -3.508692005344
                        - lat: 40.406602879138
                          long: -3.5084160373864
                        - lat: 40.406621324342
                          long: -3.5082779351042
                        - lat: 40.406638929068
                          long: -3.5081465440243
                        - lat: 40.406658583931
                          long: -3.5079996117406
                        - lat: 40.406665476187
                          long: -3.5079482798013
                        - lat: 40.406673879731
                          long: -3.5079015554657
                        - lat: 40.406696599387
                          long: -3.507774681026
                        - lat: 40.406742681316
                          long: -3.5075181082496
                        - lat: 40.406742959857
                          long: -3.5075162246971
                        - lat: 40.406762894326
                          long: -3.5072437808399
                        - lat: 40.406781877151
                          long: -3.5069827614074
                        - lat: 40.406783312182
                          long: -3.506963680011
                        - lat: 40.406802865891
                          long: -3.5066955935263
                        - lat: 40.406822811334
                          long: -3.5064202029389
                        - lat: 40.406823385413
                          long: -3.5064125468009
                        - lat: 40.406842363784
                          long: -3.5061521161273
                        - lat: 40.406884624732
                          long: -3.5055736564074
                        - lat: 40.40694843233
                          long: -3.5049292413735
                        - lat: 40.406960034055
                          long: -3.5048719335753
                        - lat: 40.407054781361
                          long: -3.5044037030862
                        - lat: 40.407135618081
                          long: -3.5037780331231
                        - lat: 40.407183258689
                          long: -3.5034097423602
                        - lat: 40.407213768736
                          long: -3.5028578254382
                        - lat: 40.407205876036
                          long: -3.5027046748532
                        - lat: 40.407193081251
                          long: -3.5024563799933
                        - lat: 40.407094411294
                          long: -3.5016933703091
                        - lat: 40.40708918292
                          long: -3.5016525542066
                        - lat: 40.407075283348
                          long: -3.5015753748919
                        - lat: 40.407044231021
                          long: -3.5014024892415
                        - lat: 40.407034202677
                          long: -3.5013466702032
                        - lat: 40.406933837054
                          long: -3.5011398003429
                        - lat: 40.406820244074
                          long: -3.5009915237995
                        - lat: 40.406735228239
                          long: -3.5008805832151
                        - lat: 40.406496867039
                          long: -3.5007095802246
                        - lat: 40.406360698724
                          long: -3.5006357385351
                        - lat: 40.406145255675
                          long: -3.5005190010798
                        - lat: 40.406049645726
                          long: -3.5005035613979
                        - lat: 40.405915931398
                          long: -3.5005495936394
                        - lat: 40.405903209569
                          long: -3.5005539777484
                        - lat: 40.405784264732
                          long: -3.5007261020838
                        - lat: 40.40577110701
                          long: -3.5007479248864
                        - lat: 40.405702144831
                          long: -3.5008617292878
                        - lat: 40.405691560605
                          long: -3.5008717860166
                        - lat: 40.405532070267
                          long: -3.5010240453893
                        - lat: 40.405518500347
                          long: -3.5010370261956
                        - lat: 40.405426928718
                          long: -3.5010876121652
                        - lat: 40.405360552977
                          long: -3.5011242428159
                        - lat: 40.405227891548
                          long: -3.5011975045712
                        - lat: 40.40511299277
                          long: -3.5013297049452
                        - lat: 40.405094702971
                          long: -3.5013507822369
                        - lat: 40.405062533232
                          long: -3.501414771736
                        - lat: 40.404984560796
                          long: -3.5015702262023
                        - lat: 40.404958479508
                          long: -3.5016221221729
                        - lat: 40.404889189172
                          long: -3.5016867786097
                        - lat: 40.404644955664
                          long: -3.5019142997595
                        - lat: 40.404598187738
                          long: -3.5019790050633
                        - lat: 40.40441066472
                          long: -3.5022379398794
                        - lat: 40.404355649437
                          long: -3.5023138968994
                        - lat: 40.40434332269
                          long: -3.5023310111659
                        - lat: 40.40426492325
                          long: -3.5024393203561
                        - lat: 40.404113380948
                          long: -3.5026486704964
                        - lat: 40.40401513229
                          long: -3.5028257723796
                        - lat: 40.403882648889
                          long: -3.5030649604105
                        - lat: 40.403657714374
                          long: -3.5033701605614
                        - lat: 40.403650555335
                          long: -3.503379770721
                        - lat: 40.403321916817
                          long: -3.5037902579612
                        - lat: 40.403304640647
                          long: -3.5038060384829
                        - lat: 40.40327578594
                          long: -3.5038325745725
                        - lat: 40.403234720016
                          long: -3.503870332872
                        - lat: 40.403106004701
                          long: -3.5039886337446
                        - lat: 40.403021793004
                          long: -3.5040659021012
                        - lat: 40.402980093817
                          long: -3.5041042446256
                        - lat: 40.402623298708
                          long: -3.5044838742263
                        - lat: 40.402516042795
                          long: -3.5045979728265
                        - lat: 40.402325602537
                          long: -3.5047602376667
                        - lat: 40.402134890757
                          long: -3.5049227352581
                        - lat: 40.402020012425
                          long: -3.5050286441045
                        - lat: 40.401652037767
                          long: -3.5053682307776
                        - lat: 40.401579129962
                          long: -3.5054355635907
                        - lat: 40.401371895442
                          long: -3.5056266876836
                        - lat: 40.401196138637
                          long: -3.5057889389578
                        - lat: 40.401137161399
                          long: -3.5058432945649
                        - lat: 40.400726360698
                          long: -3.5062721117954
                        - lat: 40.400562818345
                          long: -3.5064428181693
                        - lat: 40.400325345532
                          long: -3.5066672945025
                        - lat: 40.400226647689
                          long: -3.5067604741886
                        - lat: 40.399917922415
                          long: -3.5070647812814
                        - lat: 40.399536720228
                          long: -3.5074404240479
                        - lat: 40.39951402275
                          long: -3.5074596972612
                        - lat: 40.39914868865
                          long: -3.5077707608959
                        - lat: 40.398717882825
                          long: -3.5081375381084
                        - lat: 40.398666428417
                          long: -3.5081813407734
                        - lat: 40.398320665045
                          long: -3.5084257296842
                        - lat: 40.398016833244
                          long: -3.5086406187827
                        - lat: 40.397931185948
                          long: -3.5086953578284
                        - lat: 40.397872371047
                          long: -3.5087329766217
                        - lat: 40.397825842874
                          long: -3.5087627927427
                        - lat: 40.397819338374
                          long: -3.5087668680842
                        - lat: 40.397803527822
                          long: -3.5087770009086
                        - lat: 40.397669816094
                          long: -3.5088626045638
                        - lat: 40.397647319816
                          long: -3.5088770469738
                        - lat: 40.39752101117
                          long: -3.5089795566318
                        - lat: 40.397418119332
                          long: -3.5090631527653
                        - lat: 40.397351660815
                          long: -3.5090975318011
                        - lat: 40.397155716859
                          long: -3.509198808982
                        - lat: 40.397116347569
                          long: -3.5092191336901
                        - lat: 40.396952346038
                          long: -3.5092680961414
                        - lat: 40.396899483216
                          long: -3.509283841324
                        - lat: 40.396758360358
                          long: -3.5092929118405
                        - lat: 40.396584434986
                          long: -3.509304091858
                        - lat: 40.396538655612
                          long: -3.5093070462908
                        - lat: 40.39621535932
                          long: -3.5092567694871
                        - lat: 40.39619616896
                          long: -3.5092569784064
                        - lat: 40.396159410867
                          long: -3.5092571728014
                        - lat: 40.396004538217
                          long: -3.5092584804819
                        - lat: 40.395979041677
                          long: -3.509258641889
                        - lat: 40.395968049869
                          long: -3.509258794743
                        - lat: 40.395906515421
                          long: -3.5092592738045
                        - lat: 40.395840927
                          long: -3.5092597223226
                        - lat: 40.395827322631
                          long: -3.5092598554929
                        - lat: 40.395753535138
                          long: -3.5092604779051
                        - lat: 40.395747768969
                          long: -3.5092605522957
                        - lat: 40.395569832669
                          long: -3.5092619218732
                        - lat: 40.395432708953
                          long: -3.5092630097683
                        - lat: 40.395340163057
                          long: -3.5092475834091
                        - lat: 40.395348139482
                          long: -3.5091956791859
                        - lat: 40.39536965837
                          long: -3.5090553844075
                        - lat: 40.395402927037
                          long: -3.5086197706378
                        - lat: 40.394989178403
                          long: -3.5079546755714
                        - lat: 40.394780916598
                          long: -3.5076197640393
                        - lat: 40.394189314156
                          long: -3.5066686679409
                        - lat: 40.394172584828
                          long: -3.50664179494
                        - lat: 40.394146999209
                          long: -3.5066005980479
                        - lat: 40.394123112866
                          long: -3.5065622418599
                        - lat: 40.394108709809
                          long: -3.506539039097
                        - lat: 40.393519155903
                          long: -3.5055912765059
                        - lat: 40.393458947801
                          long: -3.5054944415546
                        - lat: 40.393381515112
                          long: -3.5054633446894
                        - lat: 40.393300474758
                          long: -3.5054331635572
                        - lat: 40.39326908387
                          long: -3.50542149941
                        - lat: 40.393089431714
                          long: -3.5054031888417
                        - lat: 40.393010427809
                          long: -3.5054017733799
                        - lat: 40.392925028143
                          long: -3.5054001922774
                        - lat: 40.392886201595
                          long: -3.5053995485143
                        - lat: 40.392761164583
                          long: -3.5053973175975
                        - lat: 40.392712284182
                          long: -3.5053883506911
                        - lat: 40.392516312125
                          long: -3.5053524798316
                        - lat: 40.392372641243
                          long: -3.5053261906946
                        - lat: 40.392279717906
                          long: -3.5053145381274
                        - lat: 40.39223685797
                          long: -3.5053091511745
                        - lat: 40.392134210231
                          long: -3.5052962476974
                        - lat: 40.392083606295
                          long: -3.5052899780961
                        - lat: 40.392015379517
                          long: -3.505296302115
                        - lat: 40.391907600826
                          long: -3.5053236571634
                        - lat: 40.391871885143
                          long: -3.5053326985165
                        - lat: 40.391757760034
                          long: -3.5054104358238
                        - lat: 40.39162114404
                          long: -3.5055426761651
                        - lat: 40.391597348797
                          long: -3.5055658278488
                        - lat: 40.391574730366
                          long: -3.5055876922275
                        - lat: 40.391515740806
                          long: -3.5056448680988
                        - lat: 40.391445803631
                          long: -3.5057126841563
                        - lat: 40.391429608759
                          long: -3.5057283517076
                        - lat: 40.391309280166
                          long: -3.5058030957848
                        - lat: 40.391288502627
                          long: -3.505816019001
                        - lat: 40.391100430988
                          long: -3.5059100505323
                        - lat: 40.391042123049
                          long: -3.5059349466612
                        - lat: 40.390896803877
                          long: -3.5059971312585
                        - lat: 40.390662417051
                          long: -3.5061341745527
                        - lat: 40.39055682985
                          long: -3.5061959489227
                        - lat: 40.390444431823
                          long: -3.5062700436596
                        - lat: 40.390324017339
                          long: -3.5064054645036
                        - lat: 40.390292743037
                          long: -3.506428912892
                        - lat: 40.390211573765
                          long: -3.5064899268089
                        - lat: 40.390080316618
                          long: -3.5065708309786
                        - lat: 40.389892349407
                          long: -3.5066614426665
                        - lat: 40.389837392641
                          long: -3.506682239012
                        - lat: 40.389618287277
                          long: -3.5067651938244
                        - lat: 40.389485236708
                          long: -3.5068235791799
                        - lat: 40.389479719109
                          long: -3.5068286041936
                        - lat: 40.389438022581
                          long: -3.5068661126784
                        - lat: 40.389385381959
                          long: -3.5069134361557
                        - lat: 40.389200913763
                          long: -3.5068428914371
                        - lat: 40.389099100979
                          long: -3.5068039538497
                        - lat: 40.389009580209
                          long: -3.5067765372368
                        - lat: 40.388601562492
                          long: -3.5066517696748
                        - lat: 40.388716586212
                          long: -3.506327915939
                        - lat: 40.389245437842
                          long: -3.504840835414
                        - lat: 40.391866292215
                          long: -3.5037858256806
                        - lat: 40.392002588399
                          long: -3.5036024419641
                        - lat: 40.392022524843
                          long: -3.5035757258922
                        - lat: 40.392041374062
                          long: -3.5035504156322
                        - lat: 40.39253127525
                          long: -3.5028915178088
                        - lat: 40.392615643533
                          long: -3.5027780877592
                        - lat: 40.392598379928
                          long: -3.5027495627808
                        - lat: 40.392589971038
                          long: -3.5027358321814
                        - lat: 40.392561792443
                          long: -3.5026897875016
                        - lat: 40.392544437702
                          long: -3.502661497547
                        - lat: 40.392490042918
                          long: -3.5025739004013
                        - lat: 40.392451480051
                          long: -3.5025125788669
                        - lat: 40.392435196088
                          long: -3.5024866535204
                        - lat: 40.392379897213
                          long: -3.5023997569051
                        - lat: 40.392324325958
                          long: -3.5023133297191
                        - lat: 40.392268302149
                          long: -3.5022273706236
                        - lat: 40.392252907747
                          long: -3.5022040442306
                        - lat: 40.390424919575
                          long: -3.5016931284819
                        - lat: 40.389961041367
                          long: -3.5028333993601
                        - lat: 40.389924069386
                          long: -3.5029242019314
                        - lat: 40.389808222889
                          long: -3.5029009537472
                        - lat: 40.389617665977
                          long: -3.5028626577202
                        - lat: 40.389599663141
                          long: -3.5028591069534
                        - lat: 40.389498939191
                          long: -3.5028387992165
                        - lat: 40.389403307163
                          long: -3.50284916328
                        - lat: 40.389288926995
                          long: -3.5028616264973
                        - lat: 40.389257830589
                          long: -3.5028650477022
                        - lat: 40.389202839729
                          long: -3.5028731218923
                        - lat: 40.389168402363
                          long: -3.5028782855705
                        - lat: 40.388955018958
                          long: -3.5029098063644
                        - lat: 40.388945282741
                          long: -3.5029112656259
                        - lat: 40.388725408337
                          long: -3.5029437983263
                        - lat: 40.388629113998
                          long: -3.5029407255877
                        - lat: 40.388572509831
                          long: -3.5029261659893
                        - lat: 40.388548572427
                          long: -3.5029199790555
                        - lat: 40.38845790875
                          long: -3.50288584352
                        - lat: 40.388346655348
                          long: -3.5028215106577
                        - lat: 40.38833408548
                          long: -3.5028116380579
                        - lat: 40.388327261808
                          long: -3.5028062853805
                        - lat: 40.388297453346
                          long: -3.5027828530375
                        - lat: 40.388277790559
                          long: -3.5027673901392
                        - lat: 40.388266738872
                          long: -3.5027605921841
                        - lat: 40.388212109002
                          long: -3.502727078398
                        - lat: 40.388177157285
                          long: -3.5027054930166
                        - lat: 40.38815658131
                          long: -3.5026928510689
                        - lat: 40.388106466086
                          long: -3.5026570145506
                        - lat: 40.388076019291
                          long: -3.5026353449094
                        - lat: 40.38800944861
                          long: -3.5025715806006
                        - lat: 40.38798432726
                          long: -3.5025475942103
                        - lat: 40.387955035743
                          long: -3.5025088493373
                        - lat: 40.38790039404
                          long: -3.5024365730584
                        - lat: 40.387865176091
                          long: -3.5023725707882
                        - lat: 40.387831924189
                          long: -3.5023122356057
                        - lat: 40.387741574932
                          long: -3.5021641719628
                        - lat: 40.387720650772
                          long: -3.502127963748
                        - lat: 40.387701782778
                          long: -3.5020954232325
                        - lat: 40.387604403182
                          long: -3.5019272786687
                        - lat: 40.387508153986
                          long: -3.5017477145091
                        - lat: 40.38744568507
                          long: -3.5016313168821
                        - lat: 40.387402636322
                          long: -3.5015240177671
                        - lat: 40.387384078616
                          long: -3.5014614360152
                        - lat: 40.387367386171
                          long: -3.5014049947192
                        - lat: 40.387352883917
                          long: -3.5013420896458
                        - lat: 40.387323439585
                          long: -3.5012138021212
                        - lat: 40.387299517058
                          long: -3.5010794290466
                        - lat: 40.387293699113
                          long: -3.5009874871871
                        - lat: 40.387291171013
                          long: -3.5009471743922
                        - lat: 40.387305804537
                          long: -3.5008134405136
                        - lat: 40.38730711833
                          long: -3.5008013148954
                        - lat: 40.387309366682
                          long: -3.5007814201492
                        - lat: 40.387295581096
                          long: -3.5007817893225
                        - lat: 40.38725089055
                          long: -3.5007829899688
                        - lat: 40.387204537593
                          long: -3.5007936038011
                        - lat: 40.387144657578
                          long: -3.5008072985308
                        - lat: 40.387009382129
                          long: -3.5008184318722
                        - lat: 40.386975765837
                          long: -3.500821246156
                        - lat: 40.386930729732
                          long: -3.5008190274834
                        - lat: 40.386887429799
                          long: -3.5008111664003
                        - lat: 40.386750599302
                          long: -3.5007861180662
                        - lat: 40.386651431929
                          long: -3.5007599349554
                        - lat: 40.386620295984
                          long: -3.5007516927581
                        - lat: 40.386490915474
                          long: -3.5007122082663
                        - lat: 40.386432874166
                          long: -3.5006965800133
                        - lat: 40.386297982927
                          long: -3.5006605894517
                        - lat: 40.386260712791
                          long: -3.5006541869994
                        - lat: 40.386194183766
                          long: -3.5006429730534
                        - lat: 40.386128914959
                          long: -3.5006320040945
                        - lat: 40.386086693009
                          long: -3.5006248581117
                        - lat: 40.386076086021
                          long: -3.5006193600075
                        - lat: 40.386029251887
                          long: -3.5005954499203
                        - lat: 40.386021251856
                          long: -3.5005912671091
                        - lat: 40.385781834207
                          long: -3.5005807762331
                        - lat: 40.385753010457
                          long: -3.5005795025025
                        - lat: 40.385575208449
                          long: -3.5005497925947
                        - lat: 40.385553511893
                          long: -3.5005462153241
                        - lat: 40.385342336305
                          long: -3.5005256838051
                        - lat: 40.385239405355
                          long: -3.5005156144851
                        - lat: 40.38522782727
                          long: -3.5005679565944
                        - lat: 40.384293029359
                          long: -3.5048392044158
                        - lat: 40.384285215993
                          long: -3.5048748436192
                        - lat: 40.384279333053
                          long: -3.5049016612054
                        - lat: 40.384607343285
                          long: -3.5050902567965
                        - lat: 40.383120465995
                          long: -3.5057722367663
                        - lat: 40.382680567866
                          long: -3.5059739376105
                        - lat: 40.382635792716
                          long: -3.5059944551083
                        - lat: 40.382622073485
                          long: -3.506000242994
                        - lat: 40.382576131768
                          long: -3.5059373417755
                        - lat: 40.382519085
                          long: -3.5058592778185
                        - lat: 40.382333144096
                          long: -3.5056308665911
                        - lat: 40.382140302464
                          long: -3.5053940405481
                        - lat: 40.382127848115
                          long: -3.5053783965677
                        - lat: 40.381971945407
                          long: -3.5051823743931
                        - lat: 40.381963023455
                          long: -3.5051211645616
                        - lat: 40.381954983784
                          long: -3.5050435858027
                        - lat: 40.381791809577
                          long: -3.5034776240072
                        - lat: 40.381165105993
                          long: -3.5025103473989
                        - lat: 40.381124209353
                          long: -3.5024470161611
                        - lat: 40.381085548515
                          long: -3.5023874714673
                        - lat: 40.380585468058
                          long: -3.5016155358063
                        - lat: 40.379229709838
                          long: -3.5005275660572
                        - lat: 40.379187400797
                          long: -3.5005197134401
                        - lat: 40.377965837933
                          long: -3.5002933277019
                        - lat: 40.377859558763
                          long: -3.5002866514562
                        - lat: 40.377138121578
                          long: -3.5002412629148
                        - lat: 40.377111186656
                          long: -3.5003239957293
                        - lat: 40.376718851101
                          long: -3.5015272527507
                        - lat: 40.376712641799
                          long: -3.5015464081866
                        - lat: 40.376704607218
                          long: -3.5015709689048
                        - lat: 40.37659449092
                          long: -3.5019088281044
                        - lat: 40.376442462672
                          long: -3.5023753659882
                        - lat: 40.37600146253
                          long: -3.502769663025
                        - lat: 40.375989252418
                          long: -3.5027806453938
                        - lat: 40.375972520459
                          long: -3.5027955993187
                        - lat: 40.37513193917
                          long: -3.5035471438517
                        - lat: 40.374984494438
                          long: -3.5036838692724
                        - lat: 40.374752176295
                          long: -3.5038635468612
                        - lat: 40.374372050811
                          long: -3.5040562574334
                        - lat: 40.374002725365
                          long: -3.5042514022816
                        - lat: 40.373733495652
                          long: -3.5044249103384
                        - lat: 40.373629515992
                          long: -3.5045107143794
                        - lat: 40.373570745075
                          long: -3.5045591609859
                        - lat: 40.373400499359
                          long: -3.5047593200982
                        - lat: 40.373243787175
                          long: -3.5049548674513
                        - lat: 40.37304694628
                          long: -3.5052621364101
                        - lat: 40.372844411385
                          long: -3.5056352077188
                        - lat: 40.372735683934
                          long: -3.5058794055856
                        - lat: 40.372626955971
                          long: -3.5061236026638
                        - lat: 40.372497544905
                          long: -3.5064618786304
                        - lat: 40.372466357573
                          long: -3.5065888616466
                        - lat: 40.372448760819
                          long: -3.506698277389
                        - lat: 40.372453820339
                          long: -3.5067772366179
                        - lat: 40.37247459626
                          long: -3.506949723516
                        - lat: 40.372476422546
                          long: -3.506964696922
                        - lat: 40.372476848721
                          long: -3.5069702363902
                        - lat: 40.372478202357
                          long: -3.5069902713574
                        - lat: 40.372656288209
                          long: -3.509517449499
                        - lat: 40.372609473905
                          long: -3.5105312971808
                        - lat: 40.372583848663
                          long: -3.5106218045961
                        - lat: 40.372542080222
                          long: -3.5106956990269
                        - lat: 40.372456996359
                          long: -3.5107857573497
                        - lat: 40.372344199541
                          long: -3.5108882099985
                        - lat: 40.372113540297
                          long: -3.5110569137303
                        - lat: 40.371876553227
                          long: -3.5111896419363
                        - lat: 40.371771335467
                          long: -3.5112486851362
                        - lat: 40.371586730827
                          long: -3.51135212451
                        - lat: 40.371180650417
                          long: -3.5116050145621
                        - lat: 40.371146056784
                          long: -3.5116453907639
                        - lat: 40.370932968522
                          long: -3.5118945549277
                        - lat: 40.370866765554
                          long: -3.5119523601847
                        - lat: 40.370796947265
                          long: -3.5119720917549
                        - lat: 40.370639866853
                          long: -3.512003884208
                        - lat: 40.370513934407
                          long: -3.5120003397861
                        - lat: 40.370466055225
                          long: -3.5119891408032
                        - lat: 40.370288765183
                          long: -3.5119461017366
                        - lat: 40.37003239313
                          long: -3.5118581759506
                        - lat: 40.36970335668
                          long: -3.5117002061322
                        - lat: 40.369350990709
                          long: -3.5115208597057
                        - lat: 40.368940186564
                          long: -3.5113139825187
                        - lat: 40.368544811594
                          long: -3.5110813114563
                        - lat: 40.368024681013
                          long: -3.5107416944271
                        - lat: 40.367598080469
                          long: -3.5104393014164
                        - lat: 40.367492725052
                          long: -3.510366304786
                        - lat: 40.367486438073
                          long: -3.510361899342
                        - lat: 40.367479522033
                          long: -3.5103571358008
                        - lat: 40.36715977274
                          long: -3.5101356461415
                        - lat: 40.367001600832
                          long: -3.5099860463717
                        - lat: 40.36692065631
                          long: -3.5098525766153
                        - lat: 40.366766043161
                          long: -3.5096926399338
                        - lat: 40.366611615777
                          long: -3.5095722804244
                        - lat: 40.366539249703
                          long: -3.5095160242097
                        - lat: 40.366371926293
                          long: -3.509357642482
                        - lat: 40.36615407347
                          long: -3.5092373960247
                        - lat: 40.365949828702
                          long: -3.5091775569685
                        - lat: 40.365645081256
                          long: -3.5090882234937
                        - lat: 40.365474937001
                          long: -3.5090384176914
                        - lat: 40.365195486402
                          long: -3.5089124104967
                        - lat: 40.364893809948
                          long: -3.5086573860672
                        - lat: 40.364847225324
                          long: -3.5086180507835
                        - lat: 40.364606503611
                          long: -3.5084533525754
                        - lat: 40.364377938497
                          long: -3.5083309117316
                        - lat: 40.364169001688
                          long: -3.5081905990072
                        - lat: 40.364154622672
                          long: -3.508182482079
                        - lat: 40.363941994165
                          long: -3.5080621648629
                        - lat: 40.363746937734
                          long: -3.5080024003556
                        - lat: 40.363479339423
                          long: -3.5079056984782
                        - lat: 40.363334575921
                          long: -3.5078819987484
                        - lat: 40.363222762678
                          long: -3.5078636108148
                        - lat: 40.362998415981
                          long: -3.5078267119545
                        - lat: 40.362633432339
                          long: -3.5077906424845
                        - lat: 40.362523326846
                          long: -3.5078141958828
                        - lat: 40.362489510441
                          long: -3.5078214797727
                        - lat: 40.362456776654
                          long: -3.5078284184526
                        - lat: 40.362324037134
                          long: -3.5078567484432
                        - lat: 40.362133292711
                          long: -3.507861323546
                        - lat: 40.362013661879
                          long: -3.50783828411
                        - lat: 40.361938949169
                          long: -3.507823826042
                        - lat: 40.361938138887
                          long: -3.5078237021871
                        - lat: 40.361620102061
                          long: -3.507662438345
                        - lat: 40.361606362926
                          long: -3.5076522067057
                        - lat: 40.36140395547
                          long: -3.5075019401029
                        - lat: 40.361312562306
                          long: -3.5074289417374
                        - lat: 40.36119558263
                          long: -3.5073354947239
                        - lat: 40.360968992927
                          long: -3.5072142564803
                        - lat: 40.360856102648
                          long: -3.5071538173568
                        - lat: 40.360527605193
                          long: -3.5069946008303
                        - lat: 40.360372935662
                          long: -3.5068465804811
                        - lat: 40.360167425366
                          long: -3.5067051287057
                        - lat: 40.359938561409
                          long: -3.5065476038816
                        - lat: 40.359653259958
                          long: -3.5063785874101
                        - lat: 40.359410221897
                          long: -3.5061865699522
                        - lat: 40.359208392612
                          long: -3.5060272487071
                        - lat: 40.358983353775
                          long: -3.5057982708885
                        - lat: 40.358870228565
                          long: -3.505626542102
                        - lat: 40.358727186289
                          long: -3.5053944104375
                        - lat: 40.358621000401
                          long: -3.5052220281639
                        - lat: 40.358422732341
                          long: -3.5048244923391
                        - lat: 40.358287455297
                          long: -3.5044434447984
                        - lat: 40.358260529748
                          long: -3.5043167609322
                        - lat: 40.358247020849
                          long: -3.5042536542298
                        - lat: 40.35819678586
                          long: -3.5040179790602
                        - lat: 40.358190749784
                          long: -3.5039352608251
                        - lat: 40.358157593299
                          long: -3.5034807821772
                        - lat: 40.358191579728
                          long: -3.5031031167798
                        - lat: 40.358208732996
                          long: -3.5028877283866
                        - lat: 40.358229122905
                          long: -3.5026323227039
                        - lat: 40.358205498248
                          long: -3.5024089764398
                        - lat: 40.358254185872
                          long: -3.5021720346567
                        - lat: 40.358311776497
                          long: -3.5020217183523
                        - lat: 40.358449607983
                          long: -3.5017954471398
                        - lat: 40.3584922543
                          long: -3.5017255731415
                        - lat: 40.358569835107
                          long: -3.5015982512318
                        - lat: 40.358737552292
                          long: -3.501419071812
                        - lat: 40.3589440419
                          long: -3.5013361608173
                        - lat: 40.359004994622
                          long: -3.5013244820345
                        - lat: 40.359167204029
                          long: -3.5012935323438
                        - lat: 40.359336054739
                          long: -3.5012476748782
                        - lat: 40.359627935789
                          long: -3.5011683392246
                        - lat: 40.359865294005
                          long: -3.501051383544
                        - lat: 40.360103421502
                          long: -3.5008399799604
                        - lat: 40.36017319317
                          long: -3.5007057654892
                        - lat: 40.360189745005
                          long: -3.5006491219824
                        - lat: 40.36023254022
                          long: -3.5005030482355
                        - lat: 40.360342658964
                          long: -3.5002886932025
                        - lat: 40.360458868227
                          long: -3.5000825087552
                        - lat: 40.360654202719
                          long: -3.4998080111054
                        - lat: 40.360723826695
                          long: -3.4997494034217
                        - lat: 40.360816688476
                          long: -3.4996712991346
                        - lat: 40.360898067191
                          long: -3.4996027672477
                        - lat: 40.360938402536
                          long: -3.499567026467
                        - lat: 40.361083825594
                          long: -3.4994384315621
                        - lat: 40.361094135913
                          long: -3.4994292035602
                        - lat: 40.361441850954
                          long: -3.4990626662183
                        - lat: 40.361564211185
                          long: -3.4989337814799
                        - lat: 40.36185267728
                          long: -3.4987267404871
                        - lat: 40.362148904764
                          long: -3.4986000775455
                        - lat: 40.36226284146
                          long: -3.4985651132933
                        - lat: 40.362386069998
                          long: -3.4985272729867
                        - lat: 40.362666262674
                          long: -3.4984629113941
                        - lat: 40.362938172112
                          long: -3.4982718785456
                        - lat: 40.363013648764
                          long: -3.4981929350574
                        - lat: 40.363122429757
                          long: -3.498079021269
                        - lat: 40.363173018724
                          long: -3.4980261584528
                        - lat: 40.363369508857
                          long: -3.4977541257465
                        - lat: 40.363477995767
                          long: -3.4975618865015
                        - lat: 40.363558725338
                          long: -3.4973716804039
                        - lat: 40.363604050493
                          long: -3.4972648358704
                        - lat: 40.36370407831
                          long: -3.4968814973997
                        - lat: 40.363781408723
                          long: -3.4964335667156
                        - lat: 40.363785053851
                          long: -3.4959409281936
                        - lat: 40.363781785982
                          long: -3.4957995706818
                        - lat: 40.363770808271
                          long: -3.4953128317606
                        - lat: 40.363716583003
                          long: -3.4950369524535
                        - lat: 40.36363710064
                          long: -3.4949156488495
                        - lat: 40.363610941696
                          long: -3.4949021486575
                        - lat: 40.363546488498
                          long: -3.4948688173497
                        - lat: 40.363471427464
                          long: -3.4948301085536
                        - lat: 40.363106360872
                          long: -3.4945175683688
                        - lat: 40.363075249044
                          long: -3.4944824791023
                        - lat: 40.36287064309
                          long: -3.494252380085
                        - lat: 40.362685584428
                          long: -3.494001696574
                        - lat: 40.36250511695
                          long: -3.4936883912346
                        - lat: 40.36245354339
                          long: -3.4935291356296
                        - lat: 40.36244782617
                          long: -3.4934755060128
                        - lat: 40.362429892695
                          long: -3.4933077805313
                        - lat: 40.362430621466
                          long: -3.4931368934123
                        - lat: 40.362414447883
                          long: -3.4929577566487
                        - lat: 40.362340591611
                          long: -3.492572681751
                        - lat: 40.362329315822
                          long: -3.4925337337805
                        - lat: 40.362273910612
                          long: -3.4923430055687
                        - lat: 40.36226562027
                          long: -3.4921317740698
                        - lat: 40.362264523781
                          long: -3.4921142175706
                        - lat: 40.36223973472
                          long: -3.4917150146061
                        - lat: 40.3621025673
                          long: -3.4914082739136
                        - lat: 40.362087701086
                          long: -3.4913873197843
                        - lat: 40.361965010504
                          long: -3.4912142421424
                        - lat: 40.361836300929
                          long: -3.4911007154026
                        - lat: 40.361719450801
                          long: -3.4909524139168
                        - lat: 40.361676796362
                          long: -3.4908983993912
                        - lat: 40.361557411549
                          long: -3.4906891910102
                        - lat: 40.361554639274
                          long: -3.4906843421712
                        - lat: 40.361462093335
                          long: -3.4903920628774
                        - lat: 40.36144475033
                          long: -3.4901264747978
                        - lat: 40.361442968496
                          long: -3.4900792345536
                        - lat: 40.361428158302
                          long: -3.4896834070364
                        - lat: 40.361410880803
                          long: -3.4890398834197
                        - lat: 40.361397729308
                          long: -3.4885491425687
                        - lat: 40.361372071994
                          long: -3.4880965881993
                        - lat: 40.36136460817
                          long: -3.4879652165993
                        - lat: 40.361368174933
                          long: -3.4874826053196
                        - lat: 40.361414277051
                          long: -3.4871250226001
                        - lat: 40.361467934522
                          long: -3.4867915196226
                        - lat: 40.361538674201
                          long: -3.4862947862359
                        - lat: 40.361555290336
                          long: -3.4861783092531
                        - lat: 40.361601785643
                          long: -3.4857261547835
                        - lat: 40.361609321357
                          long: -3.4853904345758
                        - lat: 40.361618177696
                          long: -3.484997367704
                        - lat: 40.361621485272
                          long: -3.4848531179634
                        - lat: 40.361588003584
                          long: -3.4845874150821
                        - lat: 40.361503144306
                          long: -3.4842630466328
                        - lat: 40.361368773009
                          long: -3.4840369016198
                        - lat: 40.361215952306
                          long: -3.4839136774598
                        - lat: 40.361207781786
                          long: -3.4839070237204
                        - lat: 40.360899465306
                          long: -3.4836753974183
                        - lat: 40.360633711272
                          long: -3.483520511643
                        - lat: 40.360504276758
                          long: -3.4834708291824
                        - lat: 40.360329688821
                          long: -3.4834037474505
                        - lat: 40.36022154091
                          long: -3.4833696455743
                        - lat: 40.360154870458
                          long: -3.4833486771361
                        - lat: 40.360068586149
                          long: -3.4833214445492
                        - lat: 40.359975733686
                          long: -3.4832921630169
                        - lat: 40.359863626729
                          long: -3.4832568555223
                        - lat: 40.359671443694
                          long: -3.4831962445452
                        - lat: 40.359651639322
                          long: -3.4831924522594
                        - lat: 40.35945359903
                          long: -3.4831537051577
                        - lat: 40.3593706923
                          long: -3.4831374498609
                        - lat: 40.359241039529
                          long: -3.4830968358239
                        - lat: 40.359226284082
                          long: -3.4830921374698
                        - lat: 40.359030062976
                          long: -3.4829845086058
                        - lat: 40.358951232262
                          long: -3.4829414312402
                        - lat: 40.358841204212
                          long: -3.4829260427403
                        - lat: 40.358616735201
                          long: -3.4828948811042
                        - lat: 40.35858549145
                          long: -3.4828905362778
                        - lat: 40.358399422177
                          long: -3.4828760186725
                        - lat: 40.358302244908
                          long: -3.482868377042
                        - lat: 40.358185945724
                          long: -3.48288768572
                        - lat: 40.357977508465
                          long: -3.4829223533945
                        - lat: 40.357962434551
                          long: -3.4829291941487
                        - lat: 40.357749589567
                          long: -3.4830269535208
                        - lat: 40.357701478063
                          long: -3.4830491037576
                        - lat: 40.35751946317
                          long: -3.4831423717671
                        - lat: 40.35728752109
                          long: -3.4832610737403
                        - lat: 40.35715552373
                          long: -3.4833287891739
                        - lat: 40.357043660527
                          long: -3.4833860491719
                        - lat: 40.356857401804
                          long: -3.4834815226259
                        - lat: 40.356814433665
                          long: -3.4835017069737
                        - lat: 40.356579373534
                          long: -3.4836119051104
                        - lat: 40.356409306587
                          long: -3.4836917124748
                        - lat: 40.356361023144
                          long: -3.4837118585743
                        - lat: 40.356134675409
                          long: -3.4838068081215
                        - lat: 40.356098034149
                          long: -3.4838220911603
                        - lat: 40.355922315493
                          long: -3.4839176374572
                        - lat: 40.355857120769
                          long: -3.4839530894611
                        - lat: 40.35570828566
                          long: -3.4840184442268
                        - lat: 40.355555208431
                          long: -3.48408565259
                        - lat: 40.355319617287
                          long: -3.4841503862679
                        - lat: 40.355171159431
                          long: -3.4841686375836
                        - lat: 40.355133030969
                          long: -3.4841733109107
                        - lat: 40.355011057008
                          long: -3.4841707897985
                        - lat: 40.35489304648
                          long: -3.4841684148086
                        - lat: 40.354827014499
                          long: -3.4841671181779
                        - lat: 40.354576481406
                          long: -3.4841210477513
                        - lat: 40.354297711676
                          long: -3.4841270618607
                        - lat: 40.354223939514
                          long: -3.4841023931806
                        - lat: 40.354102566691
                          long: -3.4840853919228
                        - lat: 40.353984208701
                          long: -3.4840584026056
                        - lat: 40.353918058033
                          long: -3.4840639353884
                        - lat: 40.353854886121
                          long: -3.4840896265461
                        - lat: 40.353742272585
                          long: -3.4841753752307
                        - lat: 40.353647641694
                          long: -3.484291163405
                        - lat: 40.353593489699
                          long: -3.4843573105559
                        - lat: 40.353529147219
                          long: -3.4844258576422
                        - lat: 40.353471501888
                          long: -3.4844871514062
                        - lat: 40.353389768837
                          long: -3.4845348480218
                        - lat: 40.353291357792
                          long: -3.4845421513049
                        - lat: 40.353132966213
                          long: -3.4845230004025
                        - lat: 40.352683443646
                          long: -3.484535798251
                        - lat: 40.352403266343
                          long: -3.4845982066664
                        - lat: 40.352205176632
                          long: -3.4846573162404
                        - lat: 40.352067253928
                          long: -3.4846983683172
                        - lat: 40.351919445566
                          long: -3.4847335793356
                        - lat: 40.351788700814
                          long: -3.4847386488061
                        - lat: 40.351644141034
                          long: -3.4847296062726
                        - lat: 40.351336198989
                          long: -3.4847314051472
                        - lat: 40.351170214717
                          long: -3.4847182055993
                        - lat: 40.351007321815
                          long: -3.4846767668672
                        - lat: 40.350878318759
                          long: -3.4846316850019
                        - lat: 40.350676917965
                          long: -3.4845134301573
                        - lat: 40.350510134474
                          long: -3.484325359529
                        - lat: 40.350351280408
                          long: -3.4840507968773
                        - lat: 40.35018654138
                          long: -3.4837399251257
                        - lat: 40.350133320861
                          long: -3.4836049517518
                        - lat: 40.349970091667
                          long: -3.4831911758931
                        - lat: 40.349939496389
                          long: -3.4830962833882
                        - lat: 40.349908545592
                          long: -3.483000210894
                        - lat: 40.349836947876
                          long: -3.4827783230814
                        - lat: 40.349821294633
                          long: -3.482729696932
                        - lat: 40.349763889545
                          long: -3.4824961354756
                        - lat: 40.349735874926
                          long: -3.4821495048311
                        - lat: 40.349745363281
                          long: -3.4819913115823
                        - lat: 40.349747489996
                          long: -3.4819565894136
                        - lat: 40.349820562375
                          long: -3.4817601076144
                        - lat: 40.349916779548
                          long: -3.4815656740768
                        - lat: 40.349967044471
                          long: -3.4814806599716
                        - lat: 40.349997257938
                          long: -3.4814295340816
                        - lat: 40.350072456942
                          long: -3.4811764263552
                        - lat: 40.35008567424
                          long: -3.481117760956
                        - lat: 40.350110635977
                          long: -3.4810079558949
                        - lat: 40.350139820054
                          long: -3.48087934006
                        - lat: 40.350149511327
                          long: -3.4807152594112
                        - lat: 40.350159585718
                          long: -3.4805456469815
                        - lat: 40.350179035059
                          long: -3.4799406454499
                        - lat: 40.35016052244
                          long: -3.4795385009875
                        - lat: 40.350157875853
                          long: -3.4794814891557
                        - lat: 40.350166500222
                          long: -3.4792482789149
                        - lat: 40.35019527319
                          long: -3.4789791783294
                        - lat: 40.350196430483
                          long: -3.4786996376205
                        - lat: 40.350159417951
                          long: -3.4783475260266
                        - lat: 40.350079557652
                          long: -3.4779428294496
                        - lat: 40.350008039924
                          long: -3.4777428492149
                        - lat: 40.349919515656
                          long: -3.4775813727284
                        - lat: 40.349800097458
                          long: -3.4774398146965
                        - lat: 40.349643675059
                          long: -3.4773361484057
                        - lat: 40.349542310449
                          long: -3.4772951621503
                        - lat: 40.34918877419
                          long: -3.4771459500935
                        - lat: 40.348892592872
                          long: -3.4769830134276
                        - lat: 40.348800113909
                          long: -3.4769064119163
                        - lat: 40.348728554862
                          long: -3.4768471497124
                        - lat: 40.348607278605
                          long: -3.4767190060869
                        - lat: 40.348590504186
                          long: -3.4767013429929
                        - lat: 40.348432434718
                          long: -3.4766036740096
                        - lat: 40.34838995276
                          long: -3.4765936016202
                        - lat: 40.348335589665
                          long: -3.4765808550892
                        - lat: 40.348283387259
                          long: -3.4765684770405
                        - lat: 40.348133382954
                          long: -3.4765687164854
                        - lat: 40.348049686924
                          long: -3.4765688338919
                        - lat: 40.347682026862
                          long: -3.4765018368723
                        - lat: 40.347347102317
                          long: -3.4764051625839
                        - lat: 40.347293931206
                          long: -3.4763873615737
                        - lat: 40.346876743857
                          long: -3.4762490155108
                        - lat: 40.346649517127
                          long: -3.476164993565
                        - lat: 40.346319514886
                          long: -3.4759667408568
                        - lat: 40.346239530476
                          long: -3.4759187263863
                        - lat: 40.345934050558
                          long: -3.4757818768052
                        - lat: 40.345697743763
                          long: -3.4756930839763
                        - lat: 40.345519006551
                          long: -3.4756260081957
                        - lat: 40.345423786243
                          long: -3.4756023788851
                        - lat: 40.345277806266
                          long: -3.4755660298334
                        - lat: 40.344965378999
                          long: -3.4754973095755
                        - lat: 40.344616677042
                          long: -3.4754206818827
                        - lat: 40.344366263673
                          long: -3.4753445094465
                        - lat: 40.344190758197
                          long: -3.4752582663579
                        - lat: 40.343801084442
                          long: -3.4750670246001
                        - lat: 40.343597526391
                          long: -3.4749670457694
                        - lat: 40.343468330503
                          long: -3.4748801874594
                        - lat: 40.342950827952
                          long: -3.4745321638092
                        - lat: 40.342748203127
                          long: -3.4744241879855
                        - lat: 40.342560842725
                          long: -3.474328682541
                        - lat: 40.342100173116
                          long: -3.4740938608165
                        - lat: 40.341797169213
                          long: -3.473901825379
                        - lat: 40.341401069825
                          long: -3.4736510951254
                        - lat: 40.341291172243
                          long: -3.4735814492663
                        - lat: 40.341002856366
                          long: -3.4733884614697
                        - lat: 40.340730990882
                          long: -3.4731822858779
                        - lat: 40.340352336246
                          long: -3.472895187096
                        - lat: 40.34012994767
                          long: -3.4727509371946
                        - lat: 40.339894555548
                          long: -3.4725919981846
                        - lat: 40.339425477017
                          long: -3.4722754304878
                        - lat: 40.339305007561
                          long: -3.4721911160186
                        - lat: 40.338940454305
                          long: -3.4719360332822
                        - lat: 40.338656541354
                          long: -3.4717893595382
                        - lat: 40.338565707311
                          long: -3.4717503454835
                        - lat: 40.338124939118
                          long: -3.4715605503726
                        - lat: 40.338100742906
                          long: -3.4715510809801
                        - lat: 40.337933168317
                          long: -3.4714855143447
                        - lat: 40.337849696079
                          long: -3.4714527922096
                        - lat: 40.337685809344
                          long: -3.4713886645235
                        - lat: 40.337029949097
                          long: -3.4711204993219
                        - lat: 40.33698524787
                          long: -3.4711021755013
                        - lat: 40.336497168857
                          long: -3.4709372545678
                        - lat: 40.336480974754
                          long: -3.4709317263729
                        - lat: 40.336056995263
                          long: -3.4708002177625
                        - lat: 40.335808232522
                          long: -3.470716078211
                        - lat: 40.335804724292
                          long: -3.4707147588089
                        - lat: 40.335443860524
                          long: -3.4705927564897
                        - lat: 40.335251123428
                          long: -3.4705336128688
                        - lat: 40.335215671644
                          long: -3.4705226533322
                        - lat: 40.33518435872
                          long: -3.4705130175667
                        - lat: 40.335025993724
                          long: -3.4704644731869
                        - lat: 40.334881306067
                          long: -3.470420026763
                        - lat: 40.33486709343
                          long: -3.4704146303151
                        - lat: 40.334632674238
                          long: -3.4703257664669
                        - lat: 40.334621789651
                          long: -3.4703216881661
                        - lat: 40.334307671525
                          long: -3.4703133854838
                        - lat: 40.334192338053
                          long: -3.4703393086875
                        - lat: 40.334099908438
                          long: -3.4703602108745
                        - lat: 40.333939467593
                          long: -3.4704676403741
                        - lat: 40.33387587645
                          long: -3.4705527855597
                        - lat: 40.333845620284
                          long: -3.4705934263081
                        - lat: 40.333827593757
                          long: -3.4706175526261
                        - lat: 40.333824151187
                          long: -3.4706222377476
                        - lat: 40.333812647041
                          long: -3.4706375799212
                        - lat: 40.333713992168
                          long: -3.4707270724471
                        - lat: 40.333690209928
                          long: -3.4707486864464
                        - lat: 40.333634869447
                          long: -3.4707988061699
                        - lat: 40.333614794291
                          long: -3.4708171495675
                        - lat: 40.333604395634
                          long: -3.470826495341
                        - lat: 40.333594719611
                          long: -3.470835375232
                        - lat: 40.333575925353
                          long: -3.4708489007652
                        - lat: 40.333495054917
                          long: -3.4709073190855
                        - lat: 40.333481139876
                          long: -3.4709173467368
                        - lat: 40.33345927345
                          long: -3.4709330876489
                        - lat: 40.333434153724
                          long: -3.4709512781647
                        - lat: 40.333418341043
                          long: -3.4709627053083
                        - lat: 40.333376234105
                          long: -3.4709931388422
                        - lat: 40.333349397871
                          long: -3.4710124946302
                        - lat: 40.333292838205
                          long: -3.4710522456098
                        - lat: 40.333269979335
                          long: -3.471068332709
                        - lat: 40.333207455984
                          long: -3.4711123979431
                        - lat: 40.333027024506
                          long: -3.4712393452131
                        - lat: 40.333004534601
                          long: -3.4712533157123
                        - lat: 40.332828317613
                          long: -3.4713629860985
                        - lat: 40.332676488095
                          long: -3.471457286082
                        - lat: 40.332500903458
                          long: -3.4715664889216
                        - lat: 40.332499277523
                          long: -3.4715675371164
                        - lat: 40.332370625056
                          long: -3.4716339793819
                        - lat: 40.33221877051
                          long: -3.4717122676086
                        - lat: 40.332189532934
                          long: -3.4717239540632
                        - lat: 40.332180147755
                          long: -3.4717277735752
                        - lat: 40.332030080231
                          long: -3.4717875913387
                        - lat: 40.331903474433
                          long: -3.4718381544389
                        - lat: 40.33188768231
                          long: -3.4718445191933
                        - lat: 40.331858625379
                          long: -3.4718560890707
                        - lat: 40.331778673289
                          long: -3.4718880235883
                        - lat: 40.331626529768
                          long: -3.4719487679658
                        - lat: 40.331545585221
                          long: -3.4719810485189
                        - lat: 40.331515896206
                          long: -3.4719929670429
                        - lat: 40.331502272473
                          long: -3.471997816448
                        - lat: 40.33147304015
                          long: -3.472008207755
                        - lat: 40.331466003059
                          long: -3.4720106308856
                        - lat: 40.331454364183
                          long: -3.4720147877817
                        - lat: 40.331446604932
                          long: -3.4720175590449
                        - lat: 40.33144074045
                          long: -3.4720196371781
                        - lat: 40.331437763163
                          long: -3.4720206759307
                        - lat: 40.331436409414
                          long: -3.4720212551078
                        - lat: 40.331434515127
                          long: -3.4720218305187
                        - lat: 40.331429552503
                          long: -3.4720236794911
                        - lat: 40.331426395037
                          long: -3.472024716988
                        - lat: 40.331425131858
                          long: -3.4720251790741
                        - lat: 40.331418545216
                          long: -3.4720276053398
                        - lat: 40.331403116803
                          long: -3.4720331484876
                        - lat: 40.331391207657
                          long: -3.4720373034929
                        - lat: 40.331382546547
                          long: -3.4720403039107
                        - lat: 40.331368922813
                          long: -3.472045153297
                        - lat: 40.331360441882
                          long: -3.4720481549683
                        - lat: 40.331339690485
                          long: -3.4720555445636
                        - lat: 40.331333644861
                          long: -3.4720578568714
                        - lat: 40.331318487677
                          long: -3.4720631664523
                        - lat: 40.331296563189
                          long: -3.4720710187507
                        - lat: 40.33127635329
                          long: -3.4720781766624
                        - lat: 40.331165108264
                          long: -3.4721176621916
                        - lat: 40.331127394996
                          long: -3.4721310550473
                        - lat: 40.331125535782
                          long: -3.4721230370463
                        - lat: 40.331123944915
                          long: -3.4721154918007
                        - lat: 40.331121997532
                          long: -3.4721070023012
                        - lat: 40.331115096401
                          long: -3.4720761112502
                        - lat: 40.331114477302
                          long: -3.472073281627
                        - lat: 40.331094921968
                          long: -3.4719862671286
                        - lat: 40.331080234102
                          long: -3.4719207118359
                        - lat: 40.33107607576
                          long: -3.4719020829274
                        - lat: 40.331071121014
                          long: -3.4718799168396
                        - lat: 40.33106758177
                          long: -3.4718641175554
                        - lat: 40.331055635724
                          long: -3.4718110598482
                        - lat: 40.331038913138
                          long: -3.4717363082181
                        - lat: 40.331027764401
                          long: -3.4716865522969
                        - lat: 40.331015465594
                          long: -3.4716316086594
                        - lat: 40.331012633595
                          long: -3.4716191105137
                        - lat: 40.330991747684
                          long: -3.4715269072913
                        - lat: 40.330982543407
                          long: -3.4714863472084
                        - lat: 40.330970685358
                          long: -3.4714337611303
                        - lat: 40.330917017634
                          long: -3.4714491622839
                        - lat: 40.330761064755
                          long: -3.4714941058206
                        - lat: 40.33073076531
                          long: -3.4715010759117
                        - lat: 40.330699022987
                          long: -3.4715083891165
                        - lat: 40.330603345568
                          long: -3.4715303255556
                        - lat: 40.330600369726
                          long: -3.4715310111664
                        - lat: 40.33059405768
                          long: -3.4715323798796
                        - lat: 40.330475204619
                          long: -3.4715596877922
                        - lat: 40.330468353475
                          long: -3.4715606995878
                        - lat: 40.330365943302
                          long: -3.4715767030218
                        - lat: 40.33032104882
                          long: -3.4715836891678
                        - lat: 40.330226391645
                          long: -3.4715984515845
                        - lat: 40.330172498258
                          long: -3.4716029029517
                        - lat: 40.330006222072
                          long: -3.4716165781784
                        - lat: 40.329973958399
                          long: -3.4716191788553
                        - lat: 40.329872328922
                          long: -3.4716204726427
                        - lat: 40.32983313697
                          long: -3.4716209061436
                        - lat: 40.329775744953
                          long: -3.4716216838303
                        - lat: 40.329751259239
                          long: -3.4716169223513
                        - lat: 40.329687524116
                          long: -3.4716045891068
                        - lat: 40.329663848729
                          long: -3.4715999509995
                        - lat: 40.32962991078
                          long: -3.4715933579645
                        - lat: 40.329605965123
                          long: -3.4715887179841
                        - lat: 40.32947597427
                          long: -3.4715635632106
                        - lat: 40.329474894152
                          long: -3.4715633202562
                        - lat: 40.329461582931
                          long: -3.4715578125657
                        - lat: 40.329460593863
                          long: -3.4715573348085
                        - lat: 40.329328922599
                          long: -3.471502385772
                        - lat: 40.329322001516
                          long: -3.4714984529101
                        - lat: 40.329302496164
                          long: -3.471487487109
                        - lat: 40.329156161905
                          long: -3.4714050080616
                        - lat: 40.329099983356
                          long: -3.4713733042797
                        - lat: 40.328987446051
                          long: -3.4713098956214
                        - lat: 40.328921379652
                          long: -3.4712727082209
                        - lat: 40.328811809018
                          long: -3.4712108508555
                        - lat: 40.328697923144
                          long: -3.4711467270615
                        - lat: 40.328642054099
                          long: -3.4711053730754
                        - lat: 40.32850741207
                          long: -3.4710055548815
                        - lat: 40.328470304173
                          long: -3.4709809295819
                        - lat: 40.328350443958
                          long: -3.4709015795612
                        - lat: 40.328341548543
                          long: -3.4708957496344
                        - lat: 40.328299202942
                          long: -3.4708520180103
                        - lat: 40.328224469507
                          long: -3.4707749831385
                        - lat: 40.328078650286
                          long: -3.470676501172
                        - lat: 40.327971883163
                          long: -3.4706340881265
                        - lat: 40.327858190595
                          long: -3.4705888019434
                        - lat: 40.327810262242
                          long: -3.4705664562745
                        - lat: 40.327800550732
                          long: -3.4705619156414
                        - lat: 40.327632397249
                          long: -3.4704834089794
                        - lat: 40.327618099769
                          long: -3.4704767176547
                        - lat: 40.327458668663
                          long: -3.4704022742792
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png
                      id: 59bf9b3e76e456ac018b4569
                      jurisdiction_elements:
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5d9ee7d1de2efef4018b4582
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Riv_Barrios
                              name: Barrios
                              description: Barrios
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 677fb4de2a1d95d91e008633
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:geofences
                              name: geofence
                              description: geofence
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: GEOFENCE
                          extent:
                            - -3.5850750207097
                            - 40.287119395069
                            - -3.4700083830236
                            - 40.411038646944
                          id: 5c9b557c9650e67d42985e8b
                          name: es.rivas
                          type: city
                          visible_name: es.rivas
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.5497243
                            - 40.3641802
                            - 0
                            - 40.359865
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/64f8711977425941968678.png
                          id: 64f870d930cbad4d06086d55
                          name: NewTapia
                          type: city
                          visible_name: New Tapia
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6d42138d8b163495863.png
                          id: 67f6d4219c2c75b0bc01ee3c
                          name: Prueba qa
                          type: building
                          visible_name: Prueba
                          position: {}
                          is_main: false
                      jurisdiction_id: es.rivas
                      key_name: Rivas-Vaciamadrid
                      locales:
                        - es
                      name: Rivas
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17715
                          options: []
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                        - id: 5850de88e22c6d9f51b1771a
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771b
                          options:
                            - inperson
                            - email
                        - id: 5850de88e22c6d9f51b1771c
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b1771d
                          options:
                            - facebook
                            - inperson
                        - id: 5850de88e22c6d9f51b1771e
                          options:
                            - twitter
                            - inperson
                        - id: 5850de88e22c6d9f51b17722
                          options:
                            - web_channel
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                      lat: 40.35497
                      long: -3.54806
                      tags:
                        - name: Poda
                          color: '#000000'
                          id: Poda
                        - name: Rivamadrid
                          color: '#000000'
                          id: Rivamadrid
                        - name: Rivas
                          color: '#000000'
                          id: Rivas
                        - name: Enseres
                          color: '#000000'
                          id: Enseres
                        - name: Noticias
                          color: '#000000'
                          id: Noticias
                        - name: México
                          color: '#000000'
                          id: México
                      third_emails:
                        - comentarios.rivas@mejoratuciudad.org
                      timezone: Europe/Madrid
                      typologies:
                        - id: 59bfadfe566d72b8018b45c6
                          color: '#ebc113'
                          description_legend: 'Ej: farola fundida'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                          location_type: geolocation
                          order: 1
                          public: true
                          typology_description: Tengo un problema con un elemento en la calle
                          visible_name: Aviso
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: true
                          with_medias: true
                          with_temporality_data: true
                        - id: 59ca0667da4282853b8b4592
                          color: '#880e4f'
                          description_legend: 'Ej: faltan más carteles informativos'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                          location_type: geolocation
                          order: 3
                          public: true
                          typology_description: Quiero que se mejore algún servicio de la ciudad.
                          visible_name: Queja
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                        - id: 59ce16a8da42828a718b4582
                          color: '#009688'
                          description_legend: 'Ej: felicidades por el buen trabajo'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                          location_type: geolocation
                          order: 4
                          public: true
                          typology_description: Quiero felicitar al ayuntamiento por un buen trabajo
                          visible_name: Agradecimiento
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                        - id: 61547dc16ac0f4af0e8b4567
                          color: '#6db733'
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                          location_type: geolocation
                          order: 5
                          public: true
                          typology_description: >-
                            Quiero proponer una mejora de algún servicio de la
                            ciudad.
                          visible_name: Sugerencia
                          with_authorized_users: false
                          with_description: true
                          with_files: true
                          with_geolocation_data: false
                          with_medias: true
                          with_temporality_data: false
                      typology_nodes:
                        - id: 59bfaf21d2bf39b8018b457d
                          color: '#f1c40f'
                          order: 1
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Nuevo
                        - id: 59e4952551889ed02f8b4579
                          color: '#f1c40f'
                          order: 1
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 59ca0752da4282873b8b458a
                          color: '#f1c40f'
                          order: 1
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 59e4b651883262a6018b4597
                          color: '#f1c40f'
                          order: 1
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 615486fe6ac0f4b70e8b4567
                          color: '#f1c40f'
                          order: 1
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Nuevo
                        - id: 59bfaec83f62fab2018b4571
                          color: '#b39ddb'
                          order: 2
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En consulta
                        - id: 59e49551b03bc9672f8b4576
                          color: '#b39ddb'
                          order: 2
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En consulta
                        - id: 59ca0790700f9c023d8b4587
                          color: '#b39ddb'
                          order: 2
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En consulta
                        - id: 59e4b678883262a7018b4577
                          color: '#b39ddb'
                          order: 2
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En consulta
                        - id: 615487158baf5334108b4567
                          color: '#b39ddb'
                          order: 2
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En consulta
                        - id: 59bfae89566d72ac018b45a1
                          color: '#993399'
                          order: 3
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Consultado
                        - id: 59e49578fc751c4d2f8b46a4
                          color: '#993399'
                          order: 3
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultado
                        - id: 59ca07c99afdd2c73b8b4596
                          color: '#993399'
                          order: 3
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultado
                        - id: 59e4b68a9a6d9da6018b458c
                          color: '#993399'
                          order: 3
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultado
                        - id: 6154874f8baf5333108b4567
                          color: '#993399'
                          order: 3
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Consultado
                        - id: 59bfaf0976e456aa018b4591
                          color: '#0c98f5'
                          order: 4
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En progreso
                        - id: 59e495c6a9e694b82f8b458a
                          color: '#0c98f5'
                          order: 4
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En progreso
                        - id: 59ca0772451f400e3c8b4595
                          color: '#0c98f5'
                          order: 4
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En progreso
                        - id: 59e4b6a79a6d9da6018b45a0
                          color: '#0c98f5'
                          order: 4
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En Progreso
                        - id: 6154876892fb017d0e8b456d
                          color: '#0c98f5'
                          order: 4
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: En progreso
                        - id: 5ff42f9dacba6891068b45cd
                          color: '#337ab7'
                          order: 5
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En ejecución
                        - id: 59e495e651889eda2f8b47c6
                          color: '#3abdaa'
                          order: 5
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 59ca07af700f9cf93c8b45ea
                          color: '#3abdaa'
                          order: 5
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 59e4b6b49a6d9da5018b4577
                          color: '#3abdaa'
                          order: 5
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 615487f392fb017d0e8b456f
                          color: '#3abdaa'
                          order: 5
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Devuelto
                        - id: 5ff43e0fd4c7e7cf068b456f
                          color: '#2e85ae'
                          order: 6
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Pte. Validar Ejecución
                        - id: 59e4961051889ed52f8b47c1
                          color: '#21618c'
                          order: 6
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 59ca07239afdd2da3c8b4577
                          color: '#21618c'
                          order: 6
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 59e4b6c7883262a8018b45bb
                          color: '#21618c'
                          order: 6
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 6154880f3c69dc950e8b458a
                          color: '#21618c'
                          order: 6
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Resuelto
                        - id: 5ff43e9732f92da9068b45a4
                          color: '#727980'
                          order: 7
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Planificado en Ejecución
                        - id: 59e49cb0b03bc9672f8b488f
                          color: '#8cbc2d'
                          order: 7
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validado
                        - id: 59ca06df451f40053c8b4596
                          color: '#8cbc2d'
                          order: 7
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validado
                        - id: 59e4b6ed9a6d9da5018b458b
                          color: '#8cbc2d'
                          order: 7
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validado
                        - id: 6154882592fb017e0e8b4577
                          color: '#8cbc2d'
                          order: 7
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Validado
                        - id: 59bfaea2d2bf39b4018b458a
                          color: '#3abdaa'
                          order: 8
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Devuelto
                        - id: 59e49cd1fc751c4c2f8b47c7
                          color: '#d35400'
                          order: 8
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 59ca073ada42822c3d8b4570
                          color: '#d35400'
                          order: 8
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 59e4b6fd34f77866028b456e
                          color: '#d35400'
                          order: 8
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 6154883d390a87050f8b459c
                          color: '#d35400'
                          order: 8
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Rechazado
                        - id: 59bfaeec3f62fab4018b4590
                          color: '#8cbc2d'
                          order: 9
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Validado
                        - id: 59e49cfab03bc9652f8b470d
                          color: '#2e7d32'
                          order: 9
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 59ca070a451f400e3c8b4594
                          color: '#2e7d32'
                          order: 9
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 59e4b71434f778ad018b4598
                          color: '#2e7d32'
                          order: 9
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 61548853390a87090f8b45b2
                          color: '#2e7d32'
                          order: 9
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Solucionado
                        - id: 59bfaf2e3f62fab4018b4591
                          color: '#d35400'
                          order: 10
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Rechazado
                        - id: 59e49d3651889ed32f8b46a9
                          color: '#b71b1c'
                          order: 10
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 59ca07deda42828c3b8b4594
                          color: '#b71b1c'
                          order: 10
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 59e4b72d883262a9018b45a9
                          color: '#b71b1c'
                          order: 10
                          typology:
                            id: 59ce16a8da42828a718b4582
                            color: '#009688'
                            description_legend: 'Ej: felicidades por el buen trabajo'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682ab450c.png
                            location_type: geolocation
                            order: 4
                            public: true
                            typology_description: >-
                              Quiero felicitar al ayuntamiento por un buen
                              trabajo
                            visible_name: Agradecimiento
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 6154886a390a87030f8b45a3
                          color: '#b71b1c'
                          order: 10
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Cancelado
                        - id: 59bfaf52566d72ac018b45a2
                          color: '#21618c'
                          order: 11
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Resuelto
                        - id: 5a0b16ba0f2cc767298b4587
                          color: '#964848'
                          order: 11
                          typology:
                            id: 59c8bf32451f40502a8b45b4
                            color: '#1565c0'
                            description_legend: 'Ej: calle muy oscura, se necesita otra farola'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a6e65d.png
                            location_type: geolocation
                            order: 2
                            public: false
                            typology_description: >-
                              Quiero que instaléis, quitéis o cambiéis un
                              elemento en la calle
                            visible_name: Petición (desactivada)
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Acción urgente
                        - id: 5a0b16e01992fbc9288b45a4
                          color: '#964848'
                          order: 11
                          typology:
                            id: 59ca0667da4282853b8b4592
                            color: '#880e4f'
                            description_legend: 'Ej: faltan más carteles informativos'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a91bb5.png
                            location_type: geolocation
                            order: 3
                            public: true
                            typology_description: Quiero que se mejore algún servicio de la ciudad.
                            visible_name: Queja
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Acción urgente
                        - id: 6154887fd274996b0e8b4574
                          color: '#964848'
                          order: 11
                          typology:
                            id: 61547dc16ac0f4af0e8b4567
                            color: '#6db733'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/61547dc0e3587.png
                            location_type: geolocation
                            order: 5
                            public: true
                            typology_description: >-
                              Quiero proponer una mejora de algún servicio de la
                              ciudad.
                            visible_name: Sugerencia
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: false
                            with_medias: true
                            with_temporality_data: false
                          visible_name: Acción urgente
                        - id: 59bfaf693f62fab3018b458e
                          color: '#2e7d32'
                          order: 12
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Solucionado
                        - id: 59bfae6e76e456ba018b458e
                          color: '#b71b1c'
                          order: 13
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Cancelado
                        - id: 5a0af0078d85d085268b4941
                          color: '#964848'
                          order: 14
                          typology:
                            id: 59bfadfe566d72b8018b45c6
                            color: '#ebc113'
                            description_legend: 'Ej: farola fundida'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                            location_type: geolocation
                            order: 1
                            public: true
                            typology_description: Tengo un problema con un elemento en la calle
                            visible_name: Aviso
                            with_authorized_users: false
                            with_description: true
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Acción urgente
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: true
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: true
                          field: id_document
                        - available: true
                          field: gender
                        - available: true
                          field: birthday
                        - available: true
                          field: addresses
                        - available: true
                          field: address
                        - available: true
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: true
                        service_survey: false
                        alerts: false
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: true
                        planning: false
                        users: false
                        predetermined_response: true
                        predetermined_response_external_source: true
                        company_enquiry: false
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: true
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: https://mapa.mejoratuciudad.org
                        google_play_manager: >-
                          https://play.google.com/store/apps/details?id=com.radmas.iycp.production&hl=es
                        google_play_citizens: >-
                          https://play.google.com/store/apps/details?id=com.radmas.iyc.rivas
                        app_store: >-
                          https://itunes.apple.com/us/app/rivas-ciudad/id1353778065?l=es&ls=1&mt=8
                    - only_registered_users: true
                      automatic_typology: false
                      map_layers: []
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: true
                          id: 5cc6a0b08d7a6a0b0b8b45ad
                          name: Beta Tester
                        - external: false
                          id: 5cc861a93bf9fe84028b4567
                          name: Engineering
                        - external: false
                          id: 5cc861b93bf9fe84028b4568
                          name: Relaciones Laborales
                        - external: false
                          id: 5cc861e3a9d7dac5028b456c
                          name: Corporate Security
                        - external: false
                          id: 5cc861f8a9d7dac3028b4567
                          name: E.E. Premises
                        - external: false
                          id: 5ccc08f85f727eab018b457f
                          name: Arquitectura de comunicaciones
                        - external: false
                          id: 5cdd7a20c2845124028b464f
                          name: Analytics
                        - external: false
                          id: 5d271c65fc79a364108b4567
                          name: Ciudad BBVA
                        - external: false
                          id: 5d271ca929f5f2b3108b4567
                          name: Tablas II
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: false
                          id: 66f181e36dcd478d33032775
                          name: sdfsdf
                        - external: false
                          id: 66f326b19cdb7da2b50c3ac5
                          name: testing
                        - external: false
                          id: 66f481b99ae3acf15d059a25
                          name: nombre interno
                        - external: true
                          id: 66f483759ae3acf15d059a27
                          name: prueba icono
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      geo_bound:
                        - lat: 40.502887795975
                          long: -3.6619293179218
                        - lat: 40.498302888397
                          long: -3.6667787518207
                      geo_perimeter:
                        - lat: 40.500554590351
                          long: -3.6620687927906
                        - lat: 40.502887795975
                          long: -3.6636030163471
                        - lat: 40.501664096852
                          long: -3.6667787518207
                        - lat: 40.498302888397
                          long: -3.6638819660847
                        - lat: 40.500244577902
                          long: -3.6619293179218
                        - lat: 40.500244577902
                          long: -3.6619293179218
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png
                      id: 5be19ecb9a35c4850a8b45b1
                      jurisdiction_elements:
                        - map_layers: []
                          extent:
                            - -3.6667787518207
                            - 40.498302888397
                            - -3.6619293179218
                            - 40.502887795975
                          id: 5c9b557e9650e67d42985e8d
                          location_additional_data: {}
                          name: Ciudad BBVA
                          type: building
                          visible_name: Ciudad BBVA
                          is_main: false
                        - map_layers: []
                          extent:
                            - -3.6667787518207
                            - 40.498302888397
                            - -3.6619293179218
                            - 40.502887795975
                          id: 660d46ad18087d2d470eaf91
                          location_additional_data: {}
                          name: Ciudad BBVA 660d46adc832e6.51113816
                          type: building
                          visible_name: Ciudad BBVA 660d46adc833f5.13762285
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 67d2f0e0fc4bb2132e0b912d
                          name: crack2
                          type: building
                          visible_name: crack
                          position: {}
                          is_main: false
                      jurisdiction_id: bbva
                      locales:
                        - es
                      name: BBVA
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17719
                          options:
                            - inperson
                            - internal
                      lat: 40.50222
                      long: -3.664439999999999
                      tags:
                        - name: Generales
                          color: '#33691e'
                          id: Generales
                        - name: Economía
                          color: '#dc4949'
                          id: Economía
                        - name: Educación financiera
                          color: '#337ab7'
                          id: Educación financiera
                        - name: Prensa
                          color: '#ffc107'
                          id: Prensa
                        - name: New Digital Business
                          color: '#ef6c00'
                          id: New Digital Business
                        - name: Podcast
                          color: '#2100fc'
                          id: Podcast
                        - name: Deep Talks
                          color: '#8c0000'
                          id: Deep Talks
                        - name: Data
                          color: '#12348c'
                          id: Data
                        - name: Blink
                          color: '#8200b0'
                          id: Blink
                        - name: Aprendiendo Juntos
                          color: '#00abab'
                          id: Aprendiendo Juntos
                      timezone: Europe/Madrid
                      typologies:
                        - id: 687e0b58fa8fd18ece0f2682
                          location_type: indoor
                          order: 1
                          public: true
                          typology_description: test
                          visible_name: test entrada
                          with_authorized_users: false
                          with_description: false
                          with_files: false
                          with_geolocation_data: false
                          with_medias: false
                          with_temporality_data: false
                      typology_nodes: []
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: false
                          field: user_location_area
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: false
                        requests_process: false
                        requests_comments: false
                        requests_worknotes: false
                        requests_reiterations: false
                        requests_complaints: false
                        user_evaluation: false
                        service_survey: false
                        alerts: true
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: false
                        planned_requests: false
                        planning: false
                        users: false
                        predetermined_response: false
                        predetermined_response_external_source: false
                        company_enquiry: false
                        layer: true
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                    - only_registered_users: true
                      automatic_typology: false
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5ef5b9cd250e00dc038b45c2
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Badajoz_municipios
                          name: Municipios de Badajoz
                          description: Municipios de Badajoz
                          preset: true
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      max_export_requests: 1000
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: false
                          id: 5e2f5e21fee15c120d8b457b
                          name: Solicitantes Internos
                        - external: false
                          id: 5e2f61effee15c140d8b456b
                          name: Gerentes de la ciudad
                        - external: false
                          id: 5ef5e311a1caa852048b4595
                          name: Técnicos
                        - external: false
                          id: 5ef5e39742e5644a048b457e
                          name: Jefe de Servicio
                        - external: false
                          id: 5ef5e3a99b223c04048b45b0
                          name: Jefe de Sección
                        - external: false
                          id: 5ef5e3bc42e5644b048b4586
                          name: Jefe de Negociado
                        - external: false
                          id: 5ef5e3e59b223c01048b459a
                          name: Inspectores
                        - external: false
                          id: 5f118a9997738e54038b456b
                          name: Director Área
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      company_emails:
                        - comentarios.diputacionbadajoz@mejoratuciudad.org
                      geo_bound:
                        - lat: 39.987837369009
                          long: -4.5318640833973
                        - lat: 37.816494059746
                          long: -7.5791748548941
                      geo_perimeter:
                        - lat: 39.889411949849
                          long: -6.9505126710133
                        - lat: 39.676468316954
                          long: -7.4473389173941
                        - lat: 39.659554731756
                          long: -7.5791748548941
                        - lat: 39.345114847579
                          long: -7.4542273646473
                        - lat: 39.064178872272
                          long: -7.1795691615223
                        - lat: 38.619214816105
                          long: -7.3223914271473
                        - lat: 38.318155166718
                          long: -7.3223914271473
                        - lat: 38.067754619103
                          long: -7.1026648646473
                        - lat: 37.989869151544
                          long: -6.6082800990223
                        - lat: 37.816494059746
                          long: -5.9161414271473
                        - lat: 37.868549471038
                          long: -5.4547156458973
                        - lat: 38.171473050432
                          long: -5.2679480677723
                        - lat: 38.498941797075
                          long: -4.9053992396473
                        - lat: 38.867711059667
                          long: -4.6966590052723
                        - lat: 39.260101408865
                          long: -4.5318640833973
                        - lat: 39.709494950913
                          long: -4.6417273646473
                        - lat: 39.819279707201
                          long: -4.9493445521473
                        - lat: 39.987837369009
                          long: -5.3009070521473
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5f0f2d3adc0fb.png
                      id: 5ef5a95e9b223cfb038b4599
                      jurisdiction_elements:
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                              id: 5ef5b9cd250e00dc038b45c2
                              is_default: false
                              color: '#000000'
                              internal_name: zones_prod:Badajoz_municipios
                              name: Municipios de Badajoz
                              description: Municipios de Badajoz
                              preset: true
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: ADMINISTRATIVE
                          extent:
                            - -7.455137
                            - 37.897487
                            - -4.516035
                            - 39.542157
                          id: 5ef5b89fa1caa84b048b4659
                          location_additional_data: {}
                          name: Diputación de Badajoz
                          type: city
                          visible_name: Diputación de Badajoz
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 680f2381e5d6ac77af0cc8d6
                          name: Acedera
                          type: city
                          visible_name: Acedera
                          position:
                            address_string: C. Bo. Nuevo, 2, 06730 Acedera, Badajoz, Spain
                            lat: 39.076439
                            long: -5.5717741
                          is_main: false
                      jurisdiction_id: es.dip.badajoz
                      key_name: Badajoz, España
                      locales:
                        - es
                      name: Diputación de Badajoz
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17716
                          options:
                            - inperson
                        - id: 5850de88e22c6d9f51b17717
                          options:
                            - ios
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                        - id: 60c09cdccdf34808168b4573
                          options:
                            - android
                      lat: 38.8757766
                      long: -6.9710277
                      tags: []
                      timezone: Europe/Madrid
                      typologies: []
                      typology_nodes:
                        - id: 5ef9beb69b223c75068b4568
                          color: '#af85f2'
                          order: 1
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Solicitada
                        - id: 5ef9bf919b223c77068b4570
                          color: '#e89e68'
                          order: 3
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En Consulta
                        - id: 5ef9bfec42e564ee068b4579
                          color: '#8a7529'
                          order: 4
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En distribución
                        - id: 5ef9c026a1caa856078b4575
                          color: '#52849c'
                          order: 5
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Pte Asignar
                        - id: 5ef9c055a1caa85a078b4571
                          color: '#8c949c'
                          order: 6
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Planificado en Ejecución
                        - id: 5ef9c0b3a1caa856078b4576
                          color: '#2997c4'
                          order: 7
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: En ejecución
                        - id: 5ef9c0de42e564e9068b4592
                          color: '#33b79f'
                          order: 8
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Pte Validar ejecución
                        - id: 5ef9c12d9b223c76068b457e
                          color: '#96d97c'
                          order: 9
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Pte de comunicar
                        - id: 5ef9c1c5250e00be068b457e
                          color: '#439425'
                          order: 10
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Solucionado
                        - id: 5ef9c1ea9b223c72068b4579
                          color: '#d12a2b'
                          order: 11
                          typology:
                            id: 5ef9bbb742e564ea068b4573
                            color: '#337ab7'
                            icon: >-
                              https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5ef9bbb786155.png
                            location_type: geolocation
                            order: 1
                            public: false
                            typology_description: >-
                              Solicitudes que hacen los Ayuntamientos de los
                              Municipios de Badajoz a su Diputación
                            visible_name: Solicitudes
                            with_authorized_users: false
                            with_description: false
                            with_files: true
                            with_geolocation_data: true
                            with_medias: true
                            with_temporality_data: true
                          visible_name: Cancelado
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: false
                          field: user_location_area
                        - available: true
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: true
                        requests_process: true
                        requests_comments: true
                        requests_worknotes: true
                        requests_reiterations: true
                        requests_complaints: true
                        user_evaluation: true
                        service_survey: false
                        alerts: true
                        inventory: false
                        backoffice_admin: true
                        app_configuration: true
                        notifications: true
                        planned_requests: true
                        planning: false
                        users: false
                        predetermined_response: true
                        predetermined_response_external_source: false
                        company_enquiry: false
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: null
                        google_play_manager: null
                        google_play_citizens: null
                        app_store: null
                    - only_registered_users: true
                      automatic_typology: false
                      map_layers: []
                      max_export_requests: 0
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      geo_bound: []
                      geo_perimeter: []
                      id: 65cbca92492f30e31e0fb362
                      jurisdiction_elements:
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcb2969fa6d719202fd73
                          name: Prueba 2
                          type: city
                          visible_name: Prueba 2
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcb30aeabfa9e4c0e7612
                          name: Prueba 1_copy
                          type: city
                          visible_name: Prueba 1_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcc02595fa0a3e40f2bc2
                          name: Prueba 1_copy_copy
                          type: city
                          visible_name: Prueba 1
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcc46ac9522ce4b0d5113
                          name: Prueba 2_copy
                          type: city
                          visible_name: Prueba 2_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcd46251452d35907c782
                          name: Prueba 2_copy_copy
                          type: city
                          visible_name: Prueba 25
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcd621ecf6e5c620b9782
                          name: Prueba 1
                          type: city
                          visible_name: Prueba 1
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcecb77c0b76c6e0078e2
                          name: Prueba 2_copy_copy_copy
                          type: city
                          visible_name: Prueba 25_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbced06eb3abe623020473
                          name: Prueba 2_copy_copy_copy_copy
                          type: city
                          visible_name: Prueba 25_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbced6264d0c595f0e7e53
                          name: Prueba 2_copy_copy_copy_copy_copy
                          type: city
                          visible_name: Prueba 25_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcedb86c2c2ba3000f3d2
                          name: Prueba 1_copy_copy_copy
                          type: city
                          visible_name: Prueba 1_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcee529b9fc7f8d0241d2
                          name: Prueba 1_copy_copy_copy_copy
                          type: city
                          visible_name: Prueba 1_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbceeb74c4b572a0027822
                          name: Prueba 1_copy_copy_copy_copy_copy
                          type: city
                          visible_name: Prueba 1_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcef577c0b76c6e0078e3
                          name: Prueba 1_copy_copy_copy_copy_copy_copy
                          type: city
                          visible_name: Prueba 1_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf0077c0b76c6e0078e4
                          name: Prueba 1_copy_copy_copy_copy_copy_copy_copy
                          type: city
                          visible_name: Prueba 1_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf1674c4b572a0027824
                          name: prueba 3
                          type: building
                          visible_name: prueba 3
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf245f26d3767503ebf2
                          name: prueba 3_copy
                          type: building
                          visible_name: prueba 3_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf2a29b9fc7f8d0241d3
                          name: prueba 3_copy_copy
                          type: building
                          visible_name: prueba 3_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf2f86c2c2ba3000f3d3
                          name: prueba 3_copy_copy_copy
                          type: building
                          visible_name: prueba 3_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf356eb3abe623020474
                          name: prueba 3_copy_copy_copy_copy
                          type: building
                          visible_name: prueba 3_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf3b74c4b572a0027825
                          name: prueba 3_copy_copy_copy_copy_copy
                          type: building
                          visible_name: prueba 3_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf4086c2c2ba3000f3d4
                          name: prueba 3_copy_copy_copy_copy_copy_copy
                          type: building
                          visible_name: prueba 3_copy_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf465f26d3767503ebf3
                          name: prueba 3_copy_copy_copy_copy_copy_copy_copy
                          type: building
                          visible_name: prueba 3_copy_copy_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf576eb3abe623020476
                          name: prueba 4
                          type: city
                          visible_name: prueba 4
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf5d74c4b572a0027826
                          name: prueba 4_copy
                          type: city
                          visible_name: prueba 4_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf6277c0b76c6e0078e5
                          name: prueba 4_copy_copy
                          type: city
                          visible_name: prueba 4_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf675f26d3767503ebf4
                          name: prueba 4_copy_copy_copy
                          type: city
                          visible_name: prueba 4_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf6d264d0c595f0e7e54
                          name: prueba 4_copy_copy_copy_copy
                          type: city
                          visible_name: prueba 4_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf9577c0b76c6e0078e6
                          name: prueba 4_copy_copy_copy_copy_copy
                          type: city
                          visible_name: prueba 4_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcf9b74c4b572a0027827
                          name: prueba 4_copy_copy_copy_copy_copy_copy
                          type: city
                          visible_name: prueba 4_copy_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcfa186c2c2ba3000f3d5
                          name: prueba 4_copy_copy_copy_copy_copy_copy_copy
                          type: city
                          visible_name: prueba 4_copy_copy_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcfaa6eb3abe623020477
                          name: prueba 3_copy_copy_copy_copy_copy_copy_copy_copy
                          type: building
                          visible_name: prueba 3_copy_copy_copy_copy_copy_copy_copy_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcfc086c2c2ba3000f3d7
                          name: prueba 5
                          type: building
                          visible_name: prueba 5
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcfcb6eb3abe623020478
                          name: prueba 5_copy
                          type: building
                          visible_name: prueba 5_copy
                          position: {}
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcfe786c2c2ba3000f3d9
                          name: holiwis
                          type: city
                          visible_name: holiwis
                          position:
                            lat: 40.229227625609
                            long: -3.5371983858877
                          is_main: false
                        - map_layers: []
                          extent: []
                          guided_module: false
                          id: 65cbcffe6eb3abe62302047a
                          name: zona
                          type: building
                          visible_name: zona
                          position: {}
                          is_main: false
                      jurisdiction_id: evo.subprojectos
                      key_name: evosubp
                      locales:
                        - es
                      name: Para Borrar
                      origin_devices: []
                      lat: 40.416787
                      long: -3.703353
                      tags: []
                      timezone: Europe/Madrid
                      typologies: []
                      typology_nodes: []
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: false
                          field: user_location_area
                        - available: false
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: false
                        requests_process: false
                        requests_comments: false
                        requests_worknotes: false
                        requests_reiterations: false
                        requests_complaints: false
                        user_evaluation: false
                        service_survey: false
                        alerts: false
                        inventory: false
                        backoffice_admin: false
                        app_configuration: false
                        notifications: false
                        planned_requests: false
                        planning: false
                        users: false
                        predetermined_response: false
                        predetermined_response_external_source: false
                        company_enquiry: false
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                    - only_registered_users: false
                      automatic_typology: false
                      map_layers: []
                      max_export_requests: 0
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: true
                          id: 64a6834f03c986eb3501a745
                          name: Calidad del Airesss
                        - external: true
                          id: 661e95eaeb35f140a7080dc7
                          name: Canal de Prueba
                        - external: false
                          id: 66fdb90f2ca719888d0f975b
                          name: externo
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                        - external: true
                          id: 670e94b76e0a4db3c407cfd5
                          name: emprendedores
                      company_emails:
                        - comentarios.ingame@radmas.com
                      geo_bound:
                        - lat: -1
                          long: -180
                        - lat: 1
                          long: 180
                      geo_perimeter: []
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/66c5d56569743605092528.png
                      id: 664e1f9aa51b300e700a5088
                      jurisdiction_elements: []
                      jurisdiction_id: es.madridingame
                      key_name: Madrid
                      locales:
                        - es
                      name: Madrid In Game
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17715
                          options: []
                      lat: 40.41688
                      long: -3.70321
                      tags: []
                      timezone: Europe/Madrid
                      typologies: []
                      typology_nodes: []
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: false
                          field: user_location_area
                        - available: false
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: false
                        requests_process: false
                        requests_comments: false
                        requests_worknotes: false
                        requests_reiterations: false
                        requests_complaints: false
                        user_evaluation: false
                        service_survey: false
                        alerts: false
                        inventory: false
                        backoffice_admin: false
                        app_configuration: false
                        notifications: false
                        planned_requests: false
                        planning: false
                        users: true
                        predetermined_response: false
                        predetermined_response_external_source: false
                        company_enquiry: false
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: https://mejoratuciudad.org
                        google_play_manager: https://google.com
                        google_play_citizens: https://play.google.com
                        app_store: https://itunes.apple.com
                    - only_registered_users: true
                      automatic_typology: false
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis.mejoratuciudad.org/geoserver
                          id: 672b8aae101e99aca10ec857
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:RADMAS_MADRID_geofence
                          name: geofence
                          description: geofence
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: GEOFENCE
                        - backend: OWS
                          endpoint: https://gis.mejoratuciudad.org/geoserver
                          id: 683db3588994c58f4e039612
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:RADMAS_MADRID_planta_00
                          level: 0
                          name: '0'
                          description: '0'
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: BASE
                        - backend: OWS
                          endpoint: https://gis.mejoratuciudad.org/geoserver
                          id: 683db63dca9a19635c0eb863
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:RADMAS_MADRID_planta_03
                          level: 3
                          name: '3'
                          description: '3'
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: BASE
                        - backend: OWS
                          endpoint: https://gis.mejoratuciudad.org/geoserver
                          id: 683dc0e8314c1438860a9ea2
                          is_default: false
                          color: '#000000'
                          internal_name: buildings:RADMAS_MADRID_poi_planta_03_aseos
                          level: 3
                          name: Aseos
                          description: Aseos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis.mejoratuciudad.org/geoserver
                          id: 683dc1a6544e2499980adf93
                          is_default: false
                          color: '#000000'
                          internal_name: >-
                            buildings:RADMAS_MADRID_poi_planta_03_ascensores_y_escaleras
                          level: 3
                          name: Ascensores y escaleras
                          description: Ascensores y escaleras
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis.mejoratuciudad.org/geoserver
                          id: 683dc2015f214c1fe507eca2
                          is_default: false
                          color: '#000000'
                          internal_name: >-
                            buildings:RADMAS_MADRID_poi_planta_00_ascensores_y_escaleras
                          level: 0
                          name: Ascensores y escaleras
                          description: Ascensores y escaleras
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                        - backend: OWS
                          endpoint: https://gis.mejoratuciudad.org/geoserver
                          id: 683dc25f5f214c1fe507eca3
                          is_default: false
                          color: '#000000'
                          internal_name: >-
                            buildings:RADMAS_MADRID_poi_planta_03_salas_de_reuniones
                          level: 3
                          name: Salas de reuniones
                          description: Salas de reuniones
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: POI
                      max_export_requests: 0
                      accepted_id_documents: []
                      buttons: []
                      channels:
                        - external: false
                          id: 5e2f5e0601394ae00d8b456c
                          name: Mi trabajo
                        - external: true
                          id: 6707a5e435d16ea8ba023694
                          name: Arte
                      geo_bound:
                        - lat: -1
                          long: -180
                        - lat: 1
                          long: 180
                      geo_perimeter: []
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/683db6687f3fe479045025.png
                      id: 672b8603101e99aca10ec823
                      jurisdiction_elements:
                        - map_layers:
                            - backend: OWS
                              endpoint: https://gis.mejoratuciudad.org/geoserver
                              id: 672b8aae101e99aca10ec857
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:RADMAS_MADRID_geofence
                              name: geofence
                              description: geofence
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: GEOFENCE
                            - backend: OWS
                              endpoint: https://gis.mejoratuciudad.org/geoserver
                              id: 683db3588994c58f4e039612
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:RADMAS_MADRID_planta_00
                              level: 0
                              name: '0'
                              description: '0'
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: BASE
                            - backend: OWS
                              endpoint: https://gis.mejoratuciudad.org/geoserver
                              id: 683db63dca9a19635c0eb863
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:RADMAS_MADRID_planta_03
                              level: 3
                              name: '3'
                              description: '3'
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: BASE
                            - backend: OWS
                              endpoint: https://gis.mejoratuciudad.org/geoserver
                              id: 683dc0e8314c1438860a9ea2
                              is_default: false
                              color: '#000000'
                              internal_name: buildings:RADMAS_MADRID_poi_planta_03_aseos
                              level: 3
                              name: Aseos
                              description: Aseos
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis.mejoratuciudad.org/geoserver
                              id: 683dc1a6544e2499980adf93
                              is_default: false
                              color: '#000000'
                              internal_name: >-
                                buildings:RADMAS_MADRID_poi_planta_03_ascensores_y_escaleras
                              level: 3
                              name: Ascensores y escaleras
                              description: Ascensores y escaleras
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis.mejoratuciudad.org/geoserver
                              id: 683dc2015f214c1fe507eca2
                              is_default: false
                              color: '#000000'
                              internal_name: >-
                                buildings:RADMAS_MADRID_poi_planta_00_ascensores_y_escaleras
                              level: 0
                              name: Ascensores y escaleras
                              description: Ascensores y escaleras
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                            - backend: OWS
                              endpoint: https://gis.mejoratuciudad.org/geoserver
                              id: 683dc25f5f214c1fe507eca3
                              is_default: false
                              color: '#000000'
                              internal_name: >-
                                buildings:RADMAS_MADRID_poi_planta_03_salas_de_reuniones
                              level: 3
                              name: Salas de reuniones
                              description: Salas de reuniones
                              preset: false
                              public: true
                              tags: []
                              token: 489780ae-39e0-40bf-93e3-57565431454a
                              type: POI
                          extent:
                            - -3.743738
                            - 40.368987
                            - -3.741763
                            - 40.370237
                          guided_module: false
                          id: 672b8860101e99aca10ec855
                          name: Rad+
                          type: building
                          visible_name: Rad+
                          is_main: false
                      jurisdiction_id: org.radmas
                      locales:
                        - es
                      name: Radmas
                      origin_devices:
                        - id: 5850de88e22c6d9f51b17718
                          options:
                            - android
                            - internal
                      lat: 40.4167387
                      long: -3.7032914
                      tags: []
                      timezone: Europe/Madrid
                      typologies: []
                      typology_nodes: []
                      user_info:
                        - available: true
                          field: first_name
                        - available: true
                          field: last_name
                        - available: true
                          field: email
                        - available: true
                          field: phone
                        - available: false
                          field: secondary_phone
                        - available: true
                          field: twitter_nickname
                        - available: false
                          field: id_document
                        - available: false
                          field: gender
                        - available: false
                          field: birthday
                        - available: false
                          field: addresses
                        - available: false
                          field: user_location_area
                        - available: false
                          field: address
                        - available: false
                          field: id_documents
                      modules:
                        requests: false
                        requests_process: false
                        requests_comments: false
                        requests_worknotes: false
                        requests_reiterations: false
                        requests_complaints: false
                        user_evaluation: false
                        service_survey: false
                        alerts: false
                        inventory: false
                        backoffice_admin: false
                        app_configuration: false
                        notifications: false
                        planned_requests: false
                        planning: false
                        users: false
                        predetermined_response: false
                        predetermined_response_external_source: false
                        company_enquiry: false
                        layer: false
                        jurisdiction_element: false
                        webhook: false
                        user_guide: false
                        worklog: false
                        calendar: false
                      app_urls:
                        web_url: null
                        google_play_manager: null
                        google_play_citizens: null
                        app_store: null
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                message: latitude or longitude not provided
  /jurisdictions/{jurisdiction_id}:
    get:
      tags:
        - Jurisdiction > Jurisdiction
      summary: Jurisdiction Detail
      operationId: jurisdictionDetail
      description: >-
        **Request Params**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | Jurisdiction_id | String | \[requerido\]  <br>jurisdiction_id de mongo
        de la jurisdicción de la cual se desean obtener los elementos de
        jurisdicción (ejemplo org.alcobendas). |


        Este endpoint permite obtener los detalles de una jurisdicción
        específica, donde `{jurisdiction_id}` es el jurisdiction_id de mongo de
        la jurisdicción. Además de los datos básicos de la jurisdicción, el
        endpoint carga su tipología y sus nodos tipológicos. Opcional `app_key`
        para validar el contexto de aplicación y autorizar la adhesión; si es
        inválido/no permitido o el usuario no puede unirse, **400**.
      security:
        - bearerAuth: []
      parameters:
        - name: app_key
          in: query
          schema:
            type: integer
          description: >-
            Int. [optional]. (1234555) Permite restringir la operación a la
            aplicación indicada. Si no se envía, la acción se ejecuta sin filtro
            ni validación por aplicación.
          example: '1234555'
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                channels:
                  '2':
                    external: true
                    id: 5e2f5d97e8833f980e8b456a
                    name: Atención Ciudadana 02
                  '13':
                    external: true
                    id: 64a6834f03c986eb3501a745
                    name: Calidad del Airesss
                  '27':
                    external: true
                    id: 6707a3e935d16ea8ba023692
                    name: Taxista
                  '28':
                    external: true
                    id: 6707a490ff6dc1826d02d533
                    name: Bombero
                  '29':
                    external: true
                    id: 6707a4d16fb710a4340702e3
                    name: Turista
                  '30':
                    external: true
                    id: 6707a53ce360bb733d012834
                    name: Vida sana
                  '31':
                    external: true
                    id: 6707a56935d16ea8ba023693
                    name: Turismo
                  '32':
                    external: true
                    id: 6707a59be360bb733d012835
                    name: Ocio
                  '33':
                    external: true
                    id: 6707a5be6fb710a4340702e4
                    name: Danza
                  '34':
                    external: true
                    id: 6707a5e435d16ea8ba023694
                    name: Arte
                  '37':
                    external: true
                    id: 670e83a2be3d8d43720fc222
                    name: externo prueba
                  '39':
                    external: true
                    id: 670e90553ae05dcb6f088352
                    name: interno de prueba sin icono
                  '42':
                    external: true
                    id: 671173ec2395a6b7df0bf935
                    name: prueba231213232
                  '46':
                    external: true
                    id: 671ffea1405a78e44f089123
                    name: buenas
                  '47':
                    external: true
                    id: 672cbeb8b52e10d5900e6042
                    name: Canal_obligatorio
                  '48':
                    external: true
                    id: 672cc15beb6d0d86b20b80b2
                    name: canal_obligatorio
                  '49':
                    external: true
                    id: 672cde444b419fd019011795
                    name: Prueba Global Channels
                  '50':
                    external: true
                    id: 672d084c1daef4e30c09b762
                    name: CANAL_OBLIGATORIO
                  '51':
                    external: true
                    id: 6738a3b069ce60555305a215
                    name: global channel
                  '53':
                    external: true
                    id: 6738ab9a69ce60555305a217
                    name: canal global 3
                  '54':
                    external: true
                    id: 6738ac474d2e5d4fa405a573
                    name: canal global 4
                  '55':
                    external: true
                    id: 673b2f790800c3a3200781c2
                    name: asdasd
                  '57':
                    external: true
                    id: 673db80cff77ca803d07e126
                    name: Test 1
                  '58':
                    external: true
                    id: 673db84068b70779b5011b8e
                    name: Test 2
                  '59':
                    external: true
                    id: 673db8696b60131e9c0210a7
                    name: Global Externo
                  '61':
                    external: true
                    id: 682201462e7c5fccfd005939
                    name: prueba1
                  '62':
                    external: true
                    id: 6822018233b2a2d5910ba782
                    name: prueba1 epg
                  '65':
                    external: true
                    id: 68c00ca5a50dbd22a304a205
                    name: empadronado
                only_registered_users: false
                max_upload_files: 5
                automatic_typology: false
                map_layers:
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 5d9ee7bcde2efef4018b4569
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 64cb9cebaddc18074d0e4193
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 64cb9e98addc18074d0e4195
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 64cb9edb24ab2d777a0ca313
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 64df24ef07a26e434d01f893
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 667031dac97737f437009da6
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e93a7fca30a7b0d7e04
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e94a7fca30a7b0d7e0c
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e94a7fca30a7b0d7e0d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletass
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e94a7fca30a7b0d7e0e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e94a7fca30a7b0d7e0f
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e94a7fca30a7b0d7e11
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e9cfc8304ec890065d6
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e9cfc8304ec890065de
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e9cfc8304ec890065df
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e9cfc8304ec890065e0
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e9cfc8304ec890065e1
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55e9cfc8304ec890065e3
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55eb3a7fca30a7b0d7e13
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55eb3a7fca30a7b0d7e1b
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55eb3a7fca30a7b0d7e1c
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55eb3a7fca30a7b0d7e1d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55eb3a7fca30a7b0d7e1e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 66f55eb3a7fca30a7b0d7e20
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 670802e62f9d4a71cd06a755
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 670802e62f9d4a71cd06a75d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 670802e62f9d4a71cd06a75e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 670802e62f9d4a71cd06a75f
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 670802e62f9d4a71cd06a760
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 670802e62f9d4a71cd06a762
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67096bc2ffc05a02a10aeb01
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67096bc2ffc05a02a10aeb09
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67096bc2ffc05a02a10aeb0a
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67096bc2ffc05a02a10aeb0b
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67096bc3ffc05a02a10aeb0c
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67096bc3ffc05a02a10aeb0e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834b8890a3779c2073c94
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834b8890a3779c2073c9c
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834b8890a3779c2073c9d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletass
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834b8890a3779c2073c9e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834b8890a3779c2073c9f
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834b8890a3779c2073ca1
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834e03ccfc90eab0a4843
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834e03ccfc90eab0a484b
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834e03ccfc90eab0a484c
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834e03ccfc90eab0a484d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834e03ccfc90eab0a484e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678834e03ccfc90eab0a4850
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678837b72bdfe4fd820c4af3
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678837b72bdfe4fd820c4afb
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678837b72bdfe4fd820c4afc
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletass
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678837b72bdfe4fd820c4afd
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678837b72bdfe4fd820c4afe
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 678837b72bdfe4fd820c4b00
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fa592bdfe4fd820c4b04
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fa592bdfe4fd820c4b0c
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fa592bdfe4fd820c4b0d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletass
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fa592bdfe4fd820c4b0e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fa592bdfe4fd820c4b0f
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fa592bdfe4fd820c4b11
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fab5deaa23504a049c38
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fab5deaa23504a049c40
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fab5deaa23504a049c41
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletass
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fab5deaa23504a049c42
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fab6deaa23504a049c43
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fab6deaa23504a049c45
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe6867c09c2f2f0909c5
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe6867c09c2f2f0909cd
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe6867c09c2f2f0909ce
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletass
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe6867c09c2f2f0909cf
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe6867c09c2f2f0909d0
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe6867c09c2f2f0909d2
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe7fe05c80a755015855
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe7fe05c80a75501585d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe7fe05c80a75501585e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletass
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe7fe05c80a75501585f
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe7fe05c80a755015860
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788fe7fe05c80a755015862
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788feb7f9371c00d10b1b93
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788feb7f9371c00d10b1b9b
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788feb7f9371c00d10b1b9c
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788feb7f9371c00d10b1b9d
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788feb7f9371c00d10b1b9e
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 6788feb7f9371c00d10b1ba0
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67e7425479962014f00e34e3
                    is_default: false
                    color: '#000000'
                    internal_name: zones_prod:Alc_Distritos
                    name: Distritos
                    description: Distritos
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: ADMINISTRATIVE
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67e7425479962014f00e34eb
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    name: Aparcapatinetes
                    description: Aparcapatinetes
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67e7425479962014f00e34ec
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcabicicletas
                    level: 8
                    map_layer_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    name: Aparcabicicletas
                    description: Aparcabicicletas
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                    mapLayerIcon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67e7425479962014f00e34ed
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                    name: Aparcamientos (PMR)
                    description: Aparcamientos (PMR)
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67e7425479962014f00e34ee
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_puntos_recarga
                    name: Puntos de Recarga
                    description: Puntos de Recarga
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: POI
                  - backend: OWS
                    endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                    id: 67e7425479962014f00e34f0
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:alcobendas_poi_aparcapatinetes
                    name: MAINTENANCE PRUEBA
                    description: MAINTENANCE PRUEBA
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: MAINTENANCE ASSET
                accepted_id_documents:
                  - idSpain
                  - NIE
                  - passportEU
                  - curpMex
                  - quiron_NHC
                  - residenceCard
                buttons:
                  - design:
                      icon:
                        color: '#000000'
                      background:
                        color: transparent
                      size: 70
                      color: '#000000'
                      format: transparent
                      char: e843
                    icon: >-
                      data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAYAAAA9zQYyAAAXMUlEQVR4Xu2dBfQtNxHGv+KuB3eX4lDcXUpxKK4HLe7W0uJQnFKsuBV3p1hxKO5QpHgpLgfn/GjCS9Pce7OSzW7u5Jx33vv/3252M/l2Mpn5ZrKTrJkEGpLATg2NxYZiEpAB2kDQlAQM0E1Npw3GAG0YaEoCBuimptMGY4A2DDQlAQN0U9NpgzFAGwaakoABuqnptMEYoA0DTUnAAN3UdNpgDNCGgaYkYIBuajptMAZow0BTEjBANzWdNhgDtGGgKQkYoJuaThuMAdow0JQEDNBNTacNxgBtGGhKAgbopqbTBmOANgw0JQEDdFPTaYMxQBsGmpKAAbqp6bTBGKANA01JwADd1HTaYAzQhoGmJGCAbmo6bTAGaMNAUxIwQDc1nTYYA7RhoCkJGKCbmk4bjAHaMNCUBAzQTU2nDcYAbRhoSgIG6Kam0wZjgDYMNCUBA3RT02mDMUAbBpqSgAG6qem0wRigDQNNScAA3dR02mAM0IaBpiRggG5qOm0wBmjDQFMSMEA3NZ02GAN0eQwcX9IJgsf8UdLfyz92O59ggC4z78eSdCVJe0i6mqQTB4/5jaS3SXqupC9J+neZV9jOXg3Q48478ryopL0l7ZrR9Ssk7SXphxnX2iUZEjBAZwgp85JTSHqIpHtGGhkTA038V0knkXTpqD809p6SXizpb5nPsstWSMAAPRwayPAykp4paZfItHiSpJdL+pX7PdeeTdJ9JN1WEh+Bb2+RdH9JPxr+StvbgwF62NwfV9JdJT0+0Mpo5OdJepqkw9d0f1ZnmtwuuObbku4n6X2S/jPs1bbzbgN0/3lHuz7WmRi+ly9LeqCkgzIByebx5pKeIOksrhM+iEdKeqGZIN0nxwDdXWbccV5Jz5J0zeD2Vzob+hc9ukz1h5Z/tCRsbGuZEjBAZwoqsIEvK2k/SRcONOpTnInBxq9vS2l8s6s7StMAnS+wY0jaXdJzgs0cG7gHS3rTSP7klE3+CbeJPCT/Vbf3SgN03tyfUNIDHHh9kOQzku4l6QsbukDGN5B0a6fFP51x/bUl7R/Y1WN/OHmjXuBVBujNk4Z9+9QoUPIuB+YcF9t5JB3oTJSXuejhnzc/9n+uQEDtTRtu2VfSE82uXi09A/Rq2bD830zS4wJN2QdUaOZXucd80/X59QxAcwmej2dIulFw/eckPcJ5UixsHgnSAH10ZK0KX6ONAdLrJf0zE5B8FGwYCaT4dhdJB2Tez2WQm4g+EiIPOSEWNk8I0QC9Qyg+ivcoSTeNwPNOZz9/qwMQuZSo4GslXSq4r4vZ4W/bFI18iaQjOr5bk5cboCW8FwDu7m5pD7Ugkbt9nBejD89iN8esC8FD8OUWkui7a2NzSmSSjy4Mm+Orxi+O1mYl2doo47YCGhCfSdINJd1Z0gUjZOWGr9cB8jiS4HLAz6D9XNLp3L9vI+nVXdEcXJ8Km/v/ZjWhb8Lnvx3wjEXeui2ABsCnlXQJSddyHGW8D3EDyJCJ4GEMpXSe3gHrypLYDGJqoFlZAV7ggD4kEMPcXUjSQyXdcgX6PirpQ24D+TVJv18kSju8dIuARjOeWhKAvbikK0giuhcu0bGIWKbhTrzUadIOIlx56TUkvd/9L2CGr0E4++qShpgd8QPXMfjiazFzPiXpYElfkXSo0+LNeEuWBugTScJzgMZl2cWmPIcktOHFnJsLgn1OA8Rvdz5igiS5noucvo/piEsPdxfj2QDUkJn874aaHan3wCPCB0zf19vwEfv7PV/7+5LY9H7Hgfx3kg5zF/3F8blzxl71mjkDGk17EUnXd+lM/DvcsHUVnNdOH5D0SUk/GRnE4ftgK7NBQxuHvudQa49hdqyTAfLjY7+ipKu6ja9n9HWVHdez8cQHDpPwHW5TOzvNPkdAo4Fv7DRZvFnLnQjA+0UHXCaBn9E4U+3+LyfpPe4DDN10AOo1zgQa0+zIkQur2ikl7exMsUsOBPnHnQcIgM8G2HMDNCYEZPn7rpkhwOlDzt+T9GO3TJIVws/s7MfMqkbTdV0ZCKSQVkULAymx5wMPCwmzuQ3gYCKMaR5hpgB0fOZ4fvhzZknndKbduaJIafiuvAvBpueP/E658jjadXMCNO8CEEhl8u2rLmz8bud1+FPvkfa78TTO9oUs1KelQt2sPrDz+jayxcldHOIh6fps5uZkjldC0Amvit9kA2p+5zfAXfse9fo5ATok8TBIMqchBeUQeUYVStAZXhLsRe8/7vqcVFQwHmfXPqc2VVLvx4Ycr413F75B0t3m4PeeC6B5DwIQ+H9pL3I/1wQz74EJxJLKn64NzwlcaWzNsOEBuaOkBznXYpd+57TEn0ESWTpXcWYQBCp83lXbXAAdegWIqBHB+2xVyex4OJspzARYdz4YA7Ag+hMJ5N9jN4JA7CXuFHSMZoZ/jYdmqs3tpnGxB6D8Ag1aKylj/9p0U8n/nwugQ6/AG91Gam5RrRQvui9padWcMh9xihfXQj4icbZPvmJJ/ITkq4+4JIaflXzgpr7nAmjMjae7lyUzBA7wHBvejodJunfg+ehDK02NLUUTnXsRmtBrw0p1HUmkjFVrcwA0hQxhiuHeolET7mPVJLL5wZggTBz2fsgHGZJNkiLyAwxqdJDiNRcTIyUd6orAf6HBWCRgVK3NAdAhiYfJIxEVf/Lc29ldSlSYTdIVhKs+Djgfj9lQqGYu8qG0GS47Vi9WVlawMeMAncY5B0DDGMNuxoE/V/t5lVAxEygsg1/YB1+6pFmRPIunwN+LiYHJBf1zzOBJJ1B0vDiMflafvzkAOuQ3VP/CO04mlyNDSuY+W9L53P2Xz7Ql8d0SZaN92IGZwo5Laid1ng6CK9V95HMAdLghrG6D9URSuMrgVrtVZtHFMHAzCy9Bj/HH4XyqSUEAq9JqA/p4bnNFEiht7hvCVZMUatouq0yo3fASzCI40QOJ4fgJQuGTrtJqAzrcEMLboHBh10TUKoILHko0EX7FHdzvsIvhWYcNsg8sN7w3cfQzXKEITBBQmbNXIyVvKKpkx9DYExAAKhFw2jjXtQENhfGtjitRfUOxUVrpCwAqXAbs59jciKOMeANImQrt5NDseK+rG/3rnu9S67aatNijjLkmoGP+xlK1Uxj+Dc0N2Ghkp8DZCFscLInNjurBiR5fBd4exo7pQbuJpDf36GfwLTUBfXJXcAW7can2Y8rcgJ2H1oUGS0h/VaNeB9qaNKfQ7MANCDiWZnaEH3bpbJyVQq0J6NAHS9lYBLK0tPuQCgq7DjsaFx61PMKkXKKI+JbxV4cZ2iQrAGCSEyD6Q9JaqukV8jqgA+DG+/xglduxg1qARjvzFVM7jta1PFbHYRa7PKxbB1GJZFI2tr4BWEoXsPySbUJ6GWMNAc/qhA0O+QliEmxD8ig3VTUtNqieHXMaARx2T7WFGgChqk+Bnp6vcGRQYOrGM5lUygbQCChwgM5Pp36Rgc+L7ca4O1Yd7GdKBYSN8W8ySeZM0FonNuqesMKwSaySyVID0AQhXue8Agya0lb8vLS2KvOEMaGp4GOsS5NatWlEDlVdXwMmguQFPkYKVFZRVlMDmhw9TA3sZ1qVZWnAhIW3pnIDyTCHIUcxl5xNXSp5gGd819mgFINZWovnmA+bvcMk2UdTAhqPAF+ujwpSNBzTY26k9RwAxeFe7hlCwk8x90oUoskZ2xjXEPGFUurrgMDAQ3kVJ1xNBWg2DOzmSVmisQu+fRBdGkOIU/fB+5OG9Q9nK1NvY8gGKGTu0SdeAvYXS2zgCm8OxCuYhJhh8HRwVeasXL3HPBWgQxfdZIPrLZW8GzEXzu9cbv6k2Lw7V1/FfHB8Mnl5U5dsGPru8f2xEsOtyeYfc6pYmwLQYXYwAyEiiKYuvvwUk5p1nCuB2D1bfM80BaBDXy3BA8Kjv8yVyIyvCysqUe2UzZBvx5Z0AUlcs6qxUuGnDrOkMcX+4HzWY1dIqiVKOC5UdaWofJfkh17vOwWgQ2oh5Jw9Si87vSRx1JswJ+BYUE7gjA6cRPE4kepUknIrnI7wKuIYOEAOeZ6gC3WeKTRJdjW/L2qTjjCAcINYPGg0BaBJrcKv6s8ZmdtBkpTopY4b9jDcCwpEDq10OgIOsrqA6ATQCTHjKoR6S6H2KcuErXpRsBWft1jchTcFoBlw7MZhqWXXC4d2Sg3DRgWNi4al1C28i1Ql/yw0BRd5YOGd8I3fwfFOFV4hAMGHE/I9MFNYAdYVZs99LyqvftAVNgfsuEanrBCKnPECQbLy+ZKE9yn/UNTcnArQTAQkcMLdHkBTJIQyPmxbeNcEQjgeokuNZD48MtDhL7PE8zPLPFqQTS3FcGKg4H6jNENuw1aOs6QBBEDgb+rIUSgRmxyzh49xXUXQ1HN5b85cwfdP8KckCSxVPo3SbviimfOibUpAMxCq7JNM6mmVTOYYB7+HQgIE53YnvwLi8Ei1VcL0xdCZbLSqr2IP0Dy4+BAoO8sHCdggE5FxA4DHMlFCTe9LBUP2p7o+mg1N6zeL4dEbPL9LvWdq0FEBFUIV9vhYqyR7DuYT95xvFHXkT3ORQj/AVFGVoV8wmziABrGcCNs6MwLQMKEUUSTDBDDj8wWYaEOAijbk42OHPoZJMrZWwqTwRd05lfYbjtzFB8hmlvemXgYHJKE81tW3xj/MSbeQivho+oI7paxg27EqDwk4dZLd1Bravxx2IueN+DA4v8cDQqHzLjmFBCF2dfY4Z4ukGhoNAJPexLKLRuID4LgGlm/KKHCu9tjATdnV/v3G1OrhmAE6m0PsZ/7tx8qKxZ4BWbFvWNXQ2GzcyEDP3ViCIZI0KOXmzTncj1ReZRWY0navQh/1woQbDID9UWf8PqfCJgKETE5xdJa21CbKHwgEDxkzgs2an9QcrRVPeGhLc7QF/lSW0DH9xim/NoEJ3htThw0jgOny4fnViA/af8xoa3jXHP656mAhxkVYH+/UuigocwhbksRevwrkzGEnrdvl4loa2r8jmhIzgcLm/utetVnkWmxFOMapc/m4D64AVFRK8bI52TRxoaz8aVD4fdkEsowzsXMLcAB8zArMI6i4LPX8wcTY1OIPHe3JHoN61WjZ2DRBppiDaG2O/ghbapWFA046mT8yZNP7jP7/tQHtBxTbX/ye8DibCexbTAM0eVhHzt+LLQwJhuUSdxgamOgky+u6BnAh/1BagGAFG64lh+MBOjQDPnrMC8yodQEgPlRkxikDxAa4nwRd3Kmx+eZP1qWoJsERvCyUbqCojG9+vqqUL/AvMRdA8z6pzSLLJGlNMZD9ia9wq/FI7OKWvpSW8WNl84Pbij7xZOTaiKNrkQk7RJMDaoCHx2eVuYImxrygeLmXJ7U14pWQ6w50Kx8mEG1OpwpUtaFT88qSR04aPstUC5dAbFk08T0SZ3V7Qftzr/FmlPS9TojR3o/yPnnOLASoq1Ywv+JRLIcTsdjcQWVNeUrYW5DQgJLo6x3pPaDUjXPS0P79UlEmtADa2POPyRDHVos3hPEyOonvc9QZma4zNpzrzDPAirxx6eFvR8lQC9q3Pl6p4qObI6AZNO/FMslmkQAD55vggmJHnQKy1yocdrntmrgraLzmRgsj3/iwUzZ42M6YI5gZ1BJhgwgNuHjkr89gut5T43p29GiKsHAL2phdNRtC7ONJ/Z2BEPz54/yK1QWiE7yM3MYqQijdv3/Nc7Vxw3GqFfZzbJLM5ui2dYKdq4aO3xkgH+x+6TeEEF9+UNB2C0PeUEaJHuIPxotAQGescPeq+fGBGQAecknglOCRSfFIcj+iTdelXKTVaz9vemm/tOdcV/uaENBjl5nyZ2AT8ma5xWPC0jol57mvfHE9HuL+kCGOeTbmmeZ8wFR8wtY2QPedpcR9YwIaVxbalj5ZXjdxHXKGgZ1Jrlxo9gCAI9bc7M/T9peMRR/lXTDBWNHw7hAg6uuiNEDnzH6Pa4YAmogh5gFkc0K9XTSvX/YJdaP9CMCgAT19tFQU0Zs7BDuwyaGPQjgi5N8nAQHeOeelEwLHB597qI8BugdYc27pAujQ30rtPMg469hmPB/gos0g9qBZ0WqHzzzzms0ofmJMJUqLEfqGQpozVgJMBEg2+ecN0Dno7HFNDqDxqxK65TjhdYwyHo/GglHGhMJKwzSo5SXpIY6Vt6DZ4SRDJeDgIkLgm8LfaG0onqnTBQzQY85O0FdY5T4sKs4EQq7Bf2ph77Tw+dDZ6JKtkxv+ZoXiA0fb7+dYjV0OQyoEg83dLsVt56sKQaUkIwJ3HcVrCLsyWXHzHGh8pwcNJK5vluJyrsCjg5lyXcdyXLWSEcqmYDvkLUhO0Hzhkx8wdwLXUgDtIYP/Fw40yZYpoo3nbjAhFjFc/6H5vcZuLssnlSABl5xoLXLt6ymZ9HNfEqDjJFsvKNxUaA7YYvx7FiSZSWdx+MN8WTOKZ6aSJqCXwp+B3zHrthRAp4qLw994sjMpFqE9Zo2EHS/HKsh+hOKaIa9jT5c2N+thLAXQvCcpV9h1NMgykGQmS76c9SyWeTmYjPBkcH2yJ0FzU8pt1m0pgEaIIUEJ0wIuNEuhtTIS2N258/B0LIKYhBiWBGjeNTybZTFCLoO3or2GyqPKWSl9R7ckQDNGWG+Qk3xK1mSV4fsKeIH3xSctjE0GKyqSpQEaYZBCBDeasliL0h5FZ3KczsEDphweIxo0ANK14LIsoi0R0HFleIROXiE8DGv9JRBXC13kSQtLBDRTFleGhy6JfQ0bzlp3CYADqLQcfOTro1CmgNOrFuUSXSqgmTIihQRUfFoWoCZ1aGknsHaH37h3xJqZ3icpfTvuMI7sbcmA5v3D4w74uVpNtRKTM0Gf5BBS3DKs47zoY0OWDmjmfGfn+QhL9JJ+TyWfqlV8JgDkkEdAM6UmHXRb39DMZNUv7Zjq/w+gBUAzmFTVJYg1FK2BbdcC13kIeMN70crUEySUHRK8qF83y9IEXQbeCqAZMxEt/NIw8cKsDQo47usyp7cZ2HiHOBqESkgkvfpGtg7gpu7G4qkELQGaCYI1hp+aIo8xT7pP7eMuymGu166roY1M9nJZO02wFFsDtAcV0S6yWKhYGpcLY+NI3WjK7rZatBG35rpSwtBA93EFyRevlUNN0iqg/Rg5ENMnBKw6LIj8QvLqsLVJPRqzrsUUWtvXFSF3kDQrsttX5RHyAe/vam1w+FFzrXVA+wmDT81ko7U3ZYGHdS2oWER5WZJo51A7OjwoiDxLskzQxOuOgvMl00iExVc/h3EU+5C2BdChAP1yTF5dl3MK/UE9aDnqclCSC21+2Mizg8aF7YbZxDkwVP7seoAR70oOIBVC8fZsTRXWbQR0bHKh3dB2m5brkXE7andLN5tGE8a2AzolSH+8G3YoFZco4FK6MGPuhOJiQ+NyOiwhfkwigiC5lZByn7PY6wzQeVOXOszeVyKlJh2usfjQnlS9O/+0VB07f2gRZCAqjlKEEdsdj8ShrrrTEg6rz5NooasM0IUEa93WkYABuo7c7amFJGCALiRY67aOBAzQdeRuTy0kAQN0IcFat3UkYICuI3d7aiEJGKALCda6rSMBA3QdudtTC0nAAF1IsNZtHQkYoOvI3Z5aSAIG6EKCtW7rSMAAXUfu9tRCEjBAFxKsdVtHAgboOnK3pxaSgAG6kGCt2zoSMEDXkbs9tZAEDNCFBGvd1pGAAbqO3O2phSRggC4kWOu2jgQM0HXkbk8tJAEDdCHBWrd1JGCAriN3e2ohCRigCwnWuq0jAQN0HbnbUwtJwABdSLDWbR0JGKDryN2eWkgCBuhCgrVu60jAAF1H7vbUQhIwQBcSrHVbRwIG6Dpyt6cWkoABupBgrds6EjBA15G7PbWQBAzQhQRr3daRgAG6jtztqYUkYIAuJFjrto4EDNB15G5PLSQBA3QhwVq3dSTwX1iMovHEUcWzAAAAAElFTkSuQmCC
                    button_code: 56b4962b6aa9180b158b4567
                    label: Policía
                    news_collection: []
                    optional: false
                    phone_collection: []
                    sequence: 0
                    social_collection: []
                    url: '914904070'
                    url_collection: []
                  - design:
                      icon:
                        color: '#000000'
                      background:
                        color: transparent
                      size: 70
                      color: '#000000'
                      format: transparent
                      char: e894
                    icon: >-
                      data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAYAAAA9zQYyAAAPAElEQVR4Xu2dd8w1RRWHf1iDRrFECUYiBo2FiIUAGgsgGDRYULCLBbGAvYGVqgIqNhRUsKCoiKAooiLYSxQk2MWgqH9YUFGxoYAlD8z6zbvsvTtb5r33zv4mefMl352d2XPmmbNnZ2bP2Ugu1kBBGtioIFksijUgA20IitKAgS5qOC2MgTYDRWnAQBc1nBbGQJuBojRgoIsaTgtjoM1AURow0EUNp4Ux0GagKA0Y6KKG08IYaDNQlAYMdFHDaWEMtBkoSgMGuqjhtDAG2gwUpQEDXdRwWhgDbQaK0oCBLmo4LYyBNgNFacBAFzWcFsZAm4GiNGCgixpOC2OgzUBRGjDQRQ2nhTHQZqAoDRjooobTwhhoM1CUBgx0UcNpYQy0GShKAwa6qOG0MAbaDBSlAQOdfzg3kfR3SVfm78o9GOj8DDxe0l6SXi/pywY7r8INdF790jpAnxi6+aqkwyR90WDnUbyBzqPXuNUY6Or/AftISWdL+lf+W5hODwY6/1g3AW2wM+ndQGdSbNRsDPQpkm4jadtat+cGi/0pW+xhA2Kgh+kv5eoY6CdIAupdJB00A2xeHgH7spTGXWetBgx0fiLqQH8wdHn9APYBku7bYLENdo+xMdA9lNbxkllAV83MA/v7ko6Q9HFb7DStG+g0PQ2p1QZ01fZ1JO0g6SWSdq11CNhHBXeFTRqXGRow0PnRSAXaYI8wFgZ6BCW2NNEFaKz0rSU9SNJDJd1b0o0a2v9JWBU5OWyr55diRXow0PkHah7Q6H9TSdtJeoSkHcOy3ry7Ol/SGZI+K+k7BtqrHPkRXttDHejTJN1N0gMl7Sbp7i03hDU+M0B8nqQ/SvrveguxKv3ZQucfqRjoiyTdYoYbUd0JwGKBPy3pK5J+K+k/+W+zjB4MdP5xnLf1Te9/lfT54EJ8SdLPfHCp/6AY6P66S72yCWiOkWKBAZkluctTG3O9+Row0PkJiYFmjfk4SZfm73aaPRjo/OPeZdku/90U3oOBzj/ABjq/jv/fg4HOr2wDnV/HBnoddWyg11HZttD5lW2g8+vYFloS5ya2knTTzPpmO5vD/JRDJLHWvF7lirAs+Jf16nDR/UzVQt9D0lvD4Z9Fj0Hu/n8p6YXhTHXxW+ZTBHqLEFaAk2xTKUC9p6Rvly7wFIF+tKSTwsASTuCsgnfq7ilp9yDryyUdbqDL08CUXtJiWQ8MQW7KG9FIoilaaANdMNJTB/opkk4o+HyxLXTBk7cSjU+bPhHJyfnjo0MwxVI+QCUswtsl3SWScx9J7y59fKdooW8s6U2S9q4NbikDTvje48OqRiUiE/gZki420GVq4IaSnijpSZK2DyKW8tJ0c0kEsyEUAp9vHRsAL+XpM5fIKVroWCEl+pgx0IQeqyI1lWmaalIZ6A2xm8e20GytbylpG0mbR3rn65RzJP0g00F/Az2JqdssZA4LXbkz+9Zeyup3wLeEBG4kht0FI660GGgDfZUGxrDQfc6IADaHlo4ZKX6dgTbQg4HGddtJ0ntqgWL4APajkr4p6aeSWIFgKY2gMjvXwhkA9P4jBI4x0AZ6MNAcdOLli2DmFFYXDpV06owA5kyA20p6taTHRvp/W4B6SGxoA22gBwFN4Jh3Snp40OPnJD0v+MVtqt04AHxwqIj78fTo8FTb9U2/G+g+WivkmjFeCp8a1nlRybcksZ3+4w764SXydZL2C9eQSIg18t90aCOuaqB7Kq6Ey4YCzdcubCdX1rnvum/9jPYekj7WU8EGuqfiSrhsKNCsMZ8uabOQoq2vZcWnfkEIao5e2Zp/ac9z2gZ6Ccm8VlgR4N+chdWGd4UO+izbxR8LsPTGX9/PnDiMj/9NPGiijTLZLukhfAw0/nhfS5/S9T9GWmpM6SupzrLtFOJPMgi8VFUrBkmCjFCpzxcdWNU3hr77uhvVrd8uvAxi9b8ricnCaknXEgPd9do+9cnY9Zrw/tB3Mvfpt/GaZQJ61im40YSd0xCrCyyfEca2S3lVWJ7jmqFAxyAOARqjwPLfk7sIMrAuR3CfJekjA55QA2/h6suXCeh4tWAU4RIbwQris/Jyd2XiNVW1MYG+VVjLJuzBEKC5t9sHq0lQ9aaUFh3FTKr+9TCpf5FUO1OlZQEapXMgfa8QL5mlL1KZLXug7/ilklABTIy+ZetwtgMYid1B27/u29g6XXez8CJbPQ0eJumT69T3Ursc8eN2VQYThbJD+JlgBT8QHru4L31KPDmGttWn/77XLNU3mstioWOgh7zh9x2UvtfFbgIbIY8JaSS6tsd6NruNjwwXDrX2XfsfUt9AN2hvVYG+dgjzhS9NwU3iU6ffdyAEowIUWGUKu4yA/cMObSyyqoEuCGhEuUN4u79rkOstkl6ReGqu6ZQey4dshf97kZR26NtAFwY0ULLk945oReHDkgBz3hs/Ob4fJ+kNkni5oqzix6wGujCgEYfPrV4UEs1X4rE2ixvxIUkXhs+tbiDpJuHs9NMkEW6gKn0ONnUwpNmqGugCgUYkLC67nOyadV37xfdm15GgiqtWDHShQCMW7geZYTnT8eAEMrHiHPLnPMmqhhkw0AUDXYmGCwLYRGmqpz8GYvITcmiIXIWrHozcQE8A6LqI1enBfy7b6bSEp0hbFQM9QaDboFjl3w20gV5lfq9x7wbaQBvoXBrwWY5cmp1Ou7bQttBF0W6gDbSBzqUBuxy5NDuddm2hbaGLot1AG2gDnUsDdjlyaXY67dpC20IXRbuBNtAGOpcGltHl4DQacSmuyCW02x1VA4QT5mQhZWiwncE3toxADxbKDSxMAwY6qH6947EtbMQL79hANwDNt3V8xtQ3YEvhzCydeIQuO8gux9pxWdW4HEtH1wJuyKscXuVYAHb5ujTQBjofXQto2UAb6AVgl69LA22g89G1gJYNtIFeAHb5ujTQ6wA0cTFYOSFvyXWj/gjmQoriP69D6gTuYUtJ9wl/hN7lnv4k6Q+SvhH+SJ98eT7ermr5eiGa0+aSSFmBDtDF30bo10BnAppdzztKImYc2a3mJR0CIqIVnSzpdyMMatwEwOwZYt2R17utEP7raEnv65n1alb7t5S0u6RHhbziTfVIx0EucnKj/KhnxgQDnQFoLA8htcgT2KWMGYqLCXUvSW+WtG2Xmwh1geuVIaLSkFQcnK14vqRnRlFNU26HiKlHSvpex6eXgR4RaCDaNUBEnOa4nB8OOV0Q/pPg5MRw3r7BenfJz90EB+4FA0uKtyo0LvWwvoT7Oiu4GtW1ROwHfkKFxffN7iixoY/qEWFp6ITi3pjgTKrjOiRQMtAjAc0AksuPZEMVRAwIAcffH2BqyptHWK47SyLtA65BFSmULXdSk52XYs6iOsCMNXxt1Na5IWDjF1rA5NqdwlZ/bNVpi7/UAI7ogvTMTKjY1cK1OjFMKmJVVz4zPjUuCX3u3RBY8uAwsS5L0IWBHgnoHSSdEA0gIWlfLOmihEGgChDcP1jDKvp+1xjNTcHOj5FEigomV2phUhEgnXTIVdk/AJoSyb+uC54MWNpTEyz9rIip3AtPirZUdwZ6BKDvJOm9wX2guWMlHdDzQFO9LV6SyJPCakRbqV/bxbLV264HTQdKYCH/37xSvwfqc/9dc7TUJxXuD08efOt5GWIN9ECgCSzOaTwi5lPGSONQt3AELj++ZSDr94HfSdDyVDehCVJWSPCh9ws/4jo9Z07I3Y1D/WeH+l2fMPV7qPefkkzTQA8EejtJp0naLGSMIpUab+ZDCo/dfaJE9meHFRNStc0q8X3whQ15VshgNbRsEfxeciBiJfGNiSfdVHYOmbewrtwr55Hx24eUTUOKOZJoUtqSGBnoAUDX06i1KbvLwDJBsIi7hIv2CEtoTW0wAch0dVjioHe5D9p+bli54Tqy0+LP1jdfeEJgzalL4SWSc8ltPm/KvdxP0knBaGD1maw/n3GhgR4AdJzocux8foCEy8CL0DyQ+G2T4JKwSoJlfEiP1ZF5YG0VNjzwj2dl1o3TyXEPbKKck0JrQp36ZJk3uQ30AKC3kXR6sBw50gfH7eN2kHatKYkmO5LsMrITeEbIUZ7yEpnA0lVV4tznsyYMa9i8P1By6ILdVlZJKIeHlZumFRcDPQBo1p15FFIOjB75qaC01YufAKzhsm1cbczE1+Lffi3Bkrf1N+t3nha4D9WnTU1J4V8W3AzawPUCujFLPGlPCe8YlzZ0YKAHAM1yFAkuKTk+yIwtI31wsKhp2Sy2jjkmFn3Pk5WNkSOCi5RLF2yhk2ORd4pZbg99G+gBQLNhcWhGoFkG4yUMmOYBHQ9iLqDngZJ6n0MsdvydJ6s4PB05b1IvBtpAJ3FmoJPUtLbSMgaaOTM8xi5pkMcW+mql2ELPgN1Ar1VMKih2OTbozS6HXY6kZ6ldjiQ12eWYpyZb6A3a8UthjwlVXZIaOck+tH3ouZjZh7YPPQsQW2hb6AEa6La+m+oaDbkhAz1Ae3Y5DPQAfDZcapfDLoddjlGm0tpGbKFtoUfByhbaFtoWepSpZAvdpkZvrLRpqOF3W2hbaFvoHhOn7RL70Pah2xhJ+t0W2hbaFjppqnSrZAttC92NmBm1baFtoW2hR5lKXuVoU6NXOdo05FWOVg2lnpHwAf8NqvQB/was7EPbh261NikV7EPbh7YPnTJTOtaxhbaF7ohMc3VbaFtoW+hRppJXOdrU6FWONg15laNVQ17l2KAif7HSisvsCrHyiEdMhH6CfdcL0UDJQ0g5JMRcG9DtNS4lZty+ITQtPxJJvymI+Y5RIEUi9xMDbuwS91GXNfU+h9wTcf6IgU3WsAuDvn/V0GB8nzniDXaSYRl96E4CuPJSacBAh+Egbx8xjndbquHxzXTVgIEOGuNJsbWkB0gi7YTL6mng4pDvpSmG9LpJsywux7oJ7I7K1oCBLnt8JyedgZ7ckJctsIEue3wnJ52BntyQly2wgS57fCcnnYGe3JCXLbCBLnt8JyedgZ7ckJctsIEue3wnJ52BntyQly2wgS57fCcnnYGe3JCXLbCBLnt8JyedgZ7ckJctsIEue3wnJ52BntyQly2wgS57fCcnnYGe3JCXLbCBLnt8JyedgZ7ckJctsIEue3wnJ93/AEJMJgCf7SVcAAAAAElFTkSuQmCC
                    button_code: 56b4962b6aa9180b158b4568
                    label: Web Municipal
                    news_collection: []
                    optional: false
                    phone_collection: []
                    sequence: 1
                    social_collection: []
                    url: http://www.alcobendas.org
                    url_collection: []
                company_emails:
                  - comentarios.alcobendas@mejoratuciudad.org
                geo_bound:
                  - lat: 40.588856338396
                    long: -3.5502024713465
                  - lat: 40.501207353774
                    long: -3.701564402238
                geo_perimeter:
                  - lat: 40.524463274111
                    long: -3.6659115545395
                  - lat: 40.523955219525
                    long: -3.6659362768742
                  - lat: 40.523461366455
                    long: -3.6656992902163
                  - lat: 40.52326078878
                    long: -3.6656280068925
                  - lat: 40.523044804662
                    long: -3.66558821055
                  - lat: 40.52291172678
                    long: -3.6656067275224
                  - lat: 40.522744581326
                    long: -3.6656448705613
                  - lat: 40.522625107122
                    long: -3.6656477025535
                  - lat: 40.522549572398
                    long: -3.665639045663
                  - lat: 40.522492007824
                    long: -3.6656542955615
                  - lat: 40.522370693067
                    long: -3.665726407344
                  - lat: 40.522291865918
                    long: -3.6657732034008
                  - lat: 40.522180360786
                    long: -3.6658157802193
                  - lat: 40.521965449952
                    long: -3.6658711459712
                  - lat: 40.521767113703
                    long: -3.6659127450926
                  - lat: 40.521512733465
                    long: -3.6659855456036
                  - lat: 40.5211091969
                    long: -3.6661779909293
                  - lat: 40.520899365774
                    long: -3.6655237946213
                  - lat: 40.520835203172
                    long: -3.6653237704792
                  - lat: 40.520828477784
                    long: -3.665302690758
                  - lat: 40.520801219936
                    long: -3.6652176600822
                  - lat: 40.52079396218
                    long: -3.6651951584983
                  - lat: 40.520532174069
                    long: -3.6643790908715
                  - lat: 40.519811022579
                    long: -3.6638772352364
                  - lat: 40.519674542806
                    long: -3.6637822753505
                  - lat: 40.520028743367
                    long: -3.6628457333653
                  - lat: 40.519861573965
                    long: -3.6627609794771
                  - lat: 40.519833907347
                    long: -3.6627468951405
                  - lat: 40.517896688038
                    long: -3.6617644622241
                  - lat: 40.517262060619
                    long: -3.6614426861503
                  - lat: 40.51435158061
                    long: -3.6596130457616
                  - lat: 40.513589017791
                    long: -3.6591337822098
                  - lat: 40.513533434727
                    long: -3.6591176567617
                  - lat: 40.513331969626
                    long: -3.6590590254128
                  - lat: 40.511832508634
                    long: -3.6586229674127
                  - lat: 40.511664680158
                    long: -3.65857422907
                  - lat: 40.511608040614
                    long: -3.6583798603314
                  - lat: 40.511456496681
                    long: -3.6578603206557
                  - lat: 40.513093057661
                    long: -3.6561454131097
                  - lat: 40.513014344281
                    long: -3.6557284550411
                  - lat: 40.512813872487
                    long: -3.6546680569859
                  - lat: 40.512794366777
                    long: -3.6545649383251
                  - lat: 40.512784307284
                    long: -3.6545118415444
                  - lat: 40.512783696082
                    long: -3.654508412506
                  - lat: 40.512697360066
                    long: -3.6543706611923
                  - lat: 40.512689221896
                    long: -3.6543600767316
                  - lat: 40.512664383691
                    long: -3.6543235977437
                  - lat: 40.512663133875
                    long: -3.6543215789562
                  - lat: 40.512648312904
                    long: -3.6542979454183
                  - lat: 40.512642241315
                    long: -3.6542883253616
                  - lat: 40.512640902083
                    long: -3.6542861876688
                  - lat: 40.512622688648
                    long: -3.6542570914483
                  - lat: 40.51260608135
                    long: -3.6542307257156
                  - lat: 40.512594921067
                    long: -3.6542129116302
                  - lat: 40.512573047573
                    long: -3.6541778780091
                  - lat: 40.512571618922
                    long: -3.6541756214143
                  - lat: 40.512555638186
                    long: -3.6541499700349
                  - lat: 40.512531531944
                    long: -3.6541114916755
                  - lat: 40.512516175769
                    long: -3.6540869087313
                  - lat: 40.512501713082
                    long: -3.6540636328902
                  - lat: 40.512486892725
                    long: -3.6540398814348
                  - lat: 40.512475821828
                    long: -3.6540221863185
                  - lat: 40.512458947563
                    long: -3.6539952279218
                  - lat: 40.512424663853
                    long: -3.6539403616726
                  - lat: 40.512385558984
                    long: -3.6538777762368
                  - lat: 40.512369489432
                    long: -3.6538518880625
                  - lat: 40.512236104304
                    long: -3.6536383622384
                  - lat: 40.512125486001
                    long: -3.653461177468
                  - lat: 40.51209843411
                    long: -3.6534178315094
                  - lat: 40.512064150052
                    long: -3.65336297765
                  - lat: 40.51204718688
                    long: -3.6533357826483
                  - lat: 40.512040580043
                    long: -3.6533252132781
                  - lat: 40.51203129537
                    long: -3.6533102505716
                  - lat: 40.512003171753
                    long: -3.6532652418242
                  - lat: 40.51195888833
                    long: -3.6531943443802
                  - lat: 40.511944693042
                    long: -3.6531715436644
                  - lat: 40.511927015155
                    long: -3.6531432794983
                  - lat: 40.511900855979
                    long: -3.6531013588919
                  - lat: 40.511884071578
                    long: -3.6530744018293
                  - lat: 40.51181353939
                    long: -3.6529614652345
                  - lat: 40.511798808219
                    long: -3.652937833167
                  - lat: 40.511795504448
                    long: -3.6529326075353
                  - lat: 40.51178425521
                    long: -3.652914556946
                  - lat: 40.511766934928
                    long: -3.6528867685274
                  - lat: 40.511692929614
                    long: -3.6527682509613
                  - lat: 40.511677394311
                    long: -3.6527434308227
                  - lat: 40.511663377101
                    long: -3.652720986132
                  - lat: 40.511636860765
                    long: -3.652678472213
                  - lat: 40.51161882575
                    long: -3.6526496146651
                  - lat: 40.511598559287
                    long: -3.6526170763923
                  - lat: 40.511585345477
                    long: -3.6525959379353
                  - lat: 40.511582131775
                    long: -3.6525907132103
                  - lat: 40.511570614896
                    long: -3.6525721879984
                  - lat: 40.511555704141
                    long: -3.6525484363254
                  - lat: 40.511547043955
                    long: -3.6525345422084
                  - lat: 40.511531062179
                    long: -3.6525090096366
                  - lat: 40.511507581302
                    long: -3.6524713647638
                  - lat: 40.511491867765
                    long: -3.6524461889285
                  - lat: 40.511477492824
                    long: -3.6524232687527
                  - lat: 40.511451334047
                    long: -3.652381230676
                  - lat: 40.511435352236
                    long: -3.6523556981768
                  - lat: 40.511388719408
                    long: -3.6523657514053
                  - lat: 40.511117673243
                    long: -3.6524239126423
                  - lat: 40.511074656382
                    long: -3.6517452796684
                  - lat: 40.510969358262
                    long: -3.6506713374725
                  - lat: 40.510825277064
                    long: -3.6492188422787
                  - lat: 40.510797102171
                    long: -3.6490383321687
                  - lat: 40.510773878055
                    long: -3.6489387234016
                  - lat: 40.510746060218
                    long: -3.6488389523923
                  - lat: 40.510680022854
                    long: -3.6486467465439
                  - lat: 40.510423203314
                    long: -3.6480000560664
                  - lat: 40.510360150364
                    long: -3.6478859008551
                  - lat: 40.510311556083
                    long: -3.6478120163628
                  - lat: 40.510253683071
                    long: -3.6477380426981
                  - lat: 40.510162066645
                    long: -3.6476408460809
                  - lat: 40.510054109404
                    long: -3.6475015908287
                  - lat: 40.51002414609
                    long: -3.6474629419194
                  - lat: 40.509986659478
                    long: -3.647432482994
                  - lat: 40.509856712425
                    long: -3.6473267861506
                  - lat: 40.509096491841
                    long: -3.6465484955631
                  - lat: 40.508845867808
                    long: -3.646290091404
                  - lat: 40.508741001774
                    long: -3.6461616115271
                  - lat: 40.508675592914
                    long: -3.6460817852013
                  - lat: 40.508594484198
                    long: -3.6459740712244
                  - lat: 40.508481719683
                    long: -3.6458241530746
                  - lat: 40.508446511382
                    long: -3.6457728262792
                  - lat: 40.508421812983
                    long: -3.6457430818301
                  - lat: 40.508374158757
                    long: -3.645678062297
                  - lat: 40.508318872628
                    long: -3.6455923144228
                  - lat: 40.508282409873
                    long: -3.6455236254481
                  - lat: 40.508217860324
                    long: -3.6454189042412
                  - lat: 40.508162790351
                    long: -3.6453266790213
                  - lat: 40.508029262999
                    long: -3.6451035037095
                  - lat: 40.507930456253
                    long: -3.6449060381621
                  - lat: 40.507882086206
                    long: -3.644809381014
                  - lat: 40.507920764346
                    long: -3.6447055316053
                  - lat: 40.508032765353
                    long: -3.6444273463991
                  - lat: 40.508067570565
                    long: -3.6443410458738
                  - lat: 40.50809420219
                    long: -3.6442988101075
                  - lat: 40.508060796319
                    long: -3.6442149255041
                  - lat: 40.50802174742
                    long: -3.6440443651733
                  - lat: 40.507999864319
                    long: -3.643913497263
                  - lat: 40.507937332715
                    long: -3.6434623813009
                  - lat: 40.507930249338
                    long: -3.6433916140489
                  - lat: 40.507934118692
                    long: -3.6433115091262
                  - lat: 40.507966398292
                    long: -3.6431446879893
                  - lat: 40.508072217771
                    long: -3.6427786269716
                  - lat: 40.50814056946
                    long: -3.6425241112124
                  - lat: 40.508173895483
                    long: -3.6423633186842
                  - lat: 40.508193344347
                    long: -3.6422031018003
                  - lat: 40.50818358637
                    long: -3.6420298590747
                  - lat: 40.508182270259
                    long: -3.6420073028417
                  - lat: 40.508148732162
                    long: -3.6415738140544
                  - lat: 40.508137792013
                    long: -3.6414510769688
                  - lat: 40.508112707513
                    long: -3.641344611302
                  - lat: 40.508060347408
                    long: -3.6411693225652
                  - lat: 40.508024017151
                    long: -3.6410600353649
                  - lat: 40.50799825535
                    long: -3.6410756060051
                  - lat: 40.50798513637
                    long: -3.6409070531201
                  - lat: 40.507967815894
                    long: -3.6406838127118
                  - lat: 40.507959380605
                    long: -3.6405803387165
                  - lat: 40.507946176049
                    long: -3.6404108409742
                  - lat: 40.507937430025
                    long: -3.6402967414509
                  - lat: 40.507919549031
                    long: -3.6400606308317
                  - lat: 40.507876451023
                    long: -3.6395300456392
                  - lat: 40.507873215724
                    long: -3.6392355320118
                  - lat: 40.507870795003
                    long: -3.6389401999362
                  - lat: 40.507869617758
                    long: -3.6388272348079
                  - lat: 40.507867652712
                    long: -3.6386285848063
                  - lat: 40.507867878214
                    long: -3.6385551727769
                  - lat: 40.50786973219
                    long: -3.6379748407148
                  - lat: 40.507869751085
                    long: -3.6379714180466
                  - lat: 40.507870983706
                    long: -3.6376011720695
                  - lat: 40.507871016044
                    long: -3.6375789828826
                  - lat: 40.507848238093
                    long: -3.6373803601197
                  - lat: 40.507826476333
                    long: -3.6346050882078
                  - lat: 40.507822256172
                    long: -3.6340609340687
                  - lat: 40.507819451704
                    long: -3.6337017449773
                  - lat: 40.507814621962
                    long: -3.6336789198939
                  - lat: 40.50780199679
                    long: -3.6336319435049
                  - lat: 40.507792333528
                    long: -3.6336034075464
                  - lat: 40.507782055196
                    long: -3.63357203311
                  - lat: 40.507768575868
                    long: -3.6335329566727
                  - lat: 40.507755342195
                    long: -3.6334983676656
                  - lat: 40.507736679988
                    long: -3.633451570608
                  - lat: 40.507720120924
                    long: -3.6334155339992
                  - lat: 40.507707968397
                    long: -3.6333973612352
                  - lat: 40.507700819851
                    long: -3.6333866713771
                  - lat: 40.507670252028
                    long: -3.6333259530107
                  - lat: 40.507651550232
                    long: -3.6332863672504
                  - lat: 40.507638191934
                    long: -3.6332416267007
                  - lat: 40.507631234603
                    long: -3.6331795961344
                  - lat: 40.507633457018
                    long: -3.6331357103153
                  - lat: 40.507633932659
                    long: -3.6331311116644
                  - lat: 40.507667137645
                    long: -3.63294068926
                  - lat: 40.507807830782
                    long: -3.632484767124
                  - lat: 40.507972476355
                    long: -3.6319482177899
                  - lat: 40.508107986232
                    long: -3.6314987463217
                  - lat: 40.508114868343
                    long: -3.6314757950905
                  - lat: 40.508282316832
                    long: -3.6309200282187
                  - lat: 40.508426696493
                    long: -3.6303648687906
                  - lat: 40.508394432371
                    long: -3.6298714484731
                  - lat: 40.508334805688
                    long: -3.629290418772
                  - lat: 40.508256449828
                    long: -3.6286408876616
                  - lat: 40.508250400727
                    long: -3.6285439286161
                  - lat: 40.508403038169
                    long: -3.6279906117949
                  - lat: 40.508457045546
                    long: -3.6278333090887
                  - lat: 40.508648017059
                    long: -3.6274218766436
                  - lat: 40.508655756919
                    long: -3.6274067228245
                  - lat: 40.508895337669
                    long: -3.626935769093
                  - lat: 40.508919403671
                    long: -3.6268837054316
                  - lat: 40.508945789444
                    long: -3.6268357944222
                  - lat: 40.50895470545
                    long: -3.6268197071705
                  - lat: 40.509077119022
                    long: -3.626555512411
                  - lat: 40.509181282036
                    long: -3.6263690477342
                  - lat: 40.509259989419
                    long: -3.6261253363995
                  - lat: 40.509312207925
                    long: -3.6259651807981
                  - lat: 40.509342694643
                    long: -3.6258087297871
                  - lat: 40.509418757545
                    long: -3.6253376630514
                  - lat: 40.509421927084
                    long: -3.6253179811519
                  - lat: 40.509410902075
                    long: -3.6252410399369
                  - lat: 40.509362375701
                    long: -3.6249020738221
                  - lat: 40.509347743091
                    long: -3.6248091649591
                  - lat: 40.509306051192
                    long: -3.6246389302827
                  - lat: 40.509266591322
                    long: -3.6244723873071
                  - lat: 40.509231499055
                    long: -3.6243311319995
                  - lat: 40.509209545531
                    long: -3.6242425227266
                  - lat: 40.509150902831
                    long: -3.6240246829469
                  - lat: 40.509099981767
                    long: -3.6238282787828
                  - lat: 40.509094853697
                    long: -3.6238102904892
                  - lat: 40.50908556873
                    long: -3.6237779818821
                  - lat: 40.509033306445
                    long: -3.6235963195845
                  - lat: 40.50903118489
                    long: -3.6235721035155
                  - lat: 40.509020615488
                    long: -3.6232267759089
                  - lat: 40.509024943879
                    long: -3.6227581137077
                  - lat: 40.509063617888
                    long: -3.6226363089988
                  - lat: 40.509150514577
                    long: -3.6223743745219
                  - lat: 40.509159055007
                    long: -3.6223609978817
                  - lat: 40.509234370851
                    long: -3.6222436624831
                  - lat: 40.50931040789
                    long: -3.6221262154554
                  - lat: 40.50939098653
                    long: -3.6220018462404
                  - lat: 40.509384116072
                    long: -3.6219895074415
                  - lat: 40.509453274437
                    long: -3.62191141903
                  - lat: 40.509458075607
                    long: -3.6219065060368
                  - lat: 40.509523928623
                    long: -3.6218399540772
                  - lat: 40.50953162838
                    long: -3.6218321170431
                  - lat: 40.50957470379
                    long: -3.621779518439
                  - lat: 40.509813057691
                    long: -3.6215324466909
                  - lat: 40.509880652617
                    long: -3.6214434838665
                  - lat: 40.509940984756
                    long: -3.6213464275916
                  - lat: 40.510007333613
                    long: -3.621221098742
                  - lat: 40.510032892343
                    long: -3.6211422524406
                  - lat: 40.510038663477
                    long: -3.6211244826947
                  - lat: 40.510125225132
                    long: -3.6208756410751
                  - lat: 40.510133123257
                    long: -3.6208141005642
                  - lat: 40.510154909023
                    long: -3.620599008761
                  - lat: 40.510166626415
                    long: -3.620480493309
                  - lat: 40.510169784892
                    long: -3.6204459386605
                  - lat: 40.510174203807
                    long: -3.6203947529269
                  - lat: 40.510176897261
                    long: -3.6203629087516
                  - lat: 40.510190056773
                    long: -3.6202106489686
                  - lat: 40.51019101893
                    long: -3.6201824478625
                  - lat: 40.510177094287
                    long: -3.6200240486953
                  - lat: 40.510141377778
                    long: -3.6196958233336
                  - lat: 40.510140346129
                    long: -3.6196866072425
                  - lat: 40.510131372195
                    long: -3.6195624716936
                  - lat: 40.510107931115
                    long: -3.6192632778462
                  - lat: 40.510101138749
                    long: -3.6190849852394
                  - lat: 40.510100384893
                    long: -3.6190743553193
                  - lat: 40.510083331066
                    long: -3.6188439157868
                  - lat: 40.510071084601
                    long: -3.6186914342239
                  - lat: 40.510059549274
                    long: -3.6184060421482
                  - lat: 40.510059313758
                    long: -3.6183995481629
                  - lat: 40.510063689905
                    long: -3.6183225127269
                  - lat: 40.510070002817
                    long: -3.6182707541603
                  - lat: 40.510090804592
                    long: -3.6181376857458
                  - lat: 40.51009295439
                    long: -3.6181063086585
                  - lat: 40.510096402613
                    long: -3.618067979532
                  - lat: 40.510097766248
                    long: -3.6180319919278
                  - lat: 40.510108157669
                    long: -3.6178913917388
                  - lat: 40.510106921884
                    long: -3.6178697803188
                  - lat: 40.510102699568
                    long: -3.617833859472
                  - lat: 40.510099294945
                    long: -3.6177966477686
                  - lat: 40.510098952904
                    long: -3.617793221667
                  - lat: 40.510086601893
                    long: -3.6177106031322
                  - lat: 40.510100607443
                    long: -3.6176859446726
                  - lat: 40.510104700374
                    long: -3.6176786641683
                  - lat: 40.510157571373
                    long: -3.6175611159789
                  - lat: 40.51023716457
                    long: -3.6173842058109
                  - lat: 40.510313256042
                    long: -3.6172219110861
                  - lat: 40.510361279785
                    long: -3.6171195440819
                  - lat: 40.510463389128
                    long: -3.6169267866048
                  - lat: 40.510505382591
                    long: -3.6168401804523
                  - lat: 40.510643187535
                    long: -3.6165253477002
                  - lat: 40.51069761419
                    long: -3.6164047430199
                  - lat: 40.51079288337
                    long: -3.6161936255496
                  - lat: 40.510812396899
                    long: -3.6161496592814
                  - lat: 40.510828203519
                    long: -3.6161064853028
                  - lat: 40.510855118117
                    long: -3.616009235111
                  - lat: 40.510919960257
                    long: -3.6157598310956
                  - lat: 40.51092813922
                    long: -3.6157127038499
                  - lat: 40.51094388954
                    long: -3.6155802949571
                  - lat: 40.510967717225
                    long: -3.6153521156499
                  - lat: 40.510968477499
                    long: -3.6153446864117
                  - lat: 40.51097795532
                    long: -3.6151550912104
                  - lat: 40.510975866068
                    long: -3.6150906251487
                  - lat: 40.510971751193
                    long: -3.6150512819832
                  - lat: 40.510970553453
                    long: -3.6150393495318
                  - lat: 40.510967588564
                    long: -3.6150209090256
                  - lat: 40.510962686404
                    long: -3.6149940703572
                  - lat: 40.51086988231
                    long: -3.6146746472521
                  - lat: 40.51076450004
                    long: -3.6144163818797
                  - lat: 40.510675569663
                    long: -3.6141983872418
                  - lat: 40.510462428361
                    long: -3.6142304363359
                  - lat: 40.510263646661
                    long: -3.6142066683839
                  - lat: 40.510055309912
                    long: -3.6140127276612
                  - lat: 40.509901268108
                    long: -3.6138411192833
                  - lat: 40.509643712921
                    long: -3.6134490396187
                  - lat: 40.509437898993
                    long: -3.6131699068859
                  - lat: 40.509297103649
                    long: -3.6129294920653
                  - lat: 40.509163368287
                    long: -3.6126147826132
                  - lat: 40.509085234551
                    long: -3.6123477926898
                  - lat: 40.5090382682
                    long: -3.6120643381046
                  - lat: 40.508975434056
                    long: -3.6117319810082
                  - lat: 40.508941360886
                    long: -3.6114462719851
                  - lat: 40.508946608086
                    long: -3.611237758515
                  - lat: 40.50892325366
                    long: -3.611190688104
                  - lat: 40.508860232649
                    long: -3.6110635984839
                  - lat: 40.508789187523
                    long: -3.6109206083383
                  - lat: 40.508686086576
                    long: -3.6107916093924
                  - lat: 40.508556819603
                    long: -3.6106889303676
                  - lat: 40.508400816762
                    long: -3.6104953620332
                  - lat: 40.508226000163
                    long: -3.6102989093614
                  - lat: 40.508032251041
                    long: -3.6101050008262
                  - lat: 40.507948894759
                    long: -3.6100412295144
                  - lat: 40.507866324215
                    long: -3.6099480643797
                  - lat: 40.507701182892
                    long: -3.609761734797
                  - lat: 40.50754426514
                    long: -3.6095705233826
                  - lat: 40.507499570636
                    long: -3.6095041406909
                  - lat: 40.507367900513
                    long: -3.6093085558406
                  - lat: 40.507225925868
                    long: -3.6090681458471
                  - lat: 40.506984729897
                    long: -3.6087159053261
                  - lat: 40.506817437014
                    long: -3.6084587452948
                  - lat: 40.506595413886
                    long: -3.6080732688075
                  - lat: 40.506435844744
                    long: -3.6077518687869
                  - lat: 40.506402414764
                    long: -3.6076846458575
                  - lat: 40.506261914413
                    long: -3.6073344914022
                  - lat: 40.506162918909
                    long: -3.6071263441822
                  - lat: 40.506139422096
                    long: -3.6070546083716
                  - lat: 40.506108387645
                    long: -3.6069600255942
                  - lat: 40.506055160583
                    long: -3.606871262206
                  - lat: 40.506019668887
                    long: -3.6068191288519
                  - lat: 40.506009119414
                    long: -3.6068036903843
                  - lat: 40.505891355585
                    long: -3.6066525119553
                  - lat: 40.50576901214
                    long: -3.6064984483862
                  - lat: 40.505622584806
                    long: -3.6063500697603
                  - lat: 40.50551849046
                    long: -3.606237716535
                  - lat: 40.50550013542
                    long: -3.6062178410639
                  - lat: 40.505487862484
                    long: -3.6062046297713
                  - lat: 40.505478233905
                    long: -3.6062025366539
                  - lat: 40.504976633862
                    long: -3.6060961656822
                  - lat: 40.504550195659
                    long: -3.6060189164578
                  - lat: 40.504465572673
                    long: -3.6060416414711
                  - lat: 40.504269579535
                    long: -3.6059839463031
                  - lat: 40.504099469109
                    long: -3.6058678152985
                  - lat: 40.503827782645
                    long: -3.6056571794517
                  - lat: 40.503800616122
                    long: -3.6056322684567
                  - lat: 40.503600500937
                    long: -3.605448242825
                  - lat: 40.50347341296
                    long: -3.6052708938233
                  - lat: 40.503367541539
                    long: -3.6051019976507
                  - lat: 40.503208575277
                    long: -3.604904783825
                  - lat: 40.503126512091
                    long: -3.6047827210158
                  - lat: 40.503036965473
                    long: -3.6046118486905
                  - lat: 40.50301930193
                    long: -3.6046302193603
                  - lat: 40.501759017031
                    long: -3.6033248409118
                  - lat: 40.501444036995
                    long: -3.6027793835803
                  - lat: 40.501356195305
                    long: -3.6027802495396
                  - lat: 40.501361279974
                    long: -3.6026690041452
                  - lat: 40.501342040871
                    long: -3.6024712700032
                  - lat: 40.501330056571
                    long: -3.6021778883593
                  - lat: 40.501371124946
                    long: -3.6020765241321
                  - lat: 40.501412162495
                    long: -3.6019810604068
                  - lat: 40.501459946735
                    long: -3.6018857748851
                  - lat: 40.501487533413
                    long: -3.6017782708794
                  - lat: 40.501508488263
                    long: -3.60164676164
                  - lat: 40.50153607472
                    long: -3.6015392574563
                  - lat: 40.501594059319
                    long: -3.6014590508794
                  - lat: 40.501648359808
                    long: -3.6014116203895
                  - lat: 40.501682328464
                    long: -3.6013760461408
                  - lat: 40.501702846961
                    long: -3.6013283138563
                  - lat: 40.501710194647
                    long: -3.6012147276088
                  - lat: 40.501697534529
                    long: -3.6010506868464
                  - lat: 40.501691202235
                    long: -3.6009690795329
                  - lat: 40.501678342977
                    long: -3.6008432750767
                  - lat: 40.501692384618
                    long: -3.6007416684023
                  - lat: 40.501747462541
                    long: -3.6005445965964
                  - lat: 40.501802259943
                    long: -3.6004014565177
                  - lat: 40.501823430899
                    long: -3.6002280396998
                  - lat: 40.501790612278
                    long: -3.60004223359
                  - lat: 40.501686973512
                    long: -3.5998409146655
                  - lat: 40.501687439629
                    long: -3.5997511067297
                  - lat: 40.501701821987
                    long: -3.5995836485005
                  - lat: 40.501722494641
                    long: -3.5995060583268
                  - lat: 40.501716204104
                    long: -3.5994161901968
                  - lat: 40.501649726481
                    long: -3.5992061157096
                  - lat: 40.501596419921
                    long: -3.599062013037
                  - lat: 40.501529414455
                    long: -3.5989536662998
                  - lat: 40.501455559476
                    long: -3.5988632094214
                  - lat: 40.501428905696
                    long: -3.598791217405
                  - lat: 40.501429432743
                    long: -3.5986894905207
                  - lat: 40.501403027643
                    long: -3.5985694674781
                  - lat: 40.501363109014
                    long: -3.5984494424535
                  - lat: 40.501290740591
                    long: -3.5980717323803
                  - lat: 40.501265358935
                    long: -3.5977363364666
                  - lat: 40.501251402851
                    long: -3.5971946409082
                  - lat: 40.501239250927
                    long: -3.5969311175552
                  - lat: 40.501207353774
                    long: -3.5965658061206
                  - lat: 40.501222587756
                    long: -3.5962306645675
                  - lat: 40.501298790768
                    long: -3.5958663100741
                  - lat: 40.501357637645
                    long: -3.5956005822934
                  - lat: 40.501365103752
                    long: -3.5954629213669
                  - lat: 40.501325736895
                    long: -3.5952351527824
                  - lat: 40.501259405962
                    long: -3.5949951084011
                  - lat: 40.501259682954
                    long: -3.5949413065431
                  - lat: 40.501294019591
                    long: -3.5948338596131
                  - lat: 40.501389563931
                    long: -3.5946491792707
                  - lat: 40.501417020647
                    long: -3.5945656289076
                  - lat: 40.501580098217
                    long: -3.5943874448516
                  - lat: 40.501634733888
                    long: -3.594274275347
                  - lat: 40.501665844146
                    long: -3.5941459097377
                  - lat: 40.501653008386
                    long: -3.5940140878725
                  - lat: 40.501626844034
                    long: -3.5938462709082
                  - lat: 40.501567389066
                    long: -3.5935824477193
                  - lat: 40.501480386109
                    long: -3.5934200077232
                  - lat: 40.501426980208
                    long: -3.593293847844
                  - lat: 40.501528416623
                    long: -3.5932069359573
                  - lat: 40.504512000302
                    long: -3.5890959307506
                  - lat: 40.505375788277
                    long: -3.586806025
                  - lat: 40.506716934354
                    long: -3.5846920525749
                  - lat: 40.508386966124
                    long: -3.5829498048402
                  - lat: 40.508453622628
                    long: -3.5828802719372
                  - lat: 40.508497711283
                    long: -3.5827661640593
                  - lat: 40.510367287037
                    long: -3.5779269454931
                  - lat: 40.510410500514
                    long: -3.5758557274283
                  - lat: 40.512401376952
                    long: -3.572024527367
                  - lat: 40.512160437122
                    long: -3.5672629222369
                  - lat: 40.512053003654
                    long: -3.5649719968061
                  - lat: 40.511153676999
                    long: -3.5617307912733
                  - lat: 40.510683479839
                    long: -3.5616442436654
                  - lat: 40.511252987368
                    long: -3.5583596196944
                  - lat: 40.511333192455
                    long: -3.5542353314432
                  - lat: 40.511093890617
                    long: -3.5522438904816
                  - lat: 40.511303168743
                    long: -3.5522814901166
                  - lat: 40.511545975544
                    long: -3.5523912489835
                  - lat: 40.511815689675
                    long: -3.5525071313173
                  - lat: 40.512010967708
                    long: -3.5526464830114
                  - lat: 40.512330717265
                    long: -3.5529035847872
                  - lat: 40.512391382312
                    long: -3.5529339465442
                  - lat: 40.512526632758
                    long: -3.5529284474114
                  - lat: 40.512684280104
                    long: -3.5528926784403
                  - lat: 40.512803529168
                    long: -3.5529176196604
                  - lat: 40.512861193979
                    long: -3.5529348547561
                  - lat: 40.512914237299
                    long: -3.5529577177589
                  - lat: 40.5129575858
                    long: -3.5529733008109
                  - lat: 40.512997012321
                    long: -3.5529801168149
                  - lat: 40.513072446892
                    long: -3.5530115445966
                  - lat: 40.513254812737
                    long: -3.5530797348423
                  - lat: 40.513283578052
                    long: -3.5530929554854
                  - lat: 40.513381664742
                    long: -3.5531537253448
                  - lat: 40.513454850182
                    long: -3.5532033130732
                  - lat: 40.513532649188
                    long: -3.5532489254897
                  - lat: 40.51363648602
                    long: -3.5533129301417
                  - lat: 40.513829965843
                    long: -3.5534513170915
                  - lat: 40.513896601081
                    long: -3.5535141901442
                  - lat: 40.513959973968
                    long: -3.5535810498579
                  - lat: 40.514022639137
                    long: -3.5536451889502
                  - lat: 40.514087136525
                    long: -3.553702969053
                  - lat: 40.51414687178
                    long: -3.5537581131979
                  - lat: 40.514209250749
                    long: -3.5538255554173
                  - lat: 40.514302523689
                    long: -3.5539319693647
                  - lat: 40.51435997047
                    long: -3.5539946496725
                  - lat: 40.514411747472
                    long: -3.5540561030074
                  - lat: 40.514461986755
                    long: -3.5541188422297
                  - lat: 40.514512548986
                    long: -3.5541893749208
                  - lat: 40.514561026227
                    long: -3.5542607168379
                  - lat: 40.51461232038
                    long: -3.5543288949413
                  - lat: 40.514671020267
                    long: -3.5543932269758
                  - lat: 40.514734355779
                    long: -3.554448992081
                  - lat: 40.514759281818
                    long: -3.5544737500551
                  - lat: 40.514818631445
                    long: -3.5545528547253
                  - lat: 40.514898990268
                    long: -3.5546656565325
                  - lat: 40.51500050328
                    long: -3.5547631694678
                  - lat: 40.515112511996
                    long: -3.5548887452223
                  - lat: 40.515234880879
                    long: -3.5550518262705
                  - lat: 40.515276666781
                    long: -3.5551300788982
                  - lat: 40.515326465243
                    long: -3.5553031859031
                  - lat: 40.515339613577
                    long: -3.5553416582236
                  - lat: 40.51537550229
                    long: -3.5554284796036
                  - lat: 40.515450702421
                    long: -3.5555085311587
                  - lat: 40.515583894949
                    long: -3.5555937951204
                  - lat: 40.51570321437
                    long: -3.5556601760129
                  - lat: 40.515871779987
                    long: -3.5557333381044
                  - lat: 40.516133463603
                    long: -3.5558117552027
                  - lat: 40.516316172957
                    long: -3.5558474968798
                  - lat: 40.516393541825
                    long: -3.5558512049971
                  - lat: 40.516492185308
                    long: -3.5558333686172
                  - lat: 40.516590784122
                    long: -3.5558060882347
                  - lat: 40.51680057041
                    long: -3.5557002815405
                  - lat: 40.51718867858
                    long: -3.5554728244512
                  - lat: 40.517349311797
                    long: -3.5553595274304
                  - lat: 40.517438237145
                    long: -3.5552642895927
                  - lat: 40.51750054621
                    long: -3.5551961006647
                  - lat: 40.517558868781
                    long: -3.5551326005887
                  - lat: 40.517616552779
                    long: -3.5550707477888
                  - lat: 40.517677513846
                    long: -3.555001839106
                  - lat: 40.517738317943
                    long: -3.5549280890857
                  - lat: 40.5177764753
                    long: -3.5548802405846
                  - lat: 40.517799216106
                    long: -3.5548516246291
                  - lat: 40.517856544168
                    long: -3.5547700545842
                  - lat: 40.517973964425
                    long: -3.5545565306949
                  - lat: 40.518144310762
                    long: -3.5542586956899
                  - lat: 40.518364171955
                    long: -3.5538926691081
                  - lat: 40.518580434438
                    long: -3.5535423109625
                  - lat: 40.518828847639
                    long: -3.553083019777
                  - lat: 40.519042363759
                    long: -3.5525736337325
                  - lat: 40.519255213852
                    long: -3.5522012826266
                  - lat: 40.519418497644
                    long: -3.5519096229201
                  - lat: 40.519595535485
                    long: -3.5516617530653
                  - lat: 40.519997398905
                    long: -3.5512327453794
                  - lat: 40.520071228696
                    long: -3.5511644083993
                  - lat: 40.520135724444
                    long: -3.5511094526487
                  - lat: 40.52027155731
                    long: -3.5510006593102
                  - lat: 40.520330410818
                    long: -3.550957580236
                  - lat: 40.520467944524
                    long: -3.5508699314397
                  - lat: 40.520537858831
                    long: -3.5508310744731
                  - lat: 40.520597637384
                    long: -3.5508018147182
                  - lat: 40.520736194116
                    long: -3.5507452213294
                  - lat: 40.520945985409
                    long: -3.5506562740131
                  - lat: 40.521162697378
                    long: -3.5505499109534
                  - lat: 40.52126098014
                    long: -3.5505130561316
                  - lat: 40.521456613842
                    long: -3.5504458314814
                  - lat: 40.521557482627
                    long: -3.5504145460186
                  - lat: 40.521920047631
                    long: -3.5503084295782
                  - lat: 40.521994631721
                    long: -3.5502915674898
                  - lat: 40.522069376302
                    long: -3.550278838582
                  - lat: 40.522160135338
                    long: -3.5502706086226
                  - lat: 40.52227694151
                    long: -3.550259994434
                  - lat: 40.522357393669
                    long: -3.5502594717701
                  - lat: 40.522434269381
                    long: -3.5502532532173
                  - lat: 40.522500289694
                    long: -3.5502375014707
                  - lat: 40.522566755373
                    long: -3.5502228158332
                  - lat: 40.522639507376
                    long: -3.5502123135082
                  - lat: 40.522713501464
                    long: -3.550205835206
                  - lat: 40.522778561891
                    long: -3.5502024713465
                  - lat: 40.523020346836
                    long: -3.5502036219499
                  - lat: 40.523145174696
                    long: -3.5502111357308
                  - lat: 40.523240058688
                    long: -3.550225842249
                  - lat: 40.523306750913
                    long: -3.5502392557671
                  - lat: 40.523525779999
                    long: -3.5502913391182
                  - lat: 40.523591997047
                    long: -3.5503099433871
                  - lat: 40.523662339478
                    long: -3.5503324773217
                  - lat: 40.523726266703
                    long: -3.5503589727824
                  - lat: 40.523787660839
                    long: -3.5503876906654
                  - lat: 40.523912173647
                    long: -3.5504424253724
                  - lat: 40.524010339127
                    long: -3.5504869098126
                  - lat: 40.524070907259
                    long: -3.5505169198156
                  - lat: 40.524131511952
                    long: -3.5505411453288
                  - lat: 40.524224720988
                    long: -3.5505859436789
                  - lat: 40.524456135825
                    long: -3.5507044673915
                  - lat: 40.524512813335
                    long: -3.550739876649
                  - lat: 40.524569188503
                    long: -3.5507820128435
                  - lat: 40.524622923594
                    long: -3.5508299123823
                  - lat: 40.524682204016
                    long: -3.5508862395877
                  - lat: 40.524743069363
                    long: -3.5509502537125
                  - lat: 40.524800901034
                    long: -3.5510081040312
                  - lat: 40.524833014336
                    long: -3.5510371734734
                  - lat: 40.524985357631
                    long: -3.5511310978437
                  - lat: 40.525055746603
                    long: -3.5511627240942
                  - lat: 40.525082436157
                    long: -3.5511767557083
                  - lat: 40.525103435671
                    long: -3.551193810274
                  - lat: 40.525122612633
                    long: -3.5512152181311
                  - lat: 40.525138537496
                    long: -3.5512384883138
                  - lat: 40.525159754285
                    long: -3.5512855318916
                  - lat: 40.5251691366
                    long: -3.5515282217606
                  - lat: 40.525172635215
                    long: -3.5515502095723
                  - lat: 40.525193992513
                    long: -3.5516244081998
                  - lat: 40.525213239152
                    long: -3.5516689447198
                  - lat: 40.525256140369
                    long: -3.5517404866548
                  - lat: 40.525368416436
                    long: -3.5519050387812
                  - lat: 40.525511910881
                    long: -3.552133128012
                  - lat: 40.525549242292
                    long: -3.552201319155
                  - lat: 40.525584389602
                    long: -3.5522740968089
                  - lat: 40.525626525734
                    long: -3.552354841976
                  - lat: 40.525679548059
                    long: -3.5524386281458
                  - lat: 40.525732728711
                    long: -3.5525081303867
                  - lat: 40.525775670046
                    long: -3.5525711733552
                  - lat: 40.52581354566
                    long: -3.5526385430526
                  - lat: 40.525852370388
                    long: -3.5527146571401
                  - lat: 40.525893299568
                    long: -3.5528028190336
                  - lat: 40.525934806984
                    long: -3.5528830874925
                  - lat: 40.52597419805
                    long: -3.5529537756952
                  - lat: 40.526008717669
                    long: -3.5530258406757
                  - lat: 40.526051758078
                    long: -3.5531057678283
                  - lat: 40.526106488647
                    long: -3.5531901594743
                  - lat: 40.526164690454
                    long: -3.5532645445673
                  - lat: 40.526295456908
                    long: -3.553442830674
                  - lat: 40.526374141833
                    long: -3.5535667346084
                  - lat: 40.526547119787
                    long: -3.5538849070651
                  - lat: 40.526616878962
                    long: -3.5540101552331
                  - lat: 40.526871750767
                    long: -3.5543274817047
                  - lat: 40.526917771555
                    long: -3.5543868923317
                  - lat: 40.526956414925
                    long: -3.5544442351729
                  - lat: 40.526990284297
                    long: -3.5545014206711
                  - lat: 40.527018032978
                    long: -3.5545556041994
                  - lat: 40.527036316924
                    long: -3.5546127793923
                  - lat: 40.527046397387
                    long: -3.5546710676158
                  - lat: 40.527050701547
                    long: -3.5547146684005
                  - lat: 40.527048187022
                    long: -3.5547505388627
                  - lat: 40.527039880934
                    long: -3.5547917924687
                  - lat: 40.527010218724
                    long: -3.5548903666634
                  - lat: 40.526979193239
                    long: -3.5549914088488
                  - lat: 40.526969243466
                    long: -3.5550372414734
                  - lat: 40.526956878409
                    long: -3.555060752061
                  - lat: 40.526888643369
                    long: -3.5552748273949
                  - lat: 40.526873960776
                    long: -3.5554056378964
                  - lat: 40.526873481225
                    long: -3.5555053970291
                  - lat: 40.526886964673
                    long: -3.5556240434619
                  - lat: 40.526885945478
                    long: -3.5558359578628
                  - lat: 40.52686429579
                    long: -3.555954196004
                  - lat: 40.526835828946
                    long: -3.5560288125654
                  - lat: 40.526837590889
                    long: -3.5560370915204
                  - lat: 40.526816198645
                    long: -3.5560830772503
                  - lat: 40.526787712352
                    long: -3.5561242818053
                  - lat: 40.526750575559
                    long: -3.5561658870674
                  - lat: 40.526697473737
                    long: -3.5562489183072
                  - lat: 40.52668306005
                    long: -3.556323650761
                  - lat: 40.526752756297
                    long: -3.5564614158211
                  - lat: 40.52703310256
                    long: -3.5566881606869
                  - lat: 40.527355728564
                    long: -3.5569090118662
                  - lat: 40.527601292191
                    long: -3.5570419776552
                  - lat: 40.52791326309
                    long: -3.5571370053173
                  - lat: 40.527981302276
                    long: -3.5571511462122
                  - lat: 40.528050802751
                    long: -3.5571611669671
                  - lat: 40.528052244119
                    long: -3.5571611789039
                  - lat: 40.528190071537
                    long: -3.5571630287289
                  - lat: 40.52819142282
                    long: -3.5571630399197
                  - lat: 40.528258634012
                    long: -3.5571620616925
                  - lat: 40.528260435153
                    long: -3.5571621946742
                  - lat: 40.528317264308
                    long: -3.5571657350143
                  - lat: 40.528319695478
                    long: -3.5571659912793
                  - lat: 40.528377317185
                    long: -3.5571733162849
                  - lat: 40.52838064978
                    long: -3.5571734619505
                  - lat: 40.528442974719
                    long: -3.5571769297578
                  - lat: 40.52844928412
                    long: -3.5571762736183
                  - lat: 40.528547350721
                    long: -3.5571659758129
                  - lat: 40.528550145648
                    long: -3.5571655266969
                  - lat: 40.52858728991
                    long: -3.5571598129611
                  - lat: 40.528592702441
                    long: -3.5571583229303
                  - lat: 40.52865439503
                    long: -3.5571415962222
                  - lat: 40.528660081802
                    long: -3.5571392819979
                  - lat: 40.52871686171
                    long: -3.5571156667419
                  - lat: 40.528733029708
                    long: -3.5571069456742
                  - lat: 40.52887691613
                    long: -3.5570292688838
                  - lat: 40.528890201954
                    long: -3.557020405845
                  - lat: 40.528996400084
                    long: -3.5569491582846
                  - lat: 40.529020258341
                    long: -3.5569336529436
                  - lat: 40.52919313814
                    long: -3.5568217399129
                  - lat: 40.529196759766
                    long: -3.5568179917478
                  - lat: 40.529220842552
                    long: -3.5567932789514
                  - lat: 40.529260787776
                    long: -3.5567671625454
                  - lat: 40.52950317066
                    long: -3.5566085968192
                  - lat: 40.529556615109
                    long: -3.5565835364209
                  - lat: 40.529855756404
                    long: -3.5564431490148
                  - lat: 40.529895641851
                    long: -3.5564294288178
                  - lat: 40.530102380196
                    long: -3.5563579363455
                  - lat: 40.530142323883
                    long: -3.5563508283706
                  - lat: 40.530334830923
                    long: -3.5563161732888
                  - lat: 40.530405211565
                    long: -3.5563117964174
                  - lat: 40.530721779736
                    long: -3.5562922172662
                  - lat: 40.530734661392
                    long: -3.5562924418601
                  - lat: 40.530788981291
                    long: -3.5562932334592
                  - lat: 40.53080132016
                    long: -3.556293925844
                  - lat: 40.530850135692
                    long: -3.5562965728511
                  - lat: 40.530863289309
                    long: -3.5562964454861
                  - lat: 40.530912030671
                    long: -3.5562957859269
                  - lat: 40.530923751447
                    long: -3.5562938756638
                  - lat: 40.530964594843
                    long: -3.5562870111497
                  - lat: 40.531053883765
                    long: -3.5562847977675
                  - lat: 40.531348959745
                    long: -3.5562776741742
                  - lat: 40.531357674173
                    long: -3.5562452767956
                  - lat: 40.531384738146
                    long: -3.5561439597449
                  - lat: 40.531602430077
                    long: -3.5553665018655
                  - lat: 40.532246784317
                    long: -3.5530654098896
                  - lat: 40.532310282053
                    long: -3.553106194646
                  - lat: 40.532488380115
                    long: -3.553220772713
                  - lat: 40.532737082267
                    long: -3.5543180526501
                  - lat: 40.533400478645
                    long: -3.5572438272767
                  - lat: 40.533510130093
                    long: -3.5577639091302
                  - lat: 40.533788257376
                    long: -3.5590827393935
                  - lat: 40.533959050209
                    long: -3.5601276962902
                  - lat: 40.534371474726
                    long: -3.5626500218656
                  - lat: 40.53437467449
                    long: -3.5626774422577
                  - lat: 40.534382025261
                    long: -3.5627404382512
                  - lat: 40.534377355172
                    long: -3.5627929429898
                  - lat: 40.534366973941
                    long: -3.5629082163409
                  - lat: 40.534362932879
                    long: -3.5629425426238
                  - lat: 40.534354474848
                    long: -3.5630143800811
                  - lat: 40.534350982896
                    long: -3.5630469398089
                  - lat: 40.534344089684
                    long: -3.5631119301299
                  - lat: 40.534341287313
                    long: -3.5631508717202
                  - lat: 40.534335878816
                    long: -3.563225450409
                  - lat: 40.534333577203
                    long: -3.5632725434203
                  - lat: 40.534329283898
                    long: -3.5633585847923
                  - lat: 40.534326130586
                    long: -3.5634140540481
                  - lat: 40.534320611938
                    long: -3.563511184268
                  - lat: 40.534317365588
                    long: -3.5635672431091
                  - lat: 40.534311862363
                    long: -3.5636611853844
                  - lat: 40.534308603267
                    long: -3.5637198417728
                  - lat: 40.534303189428
                    long: -3.5638139028481
                  - lat: 40.534301024332
                    long: -3.5638514328169
                  - lat: 40.534297769749
                    long: -3.5639091446174
                  - lat: 40.534293879719
                    long: -3.5639696849041
                  - lat: 40.534288037729
                    long: -3.5640591373908
                  - lat: 40.534284030079
                    long: -3.5641234550993
                  - lat: 40.534278361222
                    long: -3.564214325921
                  - lat: 40.5342751572
                    long: -3.5642616474382
                  - lat: 40.534270789097
                    long: -3.5643259620978
                  - lat: 40.534269118786
                    long: -3.5643728241699
                  - lat: 40.534266928818
                    long: -3.5644338509726
                  - lat: 40.534264250377
                    long: -3.5645026548651
                  - lat: 40.534260857587
                    long: -3.5645885855501
                  - lat: 40.534258838368
                    long: -3.5646330831643
                  - lat: 40.534256416091
                    long: -3.5646863149982
                  - lat: 40.534253673844
                    long: -3.5647312788388
                  - lat: 40.534250628428
                    long: -3.5647829704479
                  - lat: 40.534248815278
                    long: -3.5648221563711
                  - lat: 40.53424689125
                    long: -3.5648655920877
                  - lat: 40.534242788995
                    long: -3.5649123156283
                  - lat: 40.53423849154
                    long: -3.5649621074925
                  - lat: 40.534233155217
                    long: -3.5650401107203
                  - lat: 40.534227720094
                    long: -3.565119884241
                  - lat: 40.534223775384
                    long: -3.5651712140286
                  - lat: 40.534219835271
                    long: -3.5652215992432
                  - lat: 40.534212952304
                    long: -3.5653026593973
                  - lat: 40.534206542817
                    long: -3.5653790004877
                  - lat: 40.534203136192
                    long: -3.5654308070695
                  - lat: 40.534200024069
                    long: -3.5654776569443
                  - lat: 40.53419609351
                    long: -3.5655628745202
                  - lat: 40.53419257814
                    long: -3.5656368783912
                  - lat: 40.534190476434
                    long: -3.5656981419747
                  - lat: 40.534188695248
                    long: -3.5657491356698
                  - lat: 40.534187036503
                    long: -3.5657935181566
                  - lat: 40.534185690783
                    long: -3.5658291656777
                  - lat: 40.534184807621
                    long: -3.5658623375004
                  - lat: 40.534184052181
                    long: -3.5658878236734
                  - lat: 40.534182649545
                    long: -3.566174145266
                  - lat: 40.534180388214
                    long: -3.5662311567567
                  - lat: 40.534178847722
                    long: -3.5662697545157
                  - lat: 40.534177516323
                    long: -3.5663024502526
                  - lat: 40.53417660139
                    long: -3.5663236961602
                  - lat: 40.534172626629
                    long: -3.5663810474394
                  - lat: 40.534170199126
                    long: -3.5664168039064
                  - lat: 40.534160532298
                    long: -3.5665142529359
                  - lat: 40.534154841769
                    long: -3.5665724162665
                  - lat: 40.534149000907
                    long: -3.5666428581795
                  - lat: 40.534145650466
                    long: -3.5666830937199
                  - lat: 40.534142259213
                    long: -3.5667500139873
                  - lat: 40.534140458139
                    long: -3.5667866022319
                  - lat: 40.534138794086
                    long: -3.5668503490049
                  - lat: 40.534138000138
                    long: -3.5668836396176
                  - lat: 40.534137353329
                    long: -3.5669236617757
                  - lat: 40.534136985167
                    long: -3.5669436134394
                  - lat: 40.534138463003
                    long: -3.5670096301257
                  - lat: 40.53413920915
                    long: -3.5670411625865
                  - lat: 40.534143340809
                    long: -3.5671171199986
                  - lat: 40.534145242967
                    long: -3.5671517321746
                  - lat: 40.534148151036
                    long: -3.5672200043699
                  - lat: 40.534149446969
                    long: -3.5672496404574
                  - lat: 40.534150117921
                    long: -3.5673148238276
                  - lat: 40.534150345504
                    long: -3.5673418650516
                  - lat: 40.534147524165
                    long: -3.5674210699551
                  - lat: 40.534146469654
                    long: -3.5674523510822
                  - lat: 40.53414035916
                    long: -3.5675225544822
                  - lat: 40.534138067787
                    long: -3.567548865995
                  - lat: 40.534118054697
                    long: -3.5677367914116
                  - lat: 40.534110879254
                    long: -3.5678036796519
                  - lat: 40.534105065055
                    long: -3.5678868737869
                  - lat: 40.53410303515
                    long: -3.5679149586131
                  - lat: 40.534099662918
                    long: -3.5679778643682
                  - lat: 40.534098662816
                    long: -3.5679980468289
                  - lat: 40.534093658084
                    long: -3.5680814839192
                  - lat: 40.53409209249
                    long: -3.5681067388451
                  - lat: 40.534085830146
                    long: -3.5682260602319
                  - lat: 40.534084040799
                    long: -3.5682601689195
                  - lat: 40.534064336477
                    long: -3.568657904776
                  - lat: 40.534059034861
                    long: -3.5687649543428
                  - lat: 40.534054830462
                    long: -3.5688504053752
                  - lat: 40.534053823232
                    long: -3.5688720046534
                  - lat: 40.534053343612
                    long: -3.5689694127936
                  - lat: 40.534057900905
                    long: -3.5691416052727
                  - lat: 40.534058973659
                    long: -3.569179870779
                  - lat: 40.534063655631
                    long: -3.5693449798167
                  - lat: 40.53406456793
                    long: -3.5693792294072
                  - lat: 40.534067476899
                    long: -3.5694653310077
                  - lat: 40.534068026027
                    long: -3.5694818662147
                  - lat: 40.534070653857
                    long: -3.5695336054965
                  - lat: 40.534071058888
                    long: -3.5695428188087
                  - lat: 40.534077577547
                    long: -3.569627652164
                  - lat: 40.534078589884
                    long: -3.5696415936381
                  - lat: 40.53409248599
                    long: -3.569874556122
                  - lat: 40.534094563998
                    long: -3.5699098782899
                  - lat: 40.53410593147
                    long: -3.5700892013745
                  - lat: 40.534107520751
                    long: -3.5701140106956
                  - lat: 40.534119292372
                    long: -3.5702478900145
                  - lat: 40.534120741074
                    long: -3.570264669018
                  - lat: 40.534133148686
                    long: -3.5704156747335
                  - lat: 40.534134506112
                    long: -3.570432689121
                  - lat: 40.534142850627
                    long: -3.5705672479305
                  - lat: 40.534143775097
                    long: -3.5705807163844
                  - lat: 40.534149939347
                    long: -3.570682431727
                  - lat: 40.534150526207
                    long: -3.5706912923727
                  - lat: 40.534169838113
                    long: -3.5711586813265
                  - lat: 40.534171374049
                    long: -3.5711942351214
                  - lat: 40.534177695161
                    long: -3.571300556841
                  - lat: 40.534178111727
                    long: -3.571307408764
                  - lat: 40.534209800605
                    long: -3.5716398129339
                  - lat: 40.534211514687
                    long: -3.5716575388501
                  - lat: 40.53422177235
                    long: -3.5717875092733
                  - lat: 40.534222195314
                    long: -3.5717930624257
                  - lat: 40.53423497763
                    long: -3.5719407657115
                  - lat: 40.534235314592
                    long: -3.5719454916047
                  - lat: 40.534242687912
                    long: -3.5720393064172
                  - lat: 40.534242858729
                    long: -3.5720411970813
                  - lat: 40.534249589681
                    long: -3.5721373679651
                  - lat: 40.534249677428
                    long: -3.5721378410143
                  - lat: 40.53426092376
                    long: -3.5722863578863
                  - lat: 40.534276015993
                    long: -3.5725859264465
                  - lat: 40.534278107144
                    long: -3.5726911379535
                  - lat: 40.534291838765
                    long: -3.5730105318207
                  - lat: 40.534294692905
                    long: -3.5731071421398
                  - lat: 40.534294748928
                    long: -3.5734789633095
                  - lat: 40.534288257231
                    long: -3.5738429356119
                  - lat: 40.534287206871
                    long: -3.5740543885724
                  - lat: 40.534287364941
                    long: -3.5741676245982
                  - lat: 40.534285486152
                    long: -3.5742737586866
                  - lat: 40.534280551665
                    long: -3.5744327646203
                  - lat: 40.534277450776
                    long: -3.5745309771747
                  - lat: 40.534273784137
                    long: -3.5745980128863
                  - lat: 40.5342418516
                    long: -3.5748779337379
                  - lat: 40.534251436871
                    long: -3.5749612590428
                  - lat: 40.534261772548
                    long: -3.5750205033366
                  - lat: 40.534267454325
                    long: -3.5750735679197
                  - lat: 40.534271813765
                    long: -3.5751389010833
                  - lat: 40.534275900864
                    long: -3.5752408354119
                  - lat: 40.534272647601
                    long: -3.5753695101612
                  - lat: 40.53426880955
                    long: -3.5755974697894
                  - lat: 40.534255563356
                    long: -3.5758512192386
                  - lat: 40.534250510787
                    long: -3.5760696160512
                  - lat: 40.534263032683
                    long: -3.5762142479946
                  - lat: 40.534287496846
                    long: -3.576366775324
                  - lat: 40.534226355527
                    long: -3.5763790035788
                  - lat: 40.533872067433
                    long: -3.5784835835812
                  - lat: 40.533852751486
                    long: -3.5785449345363
                  - lat: 40.533889356506
                    long: -3.5786650955811
                  - lat: 40.533929673832
                    long: -3.5787275499565
                  - lat: 40.533976881356
                    long: -3.5787813261299
                  - lat: 40.534003595771
                    long: -3.5788436635938
                  - lat: 40.534023554528
                    long: -3.5789237723348
                  - lat: 40.534040045621
                    long: -3.5790127069232
                  - lat: 40.534070027512
                    long: -3.5791061264943
                  - lat: 40.534099941853
                    long: -3.5792130061668
                  - lat: 40.534133257424
                    long: -3.5793242840219
                  - lat: 40.534169795982
                    long: -3.5794754992909
                  - lat: 40.534196019687
                    long: -3.5796355877749
                  - lat: 40.534242714933
                    long: -3.5797913777781
                  - lat: 40.534299298585
                    long: -3.5799872809485
                  - lat: 40.53437917836
                    long: -3.58019046995
                  - lat: 40.534443048257
                    long: -3.5803525489018
                  - lat: 40.534643847808
                    long: -3.5808204352398
                  - lat: 40.534710564777
                    long: -3.5810252837146
                  - lat: 40.534753498932
                    long: -3.581229927078
                  - lat: 40.534792742467
                    long: -3.5815055028632
                  - lat: 40.534805249942
                    long: -3.581723226297
                  - lat: 40.534817868507
                    long: -3.5819009227739
                  - lat: 40.534827467162
                    long: -3.5820163549503
                  - lat: 40.534837132266
                    long: -3.5821185749491
                  - lat: 40.534853195233
                    long: -3.5822741029727
                  - lat: 40.534903442912
                    long: -3.5825108097197
                  - lat: 40.534912260728
                    long: -3.5825308410748
                  - lat: 40.535004268879
                    long: -3.5827398077186
                  - lat: 40.535093681918
                    long: -3.5829273804747
                  - lat: 40.535238951322
                    long: -3.5832931326983
                  - lat: 40.535316301743
                    long: -3.5835322020948
                  - lat: 40.535355461579
                    long: -3.5837341003498
                  - lat: 40.535384307169
                    long: -3.5839803064989
                  - lat: 40.535373438775
                    long: -3.5841343034776
                  - lat: 40.535356098458
                    long: -3.5842675805991
                  - lat: 40.535330463692
                    long: -3.5843842547216
                  - lat: 40.535279507008
                    long: -3.584537891304
                  - lat: 40.535215157139
                    long: -3.5847033488488
                  - lat: 40.535201270033
                    long: -3.5848128039092
                  - lat: 40.535214212343
                    long: -3.5848900209668
                  - lat: 40.535250546802
                    long: -3.5849733453709
                  - lat: 40.535343590092
                    long: -3.585101560325
                  - lat: 40.535453419156
                    long: -3.5852061880531
                  - lat: 40.53560807323
                    long: -3.5853718983339
                  - lat: 40.535717556204
                    long: -3.5855447731394
                  - lat: 40.53578058528
                    long: -3.5856579686264
                  - lat: 40.535840086319
                    long: -3.5857917855238
                  - lat: 40.535909195555
                    long: -3.5860028034896
                  - lat: 40.535958440929
                    long: -3.5861869629759
                  - lat: 40.535999150512
                    long: -3.5864021030253
                  - lat: 40.536018472319
                    long: -3.5865534123281
                  - lat: 40.536024521758
                    long: -3.5866749681627
                  - lat: 40.536013784826
                    long: -3.586820111398
                  - lat: 40.535992898279
                    long: -3.5869769620757
                  - lat: 40.535988842252
                    long: -3.5871192115456
                  - lat: 40.536016218127
                    long: -3.5873341177346
                  - lat: 40.53605853869
                    long: -3.5875509258338
                  - lat: 40.536123632725
                    long: -3.5879130522683
                  - lat: 40.536169527535
                    long: -3.5880823064761
                  - lat: 40.536299955177
                    long: -3.5884049649525
                  - lat: 40.53637610288
                    long: -3.5885597247602
                  - lat: 40.536405738304
                    long: -3.5886488979272
                  - lat: 40.536451268981
                    long: -3.5889070640475
                  - lat: 40.536512032299
                    long: -3.589128286946
                  - lat: 40.536554486182
                    long: -3.5893182948386
                  - lat: 40.536600634658
                    long: -3.5894550813664
                  - lat: 40.536653419184
                    long: -3.589597818442
                  - lat: 40.536765911853
                    long: -3.5898328393306
                  - lat: 40.53680049277
                    long: -3.5899413040162
                  - lat: 40.536833188308
                    long: -3.5900837593703
                  - lat: 40.536879184471
                    long: -3.5902501838036
                  - lat: 40.536912151717
                    long: -3.5903393876262
                  - lat: 40.536971843924
                    long: -3.5904347301736
                  - lat: 40.537031444925
                    long: -3.5905479022525
                  - lat: 40.537071168904
                    long: -3.5906370476803
                  - lat: 40.537110892736
                    long: -3.5907085873819
                  - lat: 40.537143769059
                    long: -3.5908155030496
                  - lat: 40.537170039391
                    long: -3.5909105527007
                  - lat: 40.53720300612
                    long: -3.5909997572284
                  - lat: 40.5372890887
                    long: -3.5911665355595
                  - lat: 40.537461456302
                    long: -3.5914762428625
                  - lat: 40.537526278757
                    long: -3.5916779055981
                  - lat: 40.537545781043
                    long: -3.5918278044463
                  - lat: 40.537567079498
                    long: -3.5919611759753
                  - lat: 40.537616863753
                    long: -3.5921262198789
                  - lat: 40.537670085519
                    long: -3.5922884603401
                  - lat: 40.537682477659
                    long: -3.5925071386726
                  - lat: 40.537691628317
                    long: -3.592707840098
                  - lat: 40.537695959457
                    long: -3.592846978519
                  - lat: 40.537695261961
                    long: -3.5929846556387
                  - lat: 40.537680550416
                    long: -3.5932180796776
                  - lat: 40.537652202504
                    long: -3.5934753656635
                  - lat: 40.537640928298
                    long: -3.5937058795547
                  - lat: 40.537640728678
                    long: -3.5937447266411
                  - lat: 40.537621625073
                    long: -3.5938508314025
                  - lat: 40.53756666837
                    long: -3.5940090476405
                  - lat: 40.537481119919
                    long: -3.5942298126175
                  - lat: 40.537415703262
                    long: -3.5944598472273
                  - lat: 40.537370645977
                    long: -3.5946899315248
                  - lat: 40.537327109385
                    long: -3.5949395241461
                  - lat: 40.53727814916
                    long: -3.5952625148052
                  - lat: 40.537260704023
                    long: -3.5953611941426
                  - lat: 40.537256907848
                    long: -3.5954510201231
                  - lat: 40.537291045067
                    long: -3.595716178015
                  - lat: 40.537294054316
                    long: -3.5957790237571
                  - lat: 40.537283640294
                    long: -3.5958418686624
                  - lat: 40.537252651499
                    long: -3.5959463318924
                  - lat: 40.537184284603
                    long: -3.5961014628568
                  - lat: 40.53712247332
                    long: -3.5962955119798
                  - lat: 40.537098298866
                    long: -3.5964061753711
                  - lat: 40.537097819777
                    long: -3.596498982509
                  - lat: 40.53711896111
                    long: -3.5966442911724
                  - lat: 40.537138843588
                    long: -3.5967193307306
                  - lat: 40.537158880922
                    long: -3.5967643791967
                  - lat: 40.537226073058
                    long: -3.5968368866526
                  - lat: 40.53728658687
                    long: -3.5968942206169
                  - lat: 40.537366626598
                    long: -3.5970955507942
                  - lat: 40.537433366643
                    long: -3.5972729109255
                  - lat: 40.537439457683
                    long: -3.5974016617635
                  - lat: 40.537452784794
                    long: -3.5974376768488
                  - lat: 40.537526763992
                    long: -3.5975042234442
                  - lat: 40.537534436783
                    long: -3.597518697543
                  - lat: 40.537570216957
                    long: -3.5975854952994
                  - lat: 40.537650271348
                    long: -3.5977837571573
                  - lat: 40.537713727038
                    long: -3.5979340488041
                  - lat: 40.537743668211
                    long: -3.5980149648539
                  - lat: 40.537783105484
                    long: -3.598227980925
                  - lat: 40.537813213574
                    long: -3.5982940203552
                  - lat: 40.537927100651
                    long: -3.5984807766431
                  - lat: 40.537950467594
                    long: -3.5985437924711
                  - lat: 40.537960200453
                    long: -3.5986127209864
                  - lat: 40.53796634483
                    long: -3.598732629071
                  - lat: 40.537965646609
                    long: -3.5988673545996
                  - lat: 40.538006647584
                    long: -3.5991086074526
                  - lat: 40.538009480534
                    long: -3.5992224639646
                  - lat: 40.538000705156
                    long: -3.5996115847719
                  - lat: 40.538000114392
                    long: -3.5997254107626
                  - lat: 40.538009768698
                    long: -3.5998093352407
                  - lat: 40.538026205716
                    long: -3.5998882308987
                  - lat: 40.538044400167
                    long: -3.5999756560067
                  - lat: 40.538063922324
                    long: -3.6001196544436
                  - lat: 40.538062973424
                    long: -3.6003023193348
                  - lat: 40.538045322114
                    long: -3.600439845734
                  - lat: 40.538010871452
                    long: -3.6005682477905
                  - lat: 40.53794944129
                    long: -3.6006875525781
                  - lat: 40.537831413268
                    long: -3.6009843009813
                  - lat: 40.537797117419
                    long: -3.6010828290238
                  - lat: 40.537742665088
                    long: -3.6011422098056
                  - lat: 40.537698513712
                    long: -3.6011956604092
                  - lat: 40.53766776895
                    long: -3.6012523009203
                  - lat: 40.537664264385
                    long: -3.601285214362
                  - lat: 40.537714611197
                    long: -3.6013396160238
                  - lat: 40.537734740129
                    long: -3.6013667186421
                  - lat: 40.537727750239
                    long: -3.6014115271988
                  - lat: 40.537714097408
                    long: -3.6014383277391
                  - lat: 40.537680128194
                    long: -3.6014740388615
                  - lat: 40.537646253017
                    long: -3.6014916843059
                  - lat: 40.53760235044
                    long: -3.6014973138163
                  - lat: 40.537575278326
                    long: -3.6015060458837
                  - lat: 40.537558217624
                    long: -3.6015298638277
                  - lat: 40.537554784692
                    long: -3.6015507335361
                  - lat: 40.537554628544
                    long: -3.6015807248224
                  - lat: 40.537574492429
                    long: -3.6016587181875
                  - lat: 40.537587646646
                    long: -3.6017276773726
                  - lat: 40.537580703355
                    long: -3.6017635120185
                  - lat: 40.537553537129
                    long: -3.6017903095921
                  - lat: 40.537523026402
                    long: -3.6018019628005
                  - lat: 40.537474087065
                    long: -3.6018060119721
                  - lat: 40.537372776586
                    long: -3.6017811349606
                  - lat: 40.537305213093
                    long: -3.6017805304156
                  - lat: 40.537257700324
                    long: -3.6018220240038
                  - lat: 40.537213392404
                    long: -3.601905464908
                  - lat: 40.537196129237
                    long: -3.601968129394
                  - lat: 40.537169466102
                    long: -3.6022268418312
                  - lat: 40.537178708843
                    long: -3.6024066435206
                  - lat: 40.537174848511
                    long: -3.6024904462823
                  - lat: 40.53712364336
                    long: -3.6026007472389
                  - lat: 40.53704840214
                    long: -3.6027767215665
                  - lat: 40.537027804755
                    long: -3.6028394738684
                  - lat: 40.537020626382
                    long: -3.6029202946589
                  - lat: 40.537023396992
                    long: -3.603028115177
                  - lat: 40.53704685507
                    long: -3.6030731961105
                  - lat: 40.537077026235
                    long: -3.6031093631513
                  - lat: 40.537125883739
                    long: -3.603138258722
                  - lat: 40.537173049442
                    long: -3.6031806003684
                  - lat: 40.537182982967
                    long: -3.6032105638929
                  - lat: 40.53716892283
                    long: -3.6033152934897
                  - lat: 40.537155066086
                    long: -3.6033810582294
                  - lat: 40.537147981686
                    long: -3.6034438136084
                  - lat: 40.537157754835
                    long: -3.6035217164958
                  - lat: 40.537200921639
                    long: -3.6036569521341
                  - lat: 40.537244398022
                    long: -3.603750153933
                  - lat: 40.537294525165
                    long: -3.6038463675902
                  - lat: 40.537351529516
                    long: -3.6039367390948
                  - lat: 40.537433840165
                    long: -3.6040287550093
                  - lat: 40.537614977993
                    long: -3.6042758615475
                  - lat: 40.537685196982
                    long: -3.6044232679552
                  - lat: 40.537735385947
                    long: -3.6045075570473
                  - lat: 40.537795876004
                    long: -3.6045859166958
                  - lat: 40.53787654434
                    long: -3.6046645759877
                  - lat: 40.537911764535
                    long: -3.6047170849118
                  - lat: 40.537921477636
                    long: -3.6047890842245
                  - lat: 40.537924493524
                    long: -3.6048669274279
                  - lat: 40.537937786767
                    long: -3.6049089661279
                  - lat: 40.537954507094
                    long: -3.6049330871894
                  - lat: 40.538035347683
                    long: -3.6049788036835
                  - lat: 40.538102691639
                    long: -3.6050213287273
                  - lat: 40.538129576042
                    long: -3.6050484933791
                  - lat: 40.538176521494
                    long: -3.6051327543127
                  - lat: 40.53820983263
                    long: -3.605222903069
                  - lat: 40.538239203229
                    long: -3.6054117453243
                  - lat: 40.538266865968
                    long: -3.6056169858552
                  - lat: 40.538293027847
                    long: -3.6057819468293
                  - lat: 40.538299485781
                    long: -3.605838920872
                  - lat: 40.538285706237
                    long: -3.6058896903825
                  - lat: 40.538258445565
                    long: -3.6059343161926
                  - lat: 40.538231027576
                    long: -3.60600893353
                  - lat: 40.538223988197
                    long: -3.6060628338416
                  - lat: 40.538227097378
                    long: -3.6061227297361
                  - lat: 40.538263646636
                    long: -3.6062308686091
                  - lat: 40.538347313194
                    long: -3.6063903260933
                  - lat: 40.538387254483
                    long: -3.6065043882308
                  - lat: 40.538393491997
                    long: -3.6066032798577
                  - lat: 40.538372436819
                    long: -3.6067528189939
                  - lat: 40.538324308944
                    long: -3.6069110880142
                  - lat: 40.538283095392
                    long: -3.6070393081357
                  - lat: 40.538248652931
                    long: -3.6071647552475
                  - lat: 40.538241660174
                    long: -3.6072096815926
                  - lat: 40.538261457557
                    long: -3.6072996031542
                  - lat: 40.538311576817
                    long: -3.6074138874996
                  - lat: 40.538318081126
                    long: -3.607461887842
                  - lat: 40.538297355787
                    long: -3.6075484914325
                  - lat: 40.538266529071
                    long: -3.6076201252869
                  - lat: 40.538205092294
                    long: -3.6077393059165
                  - lat: 40.53817773588
                    long: -3.6078019966789
                  - lat: 40.538174151181
                    long: -3.6078497876924
                  - lat: 40.538187379966
                    long: -3.6079038709694
                  - lat: 40.538219033243
                    long: -3.6079833786863
                  - lat: 40.53825578582
                    long: -3.6080525531196
                  - lat: 40.538268982815
                    long: -3.6081126584303
                  - lat: 40.538251664664
                    long: -3.6082022446342
                  - lat: 40.538145382523
                    long: -3.6084888142142
                  - lat: 40.53813810566
                    long: -3.6085875833681
                  - lat: 40.53814440484
                    long: -3.6086744309649
                  - lat: 40.538160662646
                    long: -3.6088032879981
                  - lat: 40.5381514228
                    long: -3.6089513978315
                  - lat: 40.538127241394
                    long: -3.6090439916499
                  - lat: 40.538061964497
                    long: -3.6092590187678
                  - lat: 40.53801391236
                    long: -3.6094022776926
                  - lat: 40.538006129528
                    long: -3.6095968066262
                  - lat: 40.538001695075
                    long: -3.6097884138194
                  - lat: 40.537995434303
                    long: -3.6099846096263
                  - lat: 40.537991772941
                    long: -3.6100979352986
                  - lat: 40.537980424923
                    long: -3.6107282729319
                  - lat: 40.537979163999
                    long: -3.6107963830696
                  - lat: 40.537977245911
                    long: -3.6109035842318
                  - lat: 40.538009109691
                    long: -3.6109769665505
                  - lat: 40.538022282974
                    long: -3.6110071971923
                  - lat: 40.538096048777
                    long: -3.6111126064141
                  - lat: 40.538146084918
                    long: -3.6112418890197
                  - lat: 40.538172444938
                    long: -3.6113678864412
                  - lat: 40.538164848784
                    long: -3.6115265202224
                  - lat: 40.538143597213
                    long: -3.61171195256
                  - lat: 40.538127715853
                    long: -3.6118359127099
                  - lat: 40.538120939596
                    long: -3.6118736374266
                  - lat: 40.53811686211
                    long: -3.6119120951852
                  - lat: 40.538115666688
                    long: -3.6119506972462
                  - lat: 40.538117263247
                    long: -3.6119894427948
                  - lat: 40.538121654914
                    long: -3.6120277414523
                  - lat: 40.538133340356
                    long: -3.6120836889661
                  - lat: 40.538151075757
                    long: -3.6121369874788
                  - lat: 40.538174327556
                    long: -3.6121863214302
                  - lat: 40.538374173109
                    long: -3.612520898012
                  - lat: 40.538383090163
                    long: -3.6125382193227
                  - lat: 40.538462714817
                    long: -3.6126937513479
                  - lat: 40.538486041968
                    long: -3.6127628062729
                  - lat: 40.538495845235
                    long: -3.6128168595459
                  - lat: 40.538482046976
                    long: -3.6128705796688
                  - lat: 40.538444471175
                    long: -3.6129571462909
                  - lat: 40.538399906673
                    long: -3.6130704539223
                  - lat: 40.538392895959
                    long: -3.6131183316541
                  - lat: 40.538399270687
                    long: -3.6131903022401
                  - lat: 40.538415894011
                    long: -3.6132323732383
                  - lat: 40.538442850873
                    long: -3.6132624940289
                  - lat: 40.538490002374
                    long: -3.6132898351218
                  - lat: 40.538557326907
                    long: -3.6133354387564
                  - lat: 40.538590775099
                    long: -3.6133985640713
                  - lat: 40.538597006705
                    long: -3.6134974565634
                  - lat: 40.538599306427
                    long: -3.6136920786924
                  - lat: 40.53858862801
                    long: -3.6138028613757
                  - lat: 40.53857309385
                    long: -3.6138610526843
                  - lat: 40.538607032844
                    long: -3.6138826174564
                  - lat: 40.538635529752
                    long: -3.6139110994862
                  - lat: 40.538638213463
                    long: -3.6139146664834
                  - lat: 40.538687773273
                    long: -3.6139804190054
                  - lat: 40.538751773601
                    long: -3.6140751158471
                  - lat: 40.538858585016
                    long: -3.6142170830615
                  - lat: 40.5389298258
                    long: -3.6143054699842
                  - lat: 40.538948740376
                    long: -3.6143401232399
                  - lat: 40.53895800616
                    long: -3.6143934636996
                  - lat: 40.538964706578
                    long: -3.6144718027052
                  - lat: 40.538985819758
                    long: -3.6145504033253
                  - lat: 40.539018007351
                    long: -3.6146132819585
                  - lat: 40.539021306556
                    long: -3.6146196886443
                  - lat: 40.539031019342
                    long: -3.6146228475954
                  - lat: 40.539088123073
                    long: -3.6146421448533
                  - lat: 40.539145390008
                    long: -3.614664631909
                  - lat: 40.539278498178
                    long: -3.6147912541624
                  - lat: 40.539721331623
                    long: -3.6151023240339
                  - lat: 40.539746891637
                    long: -3.6151578217115
                  - lat: 40.539750631803
                    long: -3.6151660038061
                  - lat: 40.53980944882
                    long: -3.6152357398531
                  - lat: 40.539872825143
                    long: -3.6163768952236
                  - lat: 40.539902471105
                    long: -3.6170018274338
                  - lat: 40.539897232891
                    long: -3.6174595968126
                  - lat: 40.539869562626
                    long: -3.6180012368267
                  - lat: 40.53986645194
                    long: -3.6185825310075
                  - lat: 40.539876348452
                    long: -3.6190727947281
                  - lat: 40.539895381646
                    long: -3.6197907997535
                  - lat: 40.539925047764
                    long: -3.6201383627074
                  - lat: 40.540005691266
                    long: -3.6206223129269
                  - lat: 40.540064845596
                    long: -3.6208466313897
                  - lat: 40.540121662921
                    long: -3.6211201586616
                  - lat: 40.540173144237
                    long: -3.6213974276467
                  - lat: 40.540186069948
                    long: -3.621690872662
                  - lat: 40.540207104893
                    long: -3.6221680047373
                  - lat: 40.540228865559
                    long: -3.6224766468358
                  - lat: 40.540236231196
                    long: -3.6225809850116
                  - lat: 40.540236821064
                    long: -3.6225885479809
                  - lat: 40.540237428112
                    long: -3.6225929227855
                  - lat: 40.540240256724
                    long: -3.6226029862896
                  - lat: 40.540279359335
                    long: -3.6227359590528
                  - lat: 40.540285182521
                    long: -3.622909127274
                  - lat: 40.540294590836
                    long: -3.6232209619009
                  - lat: 40.540289498952
                    long: -3.6233465583817
                  - lat: 40.540249959033
                    long: -3.6235619233393
                  - lat: 40.540207176255
                    long: -3.623777151685
                  - lat: 40.540124182814
                    long: -3.6241148159383
                  - lat: 40.540094274183
                    long: -3.6242647435122
                  - lat: 40.540056983385
                    long: -3.6246136949705
                  - lat: 40.540038088675
                    long: -3.6250257448749
                  - lat: 40.540043344925
                    long: -3.625203158476
                  - lat: 40.540052252876
                    long: -3.6253549814594
                  - lat: 40.540083792908
                    long: -3.6254864680681
                  - lat: 40.54009520216
                    long: -3.625692043492
                  - lat: 40.540394611026
                    long: -3.6262825331575
                  - lat: 40.540629492134
                    long: -3.6267440780807
                  - lat: 40.540835399111
                    long: -3.6271491465299
                  - lat: 40.54089405144
                    long: -3.6272644742958
                  - lat: 40.540936926163
                    long: -3.627348822475
                  - lat: 40.541283846365
                    long: -3.6280308281626
                  - lat: 40.541541228442
                    long: -3.6279465551451
                  - lat: 40.541761690424
                    long: -3.6279272398333
                  - lat: 40.541876156971
                    long: -3.6279173264625
                  - lat: 40.542365777557
                    long: -3.6278199870895
                  - lat: 40.542561870296
                    long: -3.6277907602476
                  - lat: 40.542671669766
                    long: -3.6277776145326
                  - lat: 40.542813822528
                    long: -3.6277789416959
                  - lat: 40.542949276594
                    long: -3.6278027616728
                  - lat: 40.543037420442
                    long: -3.627829092288
                  - lat: 40.543176968858
                    long: -3.6278952155262
                  - lat: 40.543239197569
                    long: -3.6279325230232
                  - lat: 40.543296631912
                    long: -3.6279734466484
                  - lat: 40.543338770553
                    long: -3.6280108028306
                  - lat: 40.543389965954
                    long: -3.6280559196067
                  - lat: 40.543446879856
                    long: -3.6281097105627
                  - lat: 40.543494798804
                    long: -3.6281609376509
                  - lat: 40.543533455738
                    long: -3.628207354605
                  - lat: 40.543560826926
                    long: -3.6282433921702
                  - lat: 40.543571740135
                    long: -3.6282576651647
                  - lat: 40.543603834392
                    long: -3.6283031942607
                  - lat: 40.543647540664
                    long: -3.6283670180878
                  - lat: 40.543700980641
                    long: -3.6284466392244
                  - lat: 40.543732923714
                    long: -3.6285033858432
                  - lat: 40.543764882176
                    long: -3.6285572984461
                  - lat: 40.543816114382
                    long: -3.6286452837881
                  - lat: 40.543860921512
                    long: -3.6287219904063
                  - lat: 40.543892818818
                    long: -3.6287871214285
                  - lat: 40.543927028605
                    long: -3.6288411734428
                  - lat: 40.543978856531
                    long: -3.6289355299783
                  - lat: 40.543990989046
                    long: -3.6289574906013
                  - lat: 40.544022824498
                    long: -3.6290339581815
                  - lat: 40.544063184514
                    long: -3.6291331794041
                  - lat: 40.544103559879
                    long: -3.6292295666615
                  - lat: 40.544154606958
                    long: -3.6293514438968
                  - lat: 40.544207679519
                    long: -3.6294818429768
                  - lat: 40.544230910302
                    long: -3.6295667331851
                  - lat: 40.544264691771
                    long: -3.6296827807437
                  - lat: 40.544292092601
                    long: -3.629795934417
                  - lat: 40.544332144207
                    long: -3.6299516021703
                  - lat: 40.544483775124
                    long: -3.630577017045
                  - lat: 40.544607690723
                    long: -3.6311134979808
                  - lat: 40.544616668359
                    long: -3.6311521988977
                  - lat: 40.544703001793
                    long: -3.6315261741593
                  - lat: 40.5448870815
                    long: -3.6322292646078
                  - lat: 40.544929369379
                    long: -3.632370784902
                  - lat: 40.544980167871
                    long: -3.6325210063245
                  - lat: 40.545043815463
                    long: -3.6326937750207
                  - lat: 40.545103277765
                    long: -3.6328411261246
                  - lat: 40.545162832392
                    long: -3.632971590819
                  - lat: 40.545240273603
                    long: -3.6331259612264
                  - lat: 40.545314869458
                    long: -3.6332734556829
                  - lat: 40.545402225972
                    long: -3.6334267392499
                  - lat: 40.545487634031
                    long: -3.6335574486623
                  - lat: 40.545566633614
                    long: -3.6336739265611
                  - lat: 40.545596564328
                    long: -3.6337193211108
                  - lat: 40.545641430288
                    long: -3.633784684721
                  - lat: 40.545684180774
                    long: -3.6338415374019
                  - lat: 40.545737589026
                    long: -3.633909827825
                  - lat: 40.545771752944
                    long: -3.6339553806067
                  - lat: 40.545810362711
                    long: -3.6339951886632
                  - lat: 40.545878759222
                    long: -3.6340721235947
                  - lat: 40.545933713676
                    long: -3.6341212974266
                  - lat: 40.546003564989
                    long: -3.6341974196786
                  - lat: 40.546095053877
                    long: -3.6342869730034
                  - lat: 40.546161105381
                    long: -3.6343495967669
                  - lat: 40.546219207462
                    long: -3.6343997455074
                  - lat: 40.546286892086
                    long: -3.6344602591704
                  - lat: 40.546348661617
                    long: -3.6345151665836
                  - lat: 40.546752435891
                    long: -3.6348109024049
                  - lat: 40.546964845242
                    long: -3.6350111942823
                  - lat: 40.547130294203
                    long: -3.6351830544849
                  - lat: 40.547272492885
                    long: -3.6353545777155
                  - lat: 40.547356202886
                    long: -3.6354660271267
                  - lat: 40.547456858511
                    long: -3.6356085788761
                  - lat: 40.547585500538
                    long: -3.6358222432501
                  - lat: 40.547679850311
                    long: -3.6360137474946
                  - lat: 40.547798171574
                    long: -3.6362855504491
                  - lat: 40.547877954905
                    long: -3.6365045533149
                  - lat: 40.547896438257
                    long: -3.6365672029296
                  - lat: 40.547910554966
                    long: -3.6366211899653
                  - lat: 40.547916694902
                    long: -3.636651363481
                  - lat: 40.547920380812
                    long: -3.636669113313
                  - lat: 40.547933539469
                    long: -3.6367007705034
                  - lat: 40.547940888873
                    long: -3.6367239876183
                  - lat: 40.547999069287
                    long: -3.63675973234
                  - lat: 40.548033935923
                    long: -3.6367756517423
                  - lat: 40.548036633883
                    long: -3.6367765039948
                  - lat: 40.548082865407
                    long: -3.636789932868
                  - lat: 40.54813230545
                    long: -3.6368096514458
                  - lat: 40.548196729678
                    long: -3.6368403653823
                  - lat: 40.548447557072
                    long: -3.6369673373938
                  - lat: 40.549040639659
                    long: -3.6372380946138
                  - lat: 40.549308681803
                    long: -3.6373145672196
                  - lat: 40.549502322256
                    long: -3.6373726196715
                  - lat: 40.549578236268
                    long: -3.6374434922636
                  - lat: 40.549679250699
                    long: -3.6375532226017
                  - lat: 40.549875329203
                    long: -3.6377554910829
                  - lat: 40.549944929928
                    long: -3.6378276037382
                  - lat: 40.549945377087
                    long: -3.6378281984962
                  - lat: 40.550241158588
                    long: -3.6381344130232
                  - lat: 40.550614800471
                    long: -3.6385176650695
                  - lat: 40.551005875508
                    long: -3.6389249324753
                  - lat: 40.551120795422
                    long: -3.6390433031541
                  - lat: 40.551123572342
                    long: -3.6390461640762
                  - lat: 40.551360686072
                    long: -3.6392902983943
                  - lat: 40.551698588517
                    long: -3.639635653654
                  - lat: 40.551755118177
                    long: -3.6396927644543
                  - lat: 40.551825868944
                    long: -3.6397196573622
                  - lat: 40.552956859781
                    long: -3.6399097096085
                  - lat: 40.553090769925
                    long: -3.6399677946741
                  - lat: 40.553358624573
                    long: -3.6401427841467
                  - lat: 40.553417150422
                    long: -3.6401810183491
                  - lat: 40.553564801973
                    long: -3.6402613099038
                  - lat: 40.553569112903
                    long: -3.6402637131561
                  - lat: 40.553775064208
                    long: -3.6403758713919
                  - lat: 40.553862939594
                    long: -3.6404175746453
                  - lat: 40.554076704403
                    long: -3.6406478005196
                  - lat: 40.554085134288
                    long: -3.6406547312675
                  - lat: 40.554102747831
                    long: -3.6406788755547
                  - lat: 40.554325466048
                    long: -3.6409839525697
                  - lat: 40.554467111317
                    long: -3.6413201362476
                  - lat: 40.554507838418
                    long: -3.6414486753591
                  - lat: 40.554553154625
                    long: -3.6415943845477
                  - lat: 40.554580097102
                    long: -3.6416581855554
                  - lat: 40.55464981083
                    long: -3.6418230258198
                  - lat: 40.554655232729
                    long: -3.6419173304335
                  - lat: 40.554651492752
                    long: -3.6419905237338
                  - lat: 40.554648054485
                    long: -3.6420580505648
                  - lat: 40.554637081395
                    long: -3.6422007422989
                  - lat: 40.554600203665
                    long: -3.6423684622228
                  - lat: 40.554506973397
                    long: -3.6426418132868
                  - lat: 40.554510171736
                    long: -3.6426498754196
                  - lat: 40.554588256677
                    long: -3.6428481039563
                  - lat: 40.554611620084
                    long: -3.6429073830354
                  - lat: 40.55474984369
                    long: -3.6432584332993
                  - lat: 40.554764235358
                    long: -3.6432948312694
                  - lat: 40.554823575304
                    long: -3.6434455190815
                  - lat: 40.555108103191
                    long: -3.6441678882855
                  - lat: 40.555108812665
                    long: -3.6441699029912
                  - lat: 40.555201270955
                    long: -3.644423431293
                  - lat: 40.555146870274
                    long: -3.6444857453825
                  - lat: 40.555097338968
                    long: -3.6445795238851
                  - lat: 40.555069032146
                    long: -3.6446475211775
                  - lat: 40.554998080795
                    long: -3.6448182210614
                  - lat: 40.554912111387
                    long: -3.6450809036461
                  - lat: 40.554884350331
                    long: -3.6452124380718
                  - lat: 40.555108046894
                    long: -3.6454047459815
                  - lat: 40.555276083984
                    long: -3.6455620317226
                  - lat: 40.555279032985
                    long: -3.6455663120944
                  - lat: 40.555296463338
                    long: -3.645590810676
                  - lat: 40.555305654832
                    long: -3.6456064898081
                  - lat: 40.555321594996
                    long: -3.6456397144191
                  - lat: 40.555328252921
                    long: -3.6456573771379
                  - lat: 40.555334188194
                    long: -3.6456753872555
                  - lat: 40.555343167475
                    long: -3.645712915186
                  - lat: 40.555348536797
                    long: -3.6457515895682
                  - lat: 40.555338191945
                    long: -3.64579719972
                  - lat: 40.555403642758
                    long: -3.6458210967905
                  - lat: 40.555409845984
                    long: -3.6458234005365
                  - lat: 40.555402902204
                    long: -3.6458568778007
                  - lat: 40.555401975618
                    long: -3.6458614752892
                  - lat: 40.55538721238
                    long: -3.6458916883609
                  - lat: 40.555372404893
                    long: -3.6459298145366
                  - lat: 40.555348172565
                    long: -3.6459778896783
                  - lat: 40.555274662475
                    long: -3.6461063981297
                  - lat: 40.555185124234
                    long: -3.6462979422412
                  - lat: 40.555084183969
                    long: -3.6465790114162
                  - lat: 40.554996207265
                    long: -3.6468133258932
                  - lat: 40.554951304888
                    long: -3.6470309282149
                  - lat: 40.554898633334
                    long: -3.6472506995513
                  - lat: 40.554871441848
                    long: -3.6474891414199
                  - lat: 40.554836308046
                    long: -3.6477943577333
                  - lat: 40.554790382744
                    long: -3.6480478431123
                  - lat: 40.554790565402
                    long: -3.6481598146161
                  - lat: 40.554793827828
                    long: -3.6484935111996
                  - lat: 40.554779711155
                    long: -3.6487293618173
                  - lat: 40.554774461107
                    long: -3.6490545902476
                  - lat: 40.554771994762
                    long: -3.6493331796629
                  - lat: 40.55479350694
                    long: -3.6496250048893
                  - lat: 40.554808320851
                    long: -3.6498903085395
                  - lat: 40.554809705606
                    long: -3.6500925289362
                  - lat: 40.554804964332
                    long: -3.6503266983021
                  - lat: 40.554795356496
                    long: -3.6505131034659
                  - lat: 40.554795521466
                    long: -3.6506277913704
                  - lat: 40.554809566969
                    long: -3.6508851625139
                  - lat: 40.554823315359
                    long: -3.6510352973725
                  - lat: 40.55487440104
                    long: -3.6513875287802
                  - lat: 40.554952768881
                    long: -3.6517725060173
                  - lat: 40.554978809344
                    long: -3.6518993744521
                  - lat: 40.554983987116
                    long: -3.6520354777335
                  - lat: 40.555010548521
                    long: -3.6523412909331
                  - lat: 40.555057355911
                    long: -3.6526990340198
                  - lat: 40.555099131195
                    long: -3.6528949151751
                  - lat: 40.55515319723
                    long: -3.6531795001227
                  - lat: 40.555162313497
                    long: -3.6532401684527
                  - lat: 40.555165253817
                    long: -3.653325592138
                  - lat: 40.555133056671
                    long: -3.6537141042837
                  - lat: 40.555118279657
                    long: -3.6540488083564
                  - lat: 40.555135670658
                    long: -3.6541435854053
                  - lat: 40.557248817029
                    long: -3.6555651012117
                  - lat: 40.558484425425
                    long: -3.656396290849
                  - lat: 40.559260622434
                    long: -3.6569185184047
                  - lat: 40.559687718954
                    long: -3.6572058155574
                  - lat: 40.559689603985
                    long: -3.6572070151937
                  - lat: 40.561290587044
                    long: -3.6582615524132
                  - lat: 40.568777936643
                    long: -3.6631938967973
                  - lat: 40.569685734472
                    long: -3.6637920113812
                  - lat: 40.569734378256
                    long: -3.6638240348243
                  - lat: 40.577627388377
                    long: -3.6680741466209
                  - lat: 40.5824967327
                    long: -3.6706957308191
                  - lat: 40.586150534471
                    long: -3.6726560773814
                  - lat: 40.588856338396
                    long: -3.6741185928176
                  - lat: 40.588569380402
                    long: -3.6747405869599
                  - lat: 40.58830226483
                    long: -3.6752810133152
                  - lat: 40.58805680903
                    long: -3.6757851389054
                  - lat: 40.587788265207
                    long: -3.6763070963433
                  - lat: 40.587493954198
                    long: -3.6768751238828
                  - lat: 40.58725488043
                    long: -3.677365121758
                  - lat: 40.587039086985
                    long: -3.6778007575168
                  - lat: 40.586881617828
                    long: -3.6781069832154
                  - lat: 40.586809992262
                    long: -3.6782460522098
                  - lat: 40.586705503061
                    long: -3.6784601797404
                  - lat: 40.586580812264
                    long: -3.6787224328341
                  - lat: 40.586562582604
                    long: -3.6787585259049
                  - lat: 40.586350682272
                    long: -3.6792052997801
                  - lat: 40.586209742418
                    long: -3.6795035446638
                  - lat: 40.586130522
                    long: -3.6796776175444
                  - lat: 40.586035830715
                    long: -3.6798796687686
                  - lat: 40.585943974108
                    long: -3.6800730038374
                  - lat: 40.585849946155
                    long: -3.6802678525355
                  - lat: 40.585748204072
                    long: -3.6804875555032
                  - lat: 40.585606187854
                    long: -3.6807997276524
                  - lat: 40.585381888218
                    long: -3.6812548708158
                  - lat: 40.585174942497
                    long: -3.6816863060278
                  - lat: 40.58496399254
                    long: -3.6821380340095
                  - lat: 40.584703501719
                    long: -3.6825577057026
                  - lat: 40.584216680049
                    long: -3.6833645258597
                  - lat: 40.583875545089
                    long: -3.6839077920446
                  - lat: 40.583651708928
                    long: -3.6842537360076
                  - lat: 40.583409191137
                    long: -3.684770809898
                  - lat: 40.583286897257
                    long: -3.6850062402149
                  - lat: 40.58324650131
                    long: -3.6851035476164
                  - lat: 40.58315656073
                    long: -3.6853217009525
                  - lat: 40.583039513176
                    long: -3.6855700625061
                  - lat: 40.582932380997
                    long: -3.6858006821745
                  - lat: 40.582742972718
                    long: -3.6865814313627
                  - lat: 40.582588395043
                    long: -3.6872609266596
                  - lat: 40.582616470462
                    long: -3.6885687644298
                  - lat: 40.582225508503
                    long: -3.6891697325843
                  - lat: 40.58215814835
                    long: -3.6892711310517
                  - lat: 40.582108220186
                    long: -3.689334779106
                  - lat: 40.582046443312
                    long: -3.6894063284338
                  - lat: 40.581801435538
                    long: -3.6897044091538
                  - lat: 40.581586970091
                    long: -3.6899551836744
                  - lat: 40.581477289059
                    long: -3.6900832037378
                  - lat: 40.581312643067
                    long: -3.6902734003238
                  - lat: 40.580976681422
                    long: -3.6906707367824
                  - lat: 40.580803479812
                    long: -3.6910711621899
                  - lat: 40.580701160676
                    long: -3.6912935321565
                  - lat: 40.580625658387
                    long: -3.6914605375615
                  - lat: 40.580546735799
                    long: -3.6916420406344
                  - lat: 40.580483479042
                    long: -3.6917949926334
                  - lat: 40.580323169631
                    long: -3.6923600186349
                  - lat: 40.580195304551
                    long: -3.6928158342448
                  - lat: 40.580031089884
                    long: -3.6933687631633
                  - lat: 40.579892568905
                    long: -3.6942644877135
                  - lat: 40.579672300747
                    long: -3.6958071832013
                  - lat: 40.579346755296
                    long: -3.6969390389392
                  - lat: 40.579313148116
                    long: -3.6970592077274
                  - lat: 40.578973567159
                    long: -3.6982739557573
                  - lat: 40.578614420475
                    long: -3.6994610761276
                  - lat: 40.57863454747
                    long: -3.701564402238
                  - lat: 40.578309973717
                    long: -3.7015637289902
                  - lat: 40.578309726686
                    long: -3.7015154019556
                  - lat: 40.578308811816
                    long: -3.7012951557695
                  - lat: 40.578303330855
                    long: -3.700430102685
                  - lat: 40.578301469975
                    long: -3.7002912656816
                  - lat: 40.578294692643
                    long: -3.7002649651144
                  - lat: 40.578277077097
                    long: -3.7002135031811
                  - lat: 40.578244649086
                    long: -3.7001237235554
                  - lat: 40.578208095836
                    long: -3.7000308290494
                  - lat: 40.578187390183
                    long: -3.6999838248298
                  - lat: 40.578144455068
                    long: -3.699918275329
                  - lat: 40.578102133418
                    long: -3.6998406807665
                  - lat: 40.578041873271
                    long: -3.6997500207919
                  - lat: 40.577995078499
                    long: -3.6996836043059
                  - lat: 40.577978553537
                    long: -3.699660274322
                  - lat: 40.577915444239
                    long: -3.6995640318532
                  - lat: 40.577911606475
                    long: -3.6995580842755
                  - lat: 40.577843324541
                    long: -3.6994531630371
                  - lat: 40.577839040652
                    long: -3.6994465019145
                  - lat: 40.577717593048
                    long: -3.6992843144654
                  - lat: 40.577695162621
                    long: -3.6992543066965
                  - lat: 40.577618654241
                    long: -3.6991540383403
                  - lat: 40.577561963221
                    long: -3.6990838569818
                  - lat: 40.577515954776
                    long: -3.6990348178655
                  - lat: 40.577472588726
                    long: -3.6989957310228
                  - lat: 40.577423332274
                    long: -3.6989474852874
                  - lat: 40.577399223805
                    long: -3.6989267942376
                  - lat: 40.577388916523
                    long: -3.6989180619386
                  - lat: 40.577350133192
                    long: -3.6988809133524
                  - lat: 40.577305534524
                    long: -3.6988370878428
                  - lat: 40.577265888222
                    long: -3.6987936683743
                  - lat: 40.577229736531
                    long: -3.6987533572381
                  - lat: 40.577224098508
                    long: -3.6987471547356
                  - lat: 40.577188822569
                    long: -3.6986961010437
                  - lat: 40.577140212176
                    long: -3.6986154891765
                  - lat: 40.577107856677
                    long: -3.6985582040137
                  - lat: 40.577098943467
                    long: -3.6985423972752
                  - lat: 40.577059764535
                    long: -3.6984812603999
                  - lat: 40.577014081705
                    long: -3.6984081227653
                  - lat: 40.577012922778
                    long: -3.698406102156
                  - lat: 40.576995009801
                    long: -3.6983738971164
                  - lat: 40.576987707333
                    long: -3.6983598794342
                  - lat: 40.57693391896
                    long: -3.6982565293598
                  - lat: 40.576924912769
                    long: -3.6982411943369
                  - lat: 40.57690342216
                    long: -3.698204698781
                  - lat: 40.576873945559
                    long: -3.6981629334356
                  - lat: 40.57684082788
                    long: -3.69812738042
                  - lat: 40.57678353659
                    long: -3.6980818878648
                  - lat: 40.576720308415
                    long: -3.6980349158829
                  - lat: 40.576656278045
                    long: -3.6979865178555
                  - lat: 40.576517047324
                    long: -3.6978761369586
                  - lat: 40.576478486072
                    long: -3.6978469077858
                  - lat: 40.576443883438
                    long: -3.6978185468242
                  - lat: 40.576304496199
                    long: -3.6976430648027
                  - lat: 40.576195830733
                    long: -3.6974970853599
                  - lat: 40.576132089925
                    long: -3.6974156095492
                  - lat: 40.576083782106
                    long: -3.6973593416792
                  - lat: 40.576040566877
                    long: -3.6973100975389
                  - lat: 40.57600732889
                    long: -3.6972795063849
                  - lat: 40.575977269198
                    long: -3.6972745865061
                  - lat: 40.575941603007
                    long: -3.697273152882
                  - lat: 40.575928453123
                    long: -3.6972726619144
                  - lat: 40.575903220795
                    long: -3.6972739358832
                  - lat: 40.575861587062
                    long: -3.6972761029075
                  - lat: 40.575852488745
                    long: -3.6972760084487
                  - lat: 40.575788978549
                    long: -3.6972757035313
                  - lat: 40.575755290603
                    long: -3.6972748811912
                  - lat: 40.575721333123
                    long: -3.6972739379057
                  - lat: 40.575695576701
                    long: -3.6972724890235
                  - lat: 40.575650997989
                    long: -3.6972700295106
                  - lat: 40.575527193941
                    long: -3.6972589379314
                  - lat: 40.575521613827
                    long: -3.697258052966
                  - lat: 40.575472561016
                    long: -3.6972505730034
                  - lat: 40.575411548643
                    long: -3.6972394244673
                  - lat: 40.575349631617
                    long: -3.6972303932161
                  - lat: 40.575307723118
                    long: -3.6972183797099
                  - lat: 40.575292614238
                    long: -3.6972140877062
                  - lat: 40.575185317579
                    long: -3.6971696138463
                  - lat: 40.575161507071
                    long: -3.697159206032
                  - lat: 40.575132215797
                    long: -3.6971463783931
                  - lat: 40.575027020944
                    long: -3.6970969643945
                  - lat: 40.574967903587
                    long: -3.6970703585101
                  - lat: 40.574941491373
                    long: -3.6970581515622
                  - lat: 40.574906544144
                    long: -3.6970420753502
                  - lat: 40.574856449266
                    long: -3.6970132002636
                  - lat: 40.574829276913
                    long: -3.6969925970625
                  - lat: 40.574809906796
                    long: -3.6969778640242
                  - lat: 40.574773135976
                    long: -3.6969355404414
                  - lat: 40.574732959545
                    long: -3.6968753414588
                  - lat: 40.57457510185
                    long: -3.6966701377811
                  - lat: 40.574559638005
                    long: -3.6966500106878
                  - lat: 40.574420498851
                    long: -3.6964629603413
                  - lat: 40.574358748268
                    long: -3.6963799842419
                  - lat: 40.5742883099
                    long: -3.6962736317241
                  - lat: 40.574265455302
                    long: -3.6962391325766
                  - lat: 40.574201967002
                    long: -3.6961156031463
                  - lat: 40.574194496187
                    long: -3.6960995760781
                  - lat: 40.574116589071
                    long: -3.6959319474348
                  - lat: 40.574021757488
                    long: -3.6957188942601
                  - lat: 40.573955680936
                    long: -3.6955613131884
                  - lat: 40.573859051029
                    long: -3.6953311114215
                  - lat: 40.573759833076
                    long: -3.6950967602832
                  - lat: 40.573707762679
                    long: -3.6949768953441
                  - lat: 40.573691945486
                    long: -3.6949405794361
                  - lat: 40.573683414836
                    long: -3.6949209973177
                  - lat: 40.573636192257
                    long: -3.6948788037373
                  - lat: 40.573568987867
                    long: -3.6948186818501
                  - lat: 40.57352355766
                    long: -3.6947780428307
                  - lat: 40.573520689944
                    long: -3.6947755321369
                  - lat: 40.573482330052
                    long: -3.6947426456818
                  - lat: 40.573443701324
                    long: -3.6947095201956
                  - lat: 40.573398798784
                    long: -3.6946710133778
                  - lat: 40.573367519854
                    long: -3.6946441074745
                  - lat: 40.573336867942
                    long: -3.6946177988006
                  - lat: 40.573320826297
                    long: -3.694603810064
                  - lat: 40.573274494476
                    long: -3.6945632801627
                  - lat: 40.573227983895
                    long: -3.6945225121819
                  - lat: 40.57319204763
                    long: -3.6944910688006
                  - lat: 40.573183893452
                    long: -3.6944837777238
                  - lat: 40.573151812966
                    long: -3.6944553278402
                  - lat: 40.573091505634
                    long: -3.6944017760141
                  - lat: 40.573041951362
                    long: -3.6943577869199
                  - lat: 40.573008079136
                    long: -3.6943276646286
                  - lat: 40.572964794395
                    long: -3.6942897657584
                  - lat: 40.572887187612
                    long: -3.6942216337764
                  - lat: 40.572797123285
                    long: -3.6941427285248
                  - lat: 40.572676653674
                    long: -3.6940414166012
                  - lat: 40.572656036913
                    long: -3.6940241910144
                  - lat: 40.571813211342
                    long: -3.6933442039068
                  - lat: 40.57149261816
                    long: -3.6927385069617
                  - lat: 40.57157385615
                    long: -3.6926369166122
                  - lat: 40.571578898122
                    long: -3.692577307451
                  - lat: 40.571015989607
                    long: -3.6925250746964
                  - lat: 40.570873885844
                    long: -3.6924858049949
                  - lat: 40.57067735656
                    long: -3.6923734368994
                  - lat: 40.570354394628
                    long: -3.6921021812726
                  - lat: 40.570268259844
                    long: -3.6920287567378
                  - lat: 40.570191707235
                    long: -3.6919648821722
                  - lat: 40.570072002992
                    long: -3.691872328257
                  - lat: 40.569894732331
                    long: -3.6917632332347
                  - lat: 40.569784846583
                    long: -3.6916392384126
                  - lat: 40.569709444196
                    long: -3.6913831667095
                  - lat: 40.569636232774
                    long: -3.6911522932186
                  - lat: 40.569576544179
                    long: -3.6910854040421
                  - lat: 40.569164910923
                    long: -3.6907273501179
                  - lat: 40.569179497504
                    long: -3.6906834351164
                  - lat: 40.569160852696
                    long: -3.6906075178308
                  - lat: 40.569193640454
                    long: -3.6905479595885
                  - lat: 40.569280596055
                    long: -3.6904842325797
                  - lat: 40.56980366339
                    long: -3.6902690457526
                  - lat: 40.569960615887
                    long: -3.6901603175747
                  - lat: 40.570088892156
                    long: -3.6900261308676
                  - lat: 40.570168989392
                    long: -3.6899039715258
                  - lat: 40.570266270437
                    long: -3.6897252936315
                  - lat: 40.570329117873
                    long: -3.689549912249
                  - lat: 40.570352406563
                    long: -3.6894667453507
                  - lat: 40.570401675379
                    long: -3.6893324546224
                  - lat: 40.570169168714
                    long: -3.6894665185956
                  - lat: 40.569933004826
                    long: -3.6895642757391
                  - lat: 40.569509824858
                    long: -3.6895567421293
                  - lat: 40.568625829817
                    long: -3.6895199064494
                  - lat: 40.568510355844
                    long: -3.6894563456936
                  - lat: 40.568421714462
                    long: -3.6893814832481
                  - lat: 40.567515513117
                    long: -3.6889745578309
                  - lat: 40.567141675465
                    long: -3.6888807066031
                  - lat: 40.564948316443
                    long: -3.6878980748068
                  - lat: 40.563143857821
                    long: -3.6869444203299
                  - lat: 40.562816199184
                    long: -3.6868093605839
                  - lat: 40.562391132742
                    long: -3.6866340893206
                  - lat: 40.561815516485
                    long: -3.6864441705802
                  - lat: 40.559641639214
                    long: -3.6857270765577
                  - lat: 40.558089165769
                    long: -3.6849069872682
                  - lat: 40.554878604743
                    long: -3.6830067251908
                  - lat: 40.553826277731
                    long: -3.6823839990113
                  - lat: 40.552963400369
                    long: -3.6821432744801
                  - lat: 40.552903590012
                    long: -3.6821266047982
                  - lat: 40.552820942894
                    long: -3.682147970379
                  - lat: 40.55141677063
                    long: -3.6825110677383
                  - lat: 40.550700510746
                    long: -3.682047806824
                  - lat: 40.550415173104
                    long: -3.6819761753841
                  - lat: 40.550231847477
                    long: -3.6819464431455
                  - lat: 40.550189410697
                    long: -3.6819473117819
                  - lat: 40.550147087701
                    long: -3.6819441660611
                  - lat: 40.550105058653
                    long: -3.6819370078183
                  - lat: 40.550063592409
                    long: -3.6819260759946
                  - lat: 40.550022690361
                    long: -3.6819111344047
                  - lat: 40.549982800832
                    long: -3.6818925419119
                  - lat: 40.549944014599
                    long: -3.6818701813399
                  - lat: 40.5498943142
                    long: -3.6818348368858
                  - lat: 40.549870467802
                    long: -3.6818149899582
                  - lat: 40.549836247034
                    long: -3.681782282734
                  - lat: 40.549659011413
                    long: -3.6815891593427
                  - lat: 40.549204304552
                    long: -3.6811207759432
                  - lat: 40.549167009338
                    long: -3.6810746927785
                  - lat: 40.548953409892
                    long: -3.6806940145515
                  - lat: 40.548832915286
                    long: -3.6804265949491
                  - lat: 40.548768028468
                    long: -3.6802928385587
                  - lat: 40.548709409793
                    long: -3.6801961231846
                  - lat: 40.548634675672
                    long: -3.6801129328085
                  - lat: 40.548480029851
                    long: -3.6800455864278
                  - lat: 40.548415971868
                    long: -3.6800005327597
                  - lat: 40.54804840241
                    long: -3.6797417197734
                  - lat: 40.547810743427
                    long: -3.6795742142072
                  - lat: 40.54764281416
                    long: -3.679453945464
                  - lat: 40.547520392659
                    long: -3.6793298974266
                  - lat: 40.547443347656
                    long: -3.6792412536217
                  - lat: 40.547307792352
                    long: -3.6790679329807
                  - lat: 40.547222659782
                    long: -3.6789757832345
                  - lat: 40.547142705212
                    long: -3.6789223040521
                  - lat: 40.546820570169
                    long: -3.6787039956142
                  - lat: 40.546705966833
                    long: -3.6786291460229
                  - lat: 40.54660448976
                    long: -3.6785895039919
                  - lat: 40.546521618964
                    long: -3.6785570175865
                  - lat: 40.546501105419
                    long: -3.6785984987409
                  - lat: 40.545377119557
                    long: -3.678716007582
                  - lat: 40.543446135628
                    long: -3.6781390176323
                  - lat: 40.542982653357
                    long: -3.6779523655145
                  - lat: 40.541810678109
                    long: -3.6769728249113
                  - lat: 40.541743703319
                    long: -3.6769025965083
                  - lat: 40.541611502369
                    long: -3.6767404294792
                  - lat: 40.541461940304
                    long: -3.6765430162694
                  - lat: 40.541326250717
                    long: -3.676345743471
                  - lat: 40.541213066083
                    long: -3.6761359561092
                  - lat: 40.54115233612
                    long: -3.6760145419892
                  - lat: 40.541101323844
                    long: -3.67592593597
                  - lat: 40.541030576057
                    long: -3.6758229612649
                  - lat: 40.540952891681
                    long: -3.6757507378148
                  - lat: 40.540811404543
                    long: -3.6756357164312
                  - lat: 40.540669021616
                    long: -3.6755352111924
                  - lat: 40.54056727445
                    long: -3.6754645180634
                  - lat: 40.540414736831
                    long: -3.6753611955918
                  - lat: 40.540282439137
                    long: -3.6752768643072
                  - lat: 40.540136002123
                    long: -3.6751763199295
                  - lat: 40.539983412046
                    long: -3.6750649684513
                  - lat: 40.539861415417
                    long: -3.6749752979669
                  - lat: 40.539733790095
                    long: -3.674893010677
                  - lat: 40.539599451904
                    long: -3.6748032170022
                  - lat: 40.539420314191
                    long: -3.6747023466132
                  - lat: 40.539182157121
                    long: -3.6745740796525
                  - lat: 40.539049796142
                    long: -3.6745004846758
                  - lat: 40.538943791207
                    long: -3.6744645868102
                  - lat: 40.538631839205
                    long: -3.6743677120675
                  - lat: 40.538522987577
                    long: -3.6743101769348
                  - lat: 40.538394823983
                    long: -3.6742274148516
                  - lat: 40.538308315709
                    long: -3.6741696318067
                  - lat: 40.538227213094
                    long: -3.6741117850143
                  - lat: 40.538103093266
                    long: -3.6739859642313
                  - lat: 40.538035758431
                    long: -3.6738999161224
                  - lat: 40.537960433892
                    long: -3.6737781274083
                  - lat: 40.537887963765
                    long: -3.673645740202
                  - lat: 40.537793921737
                    long: -3.673473945967
                  - lat: 40.537678508574
                    long: -3.6732591809865
                  - lat: 40.537633256813
                    long: -3.6731092370429
                  - lat: 40.537604074758
                    long: -3.6729843692452
                  - lat: 40.537567144679
                    long: -3.6728131362097
                  - lat: 40.537501438556
                    long: -3.672431667396
                  - lat: 40.537480225248
                    long: -3.6723460827017
                  - lat: 40.537458970588
                    long: -3.6722675943165
                  - lat: 40.537437592293
                    long: -3.6722103475113
                  - lat: 40.537421646552
                    long: -3.6721639004026
                  - lat: 40.537386664921
                    long: -3.672106635797
                  - lat: 40.537354344558
                    long: -3.6720564826938
                  - lat: 40.537273592435
                    long: -3.6719381854756
                  - lat: 40.537212866601
                    long: -3.6718617710332
                  - lat: 40.537164303501
                    long: -3.6718007106029
                  - lat: 40.53712106933
                    long: -3.671768278947
                  - lat: 40.537088735244
                    long: -3.6717359562027
                  - lat: 40.53703732474
                    long: -3.6716997824764
                  - lat: 40.536996813633
                    long: -3.6716638357367
                  - lat: 40.536942831865
                    long: -3.6716205516322
                  - lat: 40.536824001621
                    long: -3.6715126207499
                  - lat: 40.536753818301
                    long: -3.67145134508
                  - lat: 40.536605253279
                    long: -3.671328830372
                  - lat: 40.53645386263
                    long: -3.6712135026519
                  - lat: 40.536367415188
                    long: -3.6711449805905
                  - lat: 40.536300029049
                    long: -3.6710829070836
                  - lat: 40.536059287813
                    long: -3.6709319621689
                  - lat: 40.535944129615
                    long: -3.6708586675226
                  - lat: 40.535841356273
                    long: -3.6707935259644
                  - lat: 40.535784478068
                    long: -3.670768044217
                  - lat: 40.535697719851
                    long: -3.6707530096195
                  - lat: 40.535600206836
                    long: -3.6707128353265
                  - lat: 40.53548146577
                    long: -3.6706049091217
                  - lat: 40.535316718684
                    long: -3.6704608653405
                  - lat: 40.535154620518
                    long: -3.6703276054812
                  - lat: 40.535030474062
                    long: -3.6702196268181
                  - lat: 40.534979104137
                    long: -3.6701763711828
                  - lat: 40.534930588414
                    long: -3.6701225171597
                  - lat: 40.53488477517
                    long: -3.6700686901379
                  - lat: 40.534839078581
                    long: -3.6699792052746
                  - lat: 40.534763757043
                    long: -3.6698717140353
                  - lat: 40.534667857436
                    long: -3.6697241083987
                  - lat: 40.534565660232
                    long: -3.669559437557
                  - lat: 40.534458099501
                    long: -3.6693875112175
                  - lat: 40.534395545937
                    long: -3.6692841746806
                  - lat: 40.532058663511
                    long: -3.6709786156292
                  - lat: 40.530864726682
                    long: -3.6723113875074
                  - lat: 40.528376558793
                    long: -3.6756992982059
                  - lat: 40.527240536312
                    long: -3.6765034563191
                  - lat: 40.526987825606
                    long: -3.6771821364824
                  - lat: 40.526113654692
                    long: -3.6755574477285
                  - lat: 40.525571007461
                    long: -3.6750421092684
                  - lat: 40.524361884003
                    long: -3.6720044113733
                  - lat: 40.524716358394
                    long: -3.6700230553521
                  - lat: 40.525003369357
                    long: -3.6676267271289
                  - lat: 40.524475015084
                    long: -3.6659533452972
                  - lat: 40.524463274111
                    long: -3.6659115545395
                icon: >-
                  https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png
                id: 561e04ed6aa918910c8b4592
                jurisdiction_elements:
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 5d9ee7bcde2efef4018b4569
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 64cb9cebaddc18074d0e4193
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 64cb9e98addc18074d0e4195
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 64cb9edb24ab2d777a0ca313
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 64df24ef07a26e434d01f893
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 667031dac97737f437009da6
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png
                    id: 5c9b55579650e67d42985e80
                    location_additional_data: {}
                    name: org.alcobendas
                    type: city
                    visible_name: Alcobendas
                    is_main: true
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                    id: 65c27852911e73e22d02f413
                    name: prueba
                    type: city
                    visible_name: prueba S y G
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/667b22cc072a7815151459.png
                    id: 65ea13f79f912150be097e22
                    name: prueba_copy
                    type: city
                    visible_name: prueba_copy
                    position:
                      address_string: 7CMF9HRJ+C9
                      lat: 23.391075815349
                      long: -10.419070926826
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png
                    id: 65ea172b751882bcdd08f9c2
                    name: prueba_copy_copy
                    type: city
                    visible_name: prueba_copy_copy
                    position:
                      lat: 23.391075815349
                      long: -10.419070926826
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png
                    id: 65ea1744b312b50dec003e12
                    name: prueba_copy_copy_copy
                    type: city
                    visible_name: prueba_copy_copy_copy
                    position:
                      lat: 23.391075815349
                      long: -10.419070926826
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/661016786f01f245765540.png
                    id: 66102b1ef3a7a40d9e07dcb2
                    name: prueba 66102b1e0f1ce0.98388817
                    type: city
                    visible_name: prueba 66102b1e0f1d69.43217378
                    position:
                      address_string: C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5417604
                      long: -3.6488851
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                    id: 6622699b678cd8206600a642
                    name: prueba 6622699b459009.72981868
                    type: city
                    visible_name: prueba 6622699b459072.064512034
                    position:
                      address_string: C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain4
                      lat: 40.5417604
                      long: -3.6488851
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a753e68c729442026.png
                    id: 662274499a752fef9c0d3fd2
                    name: prueba_copy 66227449a7bc29.71828875
                    type: city
                    visible_name: prueba_copy 66227449a7bc97.76088342
                    position:
                      address_string: 7CMF9HRJ+C9
                      lat: 23.391075815349
                      long: -10.419070926826
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/665f158dd7a2f696134412.png
                    id: 6622747196f67a49700e3773
                    name: PruebaRed
                    type: city
                    visible_name: Prueba Redireccion
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758676e710fb864221721.png
                    id: 663d17ac964ad414110d9154
                    name: prueba - rutas
                    type: city
                    visible_name: prueba - rutas
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 663d50f27849b9e1d40dac0a
                    name: prueba-redirect
                    type: city
                    visible_name: prueba-redirect
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 663d519e5827e05956040922
                    name: prueba-redirect 663d519e05b6c2.37692593
                    type: city
                    visible_name: prueba-redirect 663d519e05b745.04573792
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7f8c00d8bf483509589.png
                    id: 66a7f8c05adb7591e20f34a3
                    name: dsfdsf
                    type: city
                    visible_name: sdfdsf
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7fbae44082397700839.png
                    id: 66a7fbaece27438232094fb3
                    name: sdfsdffds
                    type: city
                    visible_name: sfdfsdf
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83602dcee520229024.png
                    id: 66ab8360fe792921890d0b93
                    name: xczxczxc
                    type: city
                    visible_name: zxczxc
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83991030e165490436.png
                    id: 66ab8399fe792921890d0b95
                    name: asdsad
                    type: city
                    visible_name: sdasd
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent:
                      - -3.6383701014039476
                      - 40.53726099591145
                      - -3.636267202837841
                      - 40.53737383778608
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab8630cd7f2176146195.png
                    id: 66ab8630a7ae91e5dd0513ad
                    name: dasdasd
                    type: city
                    visible_name: asdasdads
                    position:
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66feab42f3863925866863.png
                    id: 66acd7c67dcac6466406e973
                    name: prueba copy21
                    type: city
                    visible_name: prueba48
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66d8ab81aded9310723592.png
                    id: 66d8aaac847ce6c01b051c6a
                    name: Pruebas_00
                    type: city
                    visible_name: Subproyecto de Prueba 00
                    position:
                      address_string: Av. de la Zaporra, 30, 28108 Alcobendas, Madrid, Spain
                      lat: 40.536950952219
                      long: -3.6375723972414
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 66ec8a415944e6a1d70d294a
                    name: sdfsdf
                    type: city
                    visible_name: sdfsdf
                    position: {}
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e93a7fca30a7b0d7e04
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e94a7fca30a7b0d7e0c
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e94a7fca30a7b0d7e0d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletass
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e94a7fca30a7b0d7e0e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e94a7fca30a7b0d7e0f
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e94a7fca30a7b0d7e11
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                    id: 66f55e93a7fca30a7b0d7e03
                    location_additional_data: {}
                    name: org.alcobendas 2
                    type: city
                    visible_name: Alcobendas 66f55e93e28e50.95622604
                    position:
                      address_string: >-
                        C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.537075706835
                      long: -3.6352928421438
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e9cfc8304ec890065d6
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e9cfc8304ec890065de
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e9cfc8304ec890065df
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e9cfc8304ec890065e0
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e9cfc8304ec890065e1
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55e9cfc8304ec890065e3
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    id: 66f55e9cfc8304ec890065d5
                    location_additional_data: {}
                    name: org.alcobendas 66f55e9c25b230.62445164
                    type: city
                    visible_name: Alcobendas 66f55e9c25b292.93160889
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55eb3a7fca30a7b0d7e13
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55eb3a7fca30a7b0d7e1b
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55eb3a7fca30a7b0d7e1c
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55eb3a7fca30a7b0d7e1d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55eb3a7fca30a7b0d7e1e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 66f55eb3a7fca30a7b0d7e20
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    id: 66f55eb3a7fca30a7b0d7e12
                    location_additional_data: {}
                    name: org.alcobendas 66f55eb3782408.06642050
                    type: city
                    visible_name: Alcobendas 66f55eb3782462.71960258
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66fd515dd2918569942317.png
                    id: 66fd515e402343afa9009794
                    name: AlcobendasTest
                    type: city
                    visible_name: AlcobendasTest
                    position:
                      address_string: Av. de Peñalara, 14, 28108 Alcobendas, Madrid, Spain
                      lat: 40.534024499598
                      long: -3.6633100275929
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 66fd51c6768fcce869009695
                    name: TestOne
                    type: building
                    visible_name: TestOne
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 66fd6717b2e794c2750311ef
                    name: sadas
                    type: building
                    visible_name: dsds
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 66fe916a7ecd831d99057fae
                    name: fdgdfgg
                    type: city
                    visible_name: sadasdsf
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/663d17acab642804466040.png
                    id: 66febaa95704247b9101f8d4
                    name: prueba - rutas 66febaa9e601d7.81700930
                    type: city
                    visible_name: prueba - rutas 66febaa9e60247.16727571
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: true
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6707f0f2a56ab960053749.png
                    id: 6707cc6602f036033f087a1d
                    name: Documentación 2
                    type: building
                    visible_name: Prueba Documentación 2
                    position:
                      address_string: C. de Embajadores, 77, Arganzuela, 28012 Madrid, Spain
                      lat: 40.402644829153
                      long: -3.7004203901125
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 670802e62f9d4a71cd06a755
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 670802e62f9d4a71cd06a75d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 670802e62f9d4a71cd06a75e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 670802e62f9d4a71cd06a75f
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 670802e62f9d4a71cd06a760
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 670802e62f9d4a71cd06a762
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    id: 670802e62f9d4a71cd06a754
                    location_additional_data: {}
                    name: org.alcobendas 670802e6be8658.12404683
                    type: city
                    visible_name: Alcobendas 670802e6be86b5.23732963
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67096bc2ffc05a02a10aeb01
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67096bc2ffc05a02a10aeb09
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67096bc2ffc05a02a10aeb0a
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67096bc2ffc05a02a10aeb0b
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67096bc3ffc05a02a10aeb0c
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67096bc3ffc05a02a10aeb0e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    id: 67096bc2ffc05a02a10aeb00
                    location_additional_data: {}
                    name: org.alcobendas 67096bc2dbe5c3.49134378
                    type: city
                    visible_name: Alcobendas 67096bc2dbe626.22009007
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 67478f9898e9bea6e70a90b8
                    name: sasdda
                    type: city
                    visible_name: pruebas
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/675947afec6a2469197916.png
                    id: 675947b0f044affc53005ba8
                    name: Prueba QA
                    type: building
                    visible_name: Prueba QA
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678832b021303145868051.png
                    id: 678832b0deaa23504a049c36
                    name: bvnbvn
                    type: building
                    visible_name: vnbn
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 6788340c943dcdca3d0b7994
                    name: xcxcv
                    type: building
                    visible_name: xcvx
                    position: {}
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834b8890a3779c2073c94
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834b8890a3779c2073c9c
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834b8890a3779c2073c9d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletass
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834b8890a3779c2073c9e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834b8890a3779c2073c9f
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834b8890a3779c2073ca1
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                    id: 678834b8890a3779c2073c93
                    location_additional_data: {}
                    name: >-
                      org.alcobendas 66f55e93e28df4.433383312
                      678834b8c3dcd9.23960367
                    type: city
                    visible_name: Alcobendas 66f55e93e28e50.95622604 678834b8c3dd25.76718740
                    position:
                      address_string: >-
                        C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.537075706835
                      long: -3.6352928421438
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834e03ccfc90eab0a4843
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834e03ccfc90eab0a484b
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834e03ccfc90eab0a484c
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834e03ccfc90eab0a484d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834e03ccfc90eab0a484e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678834e03ccfc90eab0a4850
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                    id: 678834e03ccfc90eab0a4842
                    location_additional_data: {}
                    name: org.alcobendas 678834e037e4b0.37687067
                    type: city
                    visible_name: Alcobendas 678834e037e531.71607018
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 6788372e67c09c2f2f0909c3
                    name: xzcxzc
                    type: building
                    visible_name: xczxczxcxz
                    position: {}
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678837b72bdfe4fd820c4af3
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678837b72bdfe4fd820c4afb
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678837b72bdfe4fd820c4afc
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletass
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678837b72bdfe4fd820c4afd
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678837b72bdfe4fd820c4afe
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 678837b72bdfe4fd820c4b00
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.694952001222114
                      - 40.50117283
                      - -3.55027416
                      - 40.58886136999999
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                    id: 678837b72bdfe4fd820c4af2
                    location_additional_data: {}
                    name: >-
                      org.alcobendas 66f55e93e28df4.433383312
                      678837b7995d51.94642502
                    type: city
                    visible_name: Alcobendas 66f55e93e28e50.95622604 678837b7995da7.96927208
                    position:
                      address_string: >-
                        C. Clz8 G17 María Teresa, 10, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.537085389425
                      long: -3.634876818277
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fa592bdfe4fd820c4b04
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fa592bdfe4fd820c4b0c
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fa592bdfe4fd820c4b0d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletass
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fa592bdfe4fd820c4b0e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fa592bdfe4fd820c4b0f
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fa592bdfe4fd820c4b11
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                    id: 6788fa592bdfe4fd820c4b03
                    location_additional_data: {}
                    name: org.alcobendas 2 6788fa592cb379.01808297
                    type: city
                    visible_name: Alcobendas 66f55e93e28e50.95622604 6788fa592cb3b6.23533051
                    position:
                      address_string: >-
                        C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.537075706835
                      long: -3.6352928421438
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fab5deaa23504a049c38
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fab5deaa23504a049c40
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fab5deaa23504a049c41
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletass
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fab5deaa23504a049c42
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fab6deaa23504a049c43
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fab6deaa23504a049c45
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                    id: 6788fab5deaa23504a049c37
                    location_additional_data: {}
                    name: org.alcobendas 2 6788fab5d845e1.14038314
                    type: city
                    visible_name: Alcobendas 66f55e93e28e50.95622604 6788fab5d84645.20456436
                    position:
                      address_string: >-
                        C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.537075706835
                      long: -3.6352928421438
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe6867c09c2f2f0909c5
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe6867c09c2f2f0909cd
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe6867c09c2f2f0909ce
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletass
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe6867c09c2f2f0909cf
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe6867c09c2f2f0909d0
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe6867c09c2f2f0909d2
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                    id: 6788fe6867c09c2f2f0909c4
                    location_additional_data: {}
                    name: org.alcobendas 2 6788fe686b90d8.11238269
                    type: city
                    visible_name: Alcobendas 66f55e93e28e50.95622604 6788fe686b9136.06999346
                    position:
                      address_string: >-
                        C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.537075706835
                      long: -3.6352928421438
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe7fe05c80a755015855
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe7fe05c80a75501585d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe7fe05c80a75501585e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletass
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe7fe05c80a75501585f
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe7fe05c80a755015860
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788fe7fe05c80a755015862
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                    id: 6788fe7fe05c80a755015854
                    location_additional_data: {}
                    name: org.alcobendas 2 6788fe7f6fa3d3.89895977
                    type: city
                    visible_name: Alcobendas 66f55e93e28e50.95622604 6788fe7f6fa465.61898122
                    position:
                      address_string: >-
                        C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.537075706835
                      long: -3.6352928421438
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788feb7f9371c00d10b1b93
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788feb7f9371c00d10b1b9b
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788feb7f9371c00d10b1b9c
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788feb7f9371c00d10b1b9d
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788feb7f9371c00d10b1b9e
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 6788feb7f9371c00d10b1ba0
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                    id: 6788feb7f9371c00d10b1b92
                    location_additional_data: {}
                    name: org.alcobendass 6788feb77346e1.9556351oo
                    type: city
                    visible_name: Alcobendas 6788feb7734735.49508202
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 6788ff26890a3779c2073ca7
                    name: vbcb
                    type: building
                    visible_name: bcvbcv
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 6788ff3df9371c00d10b1ba3
                    name: zxczxcxz
                    type: building
                    visible_name: xcxzcxz
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 678abbbde8f9deafd60f708e
                    name: fdgdfgdfg
                    type: city
                    visible_name: fgdfg
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678e5cd089f0c939082671.png
                    id: 678e5cd054203c217a055dc6
                    name: nestor
                    type: building
                    visible_name: testNestor
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b47abce50676616067.png
                    id: 67b4b47b42839b62430b8483
                    name: jurisdictionElement prueba
                    type: building
                    visible_name: prueba jurisdictionElement
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b51484af1723070026.png
                    id: 67b4b51572ed11bc700c2824
                    name: prueba 1
                    type: city
                    visible_name: prueba 1
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent:
                      - -3.6664793853892252
                      - 40.531531171052336
                      - -3.6064955047159155
                      - 40.56840696769418
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67e890bb58e39372179361.png
                    id: 67c6f7e7af404fd6bc04f153
                    name: Alcobendas 1 subproyecto
                    type: city
                    visible_name: Alcobendas 1 subproyecto
                    position:
                      address_string: P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5375258
                      long: -3.6371678
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 67d197cde42d705904084ce3
                    name: preuab2
                    type: city
                    visible_name: pruebaaaa
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 67d19967a06bdf23380a9a76
                    name: prueba1
                    type: city
                    visible_name: crack
                    position:
                      address_string: >-
                        canino Canterac Park, C. Canterac, 28B, 47013
                        Valladolid, Spain
                      lat: 41.638658052263
                      long: -4.7141842143906
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 67d42f3d0f0b22f66907dbec
                    name: prueba3
                    type: building
                    visible_name: dasdasdasd
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 67d4549cc0c8e0cbca03a8f3
                    name: joseprueba
                    type: building
                    visible_name: jose
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67d455457febe717149554.png
                    id: 67d45545a906d3ff900946b5
                    name: crackfut
                    type: building
                    visible_name: crackmes
                    position: {}
                    is_main: false
                  - map_layers:
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67e7425479962014f00e34e3
                        is_default: false
                        color: '#000000'
                        internal_name: zones_prod:Alc_Distritos
                        name: Distritos
                        description: Distritos
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: ADMINISTRATIVE
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67e7425479962014f00e34eb
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                        name: Aparcapatinetes
                        description: Aparcapatinetes
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67e7425479962014f00e34ec
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcabicicletas
                        level: 8
                        map_layer_icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                        name: Aparcabicicletas
                        description: Aparcabicicletas
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                        mapLayerIcon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67e7425479962014f00e34ed
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                        name: Aparcamientos (PMR)
                        description: Aparcamientos (PMR)
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67e7425479962014f00e34ee
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_puntos_recarga
                        name: Puntos de Recarga
                        description: Puntos de Recarga
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: POI
                      - backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67e7425479962014f00e34f0
                        is_default: false
                        color: '#000000'
                        internal_name: buildings:alcobendas_poi_aparcapatinetes
                        name: MAINTENANCE PRUEBA
                        description: MAINTENANCE PRUEBA
                        preset: false
                        public: true
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: MAINTENANCE ASSET
                    extent:
                      - -3.70038574
                      - 40.50117283
                      - -3.55027416
                      - 40.58886137
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/689afb53e097c133825380.png
                    id: 67e7425479962014f00e34e2
                    location_additional_data: {}
                    name: org.alcobendas 67e74254a71995.25767502
                    type: building
                    visible_name: Alcobendas 67e74254a719f4.11715944
                    is_main: true
                  - map_layers: []
                    extent: []
                    guided_module: false
                    id: 67e7467679962014f00e34f3
                    name: Alcobendas 1 subproyecto 67e74676ee0f33.56206097
                    type: city
                    visible_name: Alcobendas 1 subproyecto 67e74676ee0f91.76578534
                    position:
                      address_string: P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5375258
                      long: -3.6371678
                    is_main: false
                  - map_layers: []
                    extent: []
                    guided_module: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6c2cd32a22461808825.png
                    id: 67f6c29287bcd0a4720254ca
                    name: QA Externo
                    type: building
                    visible_name: QA
                    position:
                      address_string: >-
                        Av. de los Montes de Oca, 14, 28703 San Sebastián de los
                        Reyes, Madrid, Spain
                      lat: 40.551773662072
                      long: -3.6149869900721
                    is_main: false
                  - map_layers: []
                    extent:
                      - -3.6364172109596353
                      - 40.53630460226685
                      - -3.6354953216164216
                      - 40.5367605591301
                    guided_module: false
                    id: 68a89596da168ede230eae43
                    name: prueba palomino
                    type: building
                    visible_name: prueba palomino
                    position: {}
                    is_main: false
                  - map_layers: []
                    extent:
                      - -3.636484806398722
                      - 40.5361976274601
                      - -3.6349743395421803
                      - 40.53675343031418
                    guided_module: false
                    id: 68a8d218e05a6efce8071d84
                    name: palominoo
                    type: city
                    visible_name: palomino
                    position: {}
                    is_main: false
                jurisdiction_id: org.alcobendas
                key_name: Alcobendas, Madrid
                locales:
                  - en
                  - es
                name: Alcobendas
                origin_devices:
                  - id: 5850de88e22c6d9f51b17715
                    options: []
                  - id: 5850de88e22c6d9f51b17717
                    options:
                      - ios
                  - id: 5850de88e22c6d9f51b17718
                    options:
                      - android
                      - internal
                  - id: 5850de88e22c6d9f51b17719
                    options:
                      - inperson
                      - internal
                  - id: 5850de88e22c6d9f51b1771a
                    options:
                      - inperson
                  - id: 5850de88e22c6d9f51b1771b
                    options:
                      - inperson
                      - email
                  - id: 5850de88e22c6d9f51b1771c
                    options:
                      - inperson
                  - id: 5850de88e22c6d9f51b1771d
                    options:
                      - facebook
                      - inperson
                  - id: 5850de88e22c6d9f51b1771e
                    options:
                      - twitter
                      - inperson
                  - id: 5850de88e22c6d9f51b17722
                    options:
                      - web_channel
                  - id: 59c3ad5e626fae16048b4567
                    options:
                      - internal
                      - inperson
                  - id: 5fd0d60b00674b94038b456b
                    options:
                      - android
                      - ios
                      - facebook
                      - twitter
                      - inperson
                      - web_channel
                      - internal
                      - email
                  - id: 60c09cdccdf34808168b4573
                    options:
                      - android
                lat: 40.5367233
                long: -3.6370633
                tags:
                  - name: Alcobendas
                    color: '#0271b8'
                    id: Alcobendas
                  - name: Cultura
                    color: '#000000'
                    id: Cultura
                  - name: Entretenimiento
                    color: '#000000'
                    id: Entretenimiento
                  - name: Social
                    color: '#000000'
                    id: Social
                  - name: Deportes
                    color: '#000000'
                    id: Deportes
                  - name: TACA
                    color: '#000000'
                    id: TACA
                  - name: Teatro
                    color: '#000000'
                    id: Teatro
                  - name: Ayuntamiento
                    color: '#000000'
                    id: Ayuntamiento
                  - name: Trámites
                    color: '#000000'
                    id: Trámites
                  - name: censo
                    color: '#000000'
                    id: censo
                  - name: consulta
                    color: '#000000'
                    id: consulta
                  - name: electoral
                    color: '#000000'
                    id: electoral
                  - name: elecciones
                    color: '#000000'
                    id: elecciones
                  - name: contrato,
                    color: '#000000'
                    id: contrato,
                  - name: bolsa,empleo,
                    color: '#000000'
                    id: bolsa,empleo,
                  - name: >-
                      movilidad, transporte, desplazamiento, coche, autobús,
                      metro, tren, patinete, bicicleta, car,
                    color: '#000000'
                    id: >-
                      movilidad, transporte, desplazamiento, coche, autobús,
                      metro, tren, patinete, bicicleta, car,
                  - name: Rutas biosaludables
                    color: '#000000'
                    id: Rutas biosaludables
                  - name: ruta, nadar, bici,
                    color: '#000000'
                    id: ruta, nadar, bici,
                  - name: Alumbrado
                    color: '#000000'
                    id: Alumbrado
                  - name: armarios de alumbrado
                    color: '#000000'
                    id: armarios de alumbrado
                  - name: adsa
                    color: '#000000'
                    id: adsa
                  - name: et
                    color: '#000000'
                    id: et
                  - name: noticias
                    color: '#000000'
                    id: noticias
                  - name: dadasda
                    color: '#000000'
                    id: dadasda
                  - name: 'no'
                    color: '#000000'
                    id: 'no'
                third_emails:
                  - comentarios.alcobendas@mejoratuciudad.org
                timezone: Europe/Madrid
                typologies:
                  - id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                typology_nodes:
                  - id: 5850dca2e22c6d9f51b00c59
                    color: '#f1c40f'
                    order: 0
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Nuevo
                  - id: 64ac2229512893e6a20abfb2
                    color: '#ff0000'
                    order: 0
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Prueba
                  - id: 6183cd316ac0f4001e8b4573
                    color: '#337ab7'
                    order: 0
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: En ejecución
                  - id: 62137c48dc539fcf0d8b4567
                    color: '#337ab7'
                    order: 1
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: No Solucionado
                  - id: 6183d57e6ac0f4021e8b4589
                    color: '#b290e0'
                    order: 1
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: Nuevo
                  - id: 59c3693622a293ad018b45d1
                    color: '#b39ddb'
                    order: 10
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: En consulta
                  - id: 6183cd683c69dc091e8b4593
                    color: '#ef6c00'
                    order: 10
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: Pte validar ejecución
                  - id: 62137d02648cf0e70d8b456e
                    color: '#ef6c00'
                    order: 10
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: Pte Validar Solucionado
                  - id: 5850dca2e22c6d9f51b00c5a
                    color: '#0c98f5'
                    order: 20
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: En ejecución
                  - id: 6183cddb8baf53bc208b4599
                    color: '#e91e63'
                    order: 20
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: Devuelto
                  - id: 6038dd859c1bc3f1088b45d2
                    color: '#084a87'
                    order: 25
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Pte validar ejecución
                  - id: 59c36970626faeab018b456c
                    color: '#993399'
                    order: 30
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Consultado
                  - id: 6183cce0d27499861d8b4567
                    color: '#33691e'
                    order: 30
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: En consulta
                  - id: 5850dca2e22c6d9f51b00c5b
                    color: '#21618c'
                    order: 40
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Resuelto
                  - id: 59c36995626fae09028b456c
                    color: '#3abdaa'
                    order: 50
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Devuelto
                  - id: 6183ce11390a87c71e8b4567
                    color: '#486634'
                    order: 50
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: Solucionado
                  - id: 59c3724d22a293ab018b45cd
                    color: '#8cbc2d'
                    order: 60
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Validado
                  - id: 5850dca2e22c6d9f51b00c5d
                    color: '#d35400'
                    order: 70
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Rechazado
                  - id: 6183ce283c69dc0d1e8b4567
                    color: '#b71b1c'
                    order: 70
                    typology:
                      id: 6183cc553c69dc0b1e8b4572
                      color: '#6c8ce0'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/6183cc553ca6c.png
                      location_type: geolocation
                      order: 2
                      public: false
                      visible_name: Inspección
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: false
                      with_medias: true
                      with_temporality_data: false
                    visible_name: Cancelado
                  - id: 59c369576b53f325138b4571
                    color: '#b71b1c'
                    order: 100
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Cancelado
                  - id: 5850dca2e22c6d9f51b00c5c
                    color: '#2e7d32'
                    order: 110
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Solucionado
                  - id: 650328c7f946773c920854d2
                    color: '#66a5db'
                    order: 115
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Pendiente de planificar
                  - id: 601937683dfd4806068b4568
                    color: '#978c8c'
                    order: 120
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    visible_name: Planificado en ejecución
                user_info:
                  - available: true
                    field: first_name
                  - available: true
                    field: last_name
                  - available: true
                    field: email
                  - available: true
                    field: phone
                  - available: false
                    field: secondary_phone
                  - available: true
                    field: twitter_nickname
                  - available: true
                    field: id_document
                  - available: false
                    field: gender
                  - available: true
                    field: birthday
                  - available: false
                    field: addresses
                  - available: true
                    field: address
                  - available: true
                    field: id_documents
                modules:
                  requests: true
                  requests_process: true
                  requests_comments: true
                  requests_worknotes: true
                  requests_reiterations: true
                  requests_complaints: true
                  user_evaluation: true
                  service_survey: true
                  alerts: true
                  inventory: false
                  news: false
                  backoffice_admin: true
                  app_configuration: true
                  notifications: true
                  planned_requests: true
                  planning: true
                  users: true
                  predetermined_response: true
                  predetermined_response_external_source: true
                  company_enquiry: true
                  layer: true
                  jurisdiction_element: true
                  webhook: true
                  user_guide: true
                  worklog: true
                  calendar: true
                app_urls:
                  web_url: https://mapa-canary.mejoratuciudad.org/
                  google_play_manager: >-
                    https://play.google.com/store/apps/details?id=com.radmas.iycp.production
                  google_play_citizens: >-
                    https://play.google.com/store/apps/details?id=com.radmas.iyc.alcobendas
                  app_store: https://apps.apple.com/app/id1309506191
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: app_key does not exist or is not allowed
  /jurisdiction/{jurisdiction_id}/jurisdiction-elements:
    get:
      tags:
        - Jurisdiction > Jurisdiction
      summary: Jurisdiction Elements List By Jurisdiction
      operationId: jurisdictionElementsListByJurisdiction
      description: >-
        **Request param**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_id | String | \[requerido\]  <br>ID funcional de la
        jurisdiccion (ejemplo MTC). |

        | type | String | \[opcional\]  <br>Admite los valores "all" "city" y
        "building" (por defecto "all"). |

        | app_element | String | \[opcional\]  <br>ID opcional de AppElement
        para filtro por configuracion. |


        Este endpoint devuelve una lista de elementos de jurisdiccion asociados
        a una jurisdiccion especifica, filtrados opcionalmente por tipo y por
        `app_element`. Si no se encuentran elementos de jurisdiccion, el
        resultado sera `null`.
      security:
        - bearerAuth: []
      parameters:
        - name: app_element
          in: query
          schema:
            type: string
          description: >-
            String. [optional] (null). ID opcional de AppElement para filtro por
            configuracion.
          example: '{{app_element_id}}'
        - name: type
          in: query
          schema:
            type: string
          description: >-
            string. [optional]. Admite los valores "all" "city" y "building".
            Por defecto "all".
          example: all
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID funcional de la jurisdiccion.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 5d9ee7bcde2efef4018b4569
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 64cb9cebaddc18074d0e4193
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 64cb9e98addc18074d0e4195
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 64cb9edb24ab2d777a0ca313
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 64df24ef07a26e434d01f893
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 667031dac97737f437009da6
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/68b07c80bf965138300805.png
                  id: 5c9b55579650e67d42985e80
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas
                  type: city
                  visible_name: Alcobendas
                  is_main: true
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                  id: 65c27852911e73e22d02f413
                  name: prueba
                  type: city
                  visible_name: prueba S y G
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/667b22cc072a7815151459.png
                  id: 65ea13f79f912150be097e22
                  name: prueba_copy
                  type: city
                  visible_name: prueba_copy
                  position:
                    address_string: 7CMF9HRJ+C9
                    lat: 23.391075815349
                    long: -10.419070926826
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png
                  id: 65ea172b751882bcdd08f9c2
                  name: prueba_copy_copy
                  type: city
                  visible_name: prueba_copy_copy
                  position:
                    lat: 23.391075815349
                    long: -10.419070926826
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/65c2a30c28661182422543.png
                  id: 65ea1744b312b50dec003e12
                  name: prueba_copy_copy_copy
                  type: city
                  visible_name: prueba_copy_copy_copy
                  position:
                    lat: 23.391075815349
                    long: -10.419070926826
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/661016786f01f245765540.png
                  id: 66102b1ef3a7a40d9e07dcb2
                  name: prueba 66102b1e0f1ce0.98388817
                  type: city
                  visible_name: prueba 66102b1e0f1d69.43217378
                  position:
                    address_string: C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain
                    lat: 40.5417604
                    long: -3.6488851
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a3a48e15542659611.png
                  id: 6622699b678cd8206600a642
                  name: prueba 6622699b459009.72981868
                  type: city
                  visible_name: prueba 6622699b459072.064512034
                  position:
                    address_string: C. de Huelva, 6, 28100 Alcobendas, Madrid, Spain4
                    lat: 40.5417604
                    long: -3.6488851
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66183a753e68c729442026.png
                  id: 662274499a752fef9c0d3fd2
                  name: prueba_copy 66227449a7bc29.71828875
                  type: city
                  visible_name: prueba_copy 66227449a7bc97.76088342
                  position:
                    address_string: 7CMF9HRJ+C9
                    lat: 23.391075815349
                    long: -10.419070926826
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/665f158dd7a2f696134412.png
                  id: 6622747196f67a49700e3773
                  name: PruebaRed
                  type: city
                  visible_name: Prueba Redireccion
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758676e710fb864221721.png
                  id: 663d17ac964ad414110d9154
                  name: prueba - rutas
                  type: city
                  visible_name: prueba - rutas
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 663d50f27849b9e1d40dac0a
                  name: prueba-redirect
                  type: city
                  visible_name: prueba-redirect
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 663d519e5827e05956040922
                  name: prueba-redirect 663d519e05b6c2.37692593
                  type: city
                  visible_name: prueba-redirect 663d519e05b745.04573792
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7f8c00d8bf483509589.png
                  id: 66a7f8c05adb7591e20f34a3
                  name: dsfdsf
                  type: city
                  visible_name: sdfdsf
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66a7fbae44082397700839.png
                  id: 66a7fbaece27438232094fb3
                  name: sdfsdffds
                  type: city
                  visible_name: sfdfsdf
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83602dcee520229024.png
                  id: 66ab8360fe792921890d0b93
                  name: xczxczxc
                  type: city
                  visible_name: zxczxc
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab83991030e165490436.png
                  id: 66ab8399fe792921890d0b95
                  name: asdsad
                  type: city
                  visible_name: sdasd
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent:
                    - -3.6383701014039476
                    - 40.53726099591145
                    - -3.636267202837841
                    - 40.53737383778608
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66ab8630cd7f2176146195.png
                  id: 66ab8630a7ae91e5dd0513ad
                  name: dasdasd
                  type: city
                  visible_name: asdasdads
                  position:
                    address_string: Alcobendas, Madrid, Spain
                    lat: 40.5372512
                    long: -3.6372245
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66feab42f3863925866863.png
                  id: 66acd7c67dcac6466406e973
                  name: prueba copy21
                  type: city
                  visible_name: prueba48
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66d8ab81aded9310723592.png
                  id: 66d8aaac847ce6c01b051c6a
                  name: Pruebas_00
                  type: city
                  visible_name: Subproyecto de Prueba 00
                  position:
                    address_string: Av. de la Zaporra, 30, 28108 Alcobendas, Madrid, Spain
                    lat: 40.536950952219
                    long: -3.6375723972414
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 66ec8a415944e6a1d70d294a
                  name: sdfsdf
                  type: city
                  visible_name: sdfsdf
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e93a7fca30a7b0d7e04
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e94a7fca30a7b0d7e0c
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e94a7fca30a7b0d7e0d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletass
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e94a7fca30a7b0d7e0e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e94a7fca30a7b0d7e0f
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e94a7fca30a7b0d7e11
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                  id: 66f55e93a7fca30a7b0d7e03
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 2
                  type: city
                  visible_name: Alcobendas 66f55e93e28e50.95622604
                  position:
                    address_string: >-
                      C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                      Spain
                    lat: 40.537075706835
                    long: -3.6352928421438
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e9cfc8304ec890065d6
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e9cfc8304ec890065de
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e9cfc8304ec890065df
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e9cfc8304ec890065e0
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e9cfc8304ec890065e1
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55e9cfc8304ec890065e3
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  id: 66f55e9cfc8304ec890065d5
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 66f55e9c25b230.62445164
                  type: city
                  visible_name: Alcobendas 66f55e9c25b292.93160889
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55eb3a7fca30a7b0d7e13
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55eb3a7fca30a7b0d7e1b
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55eb3a7fca30a7b0d7e1c
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55eb3a7fca30a7b0d7e1d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55eb3a7fca30a7b0d7e1e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 66f55eb3a7fca30a7b0d7e20
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  id: 66f55eb3a7fca30a7b0d7e12
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 66f55eb3782408.06642050
                  type: city
                  visible_name: Alcobendas 66f55eb3782462.71960258
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/66fd515dd2918569942317.png
                  id: 66fd515e402343afa9009794
                  name: AlcobendasTest
                  type: city
                  visible_name: AlcobendasTest
                  position:
                    address_string: Av. de Peñalara, 14, 28108 Alcobendas, Madrid, Spain
                    lat: 40.534024499598
                    long: -3.6633100275929
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 66fd51c6768fcce869009695
                  name: TestOne
                  type: building
                  visible_name: TestOne
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 66fd6717b2e794c2750311ef
                  name: sadas
                  type: building
                  visible_name: dsds
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 66fe916a7ecd831d99057fae
                  name: fdgdfgg
                  type: city
                  visible_name: sadasdsf
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/663d17acab642804466040.png
                  id: 66febaa95704247b9101f8d4
                  name: prueba - rutas 66febaa9e601d7.81700930
                  type: city
                  visible_name: prueba - rutas 66febaa9e60247.16727571
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: true
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6707f0f2a56ab960053749.png
                  id: 6707cc6602f036033f087a1d
                  name: Documentación 2
                  type: building
                  visible_name: Prueba Documentación 2
                  position:
                    address_string: C. de Embajadores, 77, Arganzuela, 28012 Madrid, Spain
                    lat: 40.402644829153
                    long: -3.7004203901125
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 670802e62f9d4a71cd06a755
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 670802e62f9d4a71cd06a75d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 670802e62f9d4a71cd06a75e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 670802e62f9d4a71cd06a75f
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 670802e62f9d4a71cd06a760
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 670802e62f9d4a71cd06a762
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  id: 670802e62f9d4a71cd06a754
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 670802e6be8658.12404683
                  type: city
                  visible_name: Alcobendas 670802e6be86b5.23732963
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67096bc2ffc05a02a10aeb01
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67096bc2ffc05a02a10aeb09
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67096bc2ffc05a02a10aeb0a
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67096bc2ffc05a02a10aeb0b
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67096bc3ffc05a02a10aeb0c
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67096bc3ffc05a02a10aeb0e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  id: 67096bc2ffc05a02a10aeb00
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 67096bc2dbe5c3.49134378
                  type: city
                  visible_name: Alcobendas 67096bc2dbe626.22009007
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 67478f9898e9bea6e70a90b8
                  name: sasdda
                  type: city
                  visible_name: pruebas
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/675947afec6a2469197916.png
                  id: 675947b0f044affc53005ba8
                  name: Prueba QA
                  type: building
                  visible_name: Prueba QA
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678832b021303145868051.png
                  id: 678832b0deaa23504a049c36
                  name: bvnbvn
                  type: building
                  visible_name: vnbn
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 6788340c943dcdca3d0b7994
                  name: xcxcv
                  type: building
                  visible_name: xcvx
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834b8890a3779c2073c94
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834b8890a3779c2073c9c
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834b8890a3779c2073c9d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletass
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834b8890a3779c2073c9e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834b8890a3779c2073c9f
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834b8890a3779c2073ca1
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                  id: 678834b8890a3779c2073c93
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: >-
                    org.alcobendas 66f55e93e28df4.433383312
                    678834b8c3dcd9.23960367
                  type: city
                  visible_name: Alcobendas 66f55e93e28e50.95622604 678834b8c3dd25.76718740
                  position:
                    address_string: >-
                      C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                      Spain
                    lat: 40.537075706835
                    long: -3.6352928421438
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834e03ccfc90eab0a4843
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834e03ccfc90eab0a484b
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834e03ccfc90eab0a484c
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834e03ccfc90eab0a484d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834e03ccfc90eab0a484e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678834e03ccfc90eab0a4850
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                  id: 678834e03ccfc90eab0a4842
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 678834e037e4b0.37687067
                  type: city
                  visible_name: Alcobendas 678834e037e531.71607018
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 6788372e67c09c2f2f0909c3
                  name: xzcxzc
                  type: building
                  visible_name: xczxczxcxz
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678837b72bdfe4fd820c4af3
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678837b72bdfe4fd820c4afb
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678837b72bdfe4fd820c4afc
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletass
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678837b72bdfe4fd820c4afd
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678837b72bdfe4fd820c4afe
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 678837b72bdfe4fd820c4b00
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.694952001222114
                    - 40.50117283
                    - -3.55027416
                    - 40.58886136999999
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                  id: 678837b72bdfe4fd820c4af2
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: >-
                    org.alcobendas 66f55e93e28df4.433383312
                    678837b7995d51.94642502
                  type: city
                  visible_name: Alcobendas 66f55e93e28e50.95622604 678837b7995da7.96927208
                  position:
                    address_string: >-
                      C. Clz8 G17 María Teresa, 10, 28108 Alcobendas, Madrid,
                      Spain
                    lat: 40.537085389425
                    long: -3.634876818277
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fa592bdfe4fd820c4b04
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fa592bdfe4fd820c4b0c
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fa592bdfe4fd820c4b0d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletass
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fa592bdfe4fd820c4b0e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fa592bdfe4fd820c4b0f
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fa592bdfe4fd820c4b11
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                  id: 6788fa592bdfe4fd820c4b03
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 2 6788fa592cb379.01808297
                  type: city
                  visible_name: Alcobendas 66f55e93e28e50.95622604 6788fa592cb3b6.23533051
                  position:
                    address_string: >-
                      C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                      Spain
                    lat: 40.537075706835
                    long: -3.6352928421438
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fab5deaa23504a049c38
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fab5deaa23504a049c40
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fab5deaa23504a049c41
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletass
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fab5deaa23504a049c42
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fab6deaa23504a049c43
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fab6deaa23504a049c45
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                  id: 6788fab5deaa23504a049c37
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 2 6788fab5d845e1.14038314
                  type: city
                  visible_name: Alcobendas 66f55e93e28e50.95622604 6788fab5d84645.20456436
                  position:
                    address_string: >-
                      C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                      Spain
                    lat: 40.537075706835
                    long: -3.6352928421438
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe6867c09c2f2f0909c5
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe6867c09c2f2f0909cd
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe6867c09c2f2f0909ce
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletass
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe6867c09c2f2f0909cf
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe6867c09c2f2f0909d0
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe6867c09c2f2f0909d2
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                  id: 6788fe6867c09c2f2f0909c4
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 2 6788fe686b90d8.11238269
                  type: city
                  visible_name: Alcobendas 66f55e93e28e50.95622604 6788fe686b9136.06999346
                  position:
                    address_string: >-
                      C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                      Spain
                    lat: 40.537075706835
                    long: -3.6352928421438
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe7fe05c80a755015855
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe7fe05c80a75501585d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe7fe05c80a75501585e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletass
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe7fe05c80a75501585f
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe7fe05c80a755015860
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788fe7fe05c80a755015862
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/6758662f43400560297339.png
                  id: 6788fe7fe05c80a755015854
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 2 6788fe7f6fa3d3.89895977
                  type: city
                  visible_name: Alcobendas 66f55e93e28e50.95622604 6788fe7f6fa465.61898122
                  position:
                    address_string: >-
                      C. Clz8 G17 María Teresa, 8, 28108 Alcobendas, Madrid,
                      Spain
                    lat: 40.537075706835
                    long: -3.6352928421438
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788feb7f9371c00d10b1b93
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788feb7f9371c00d10b1b9b
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788feb7f9371c00d10b1b9c
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788feb7f9371c00d10b1b9d
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788feb7f9371c00d10b1b9e
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 6788feb7f9371c00d10b1ba0
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                  id: 6788feb7f9371c00d10b1b92
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendass 6788feb77346e1.9556351oo
                  type: city
                  visible_name: Alcobendas 6788feb7734735.49508202
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 6788ff26890a3779c2073ca7
                  name: vbcb
                  type: building
                  visible_name: bcvbcv
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 6788ff3df9371c00d10b1ba3
                  name: zxczxcxz
                  type: building
                  visible_name: xcxzcxz
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 678abbbde8f9deafd60f708e
                  name: fdgdfgdfg
                  type: city
                  visible_name: fgdfg
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/678e5cd089f0c939082671.png
                  id: 678e5cd054203c217a055dc6
                  name: nestor
                  type: building
                  visible_name: testNestor
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b47abce50676616067.png
                  id: 67b4b47b42839b62430b8483
                  name: jurisdictionElement prueba
                  type: building
                  visible_name: prueba jurisdictionElement
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67b4b51484af1723070026.png
                  id: 67b4b51572ed11bc700c2824
                  name: prueba 1
                  type: city
                  visible_name: prueba 1
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent:
                    - -3.6664793853892252
                    - 40.531531171052336
                    - -3.6064955047159155
                    - 40.56840696769418
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67e890bb58e39372179361.png
                  id: 67c6f7e7af404fd6bc04f153
                  name: Alcobendas 1 subproyecto
                  type: city
                  visible_name: Alcobendas 1 subproyecto
                  position:
                    address_string: P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain
                    lat: 40.5375258
                    long: -3.6371678
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 67d197cde42d705904084ce3
                  name: preuab2
                  type: city
                  visible_name: pruebaaaa
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 67d19967a06bdf23380a9a76
                  name: prueba1
                  type: city
                  visible_name: crack
                  position:
                    address_string: >-
                      canino Canterac Park, C. Canterac, 28B, 47013 Valladolid,
                      Spain
                    lat: 41.638658052263
                    long: -4.7141842143906
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 67d42f3d0f0b22f66907dbec
                  name: prueba3
                  type: building
                  visible_name: dasdasdasd
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 67d4549cc0c8e0cbca03a8f3
                  name: joseprueba
                  type: building
                  visible_name: jose
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67d455457febe717149554.png
                  id: 67d45545a906d3ff900946b5
                  name: crackfut
                  type: building
                  visible_name: crackmes
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67e7425479962014f00e34e3
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67e7425479962014f00e34eb
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                      name: Aparcapatinetes
                      description: Aparcapatinetes
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/667bf66bad37e955631222.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67e7425479962014f00e34ec
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcabicicletas
                      level: 8
                      map_layer_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                      name: Aparcabicicletas
                      description: Aparcabicicletas
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                      mapLayerIcon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/map_layer_icons/663a7c3c6ad3d712932866.png
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67e7425479962014f00e34ed
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcamientos_pmr
                      name: Aparcamientos (PMR)
                      description: Aparcamientos (PMR)
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67e7425479962014f00e34ee
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_puntos_recarga
                      name: Puntos de Recarga
                      description: Puntos de Recarga
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: POI
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 67e7425479962014f00e34f0
                      is_default: false
                      color: '#000000'
                      internal_name: buildings:alcobendas_poi_aparcapatinetes
                      name: MAINTENANCE PRUEBA
                      description: MAINTENANCE PRUEBA
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: MAINTENANCE ASSET
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/689afb53e097c133825380.png
                  id: 67e7425479962014f00e34e2
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: oij
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        required: false
                        response_attribute: Barrio
                        default_value: ''
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: text
                          active: true
                          code: email
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67b7379e336c4a5e470bb672
                          question: Email
                          question_translations:
                            es: ''
                            en: Email
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: org.alcobendas 67e74254a71995.25767502
                  type: building
                  visible_name: Alcobendas 67e74254a719f4.11715944
                  is_main: true
                - map_layers: []
                  extent: []
                  guided_module: false
                  id: 67e7467679962014f00e34f3
                  name: Alcobendas 1 subproyecto 67e74676ee0f33.56206097
                  type: city
                  visible_name: Alcobendas 1 subproyecto 67e74676ee0f91.76578534
                  position:
                    address_string: P.º de la Chopera, 2, 28100 Alcobendas, Madrid, Spain
                    lat: 40.5375258
                    long: -3.6371678
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent: []
                  guided_module: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/67f6c2cd32a22461808825.png
                  id: 67f6c29287bcd0a4720254ca
                  name: QA Externo
                  type: building
                  visible_name: QA
                  position:
                    address_string: >-
                      Av. de los Montes de Oca, 14, 28703 San Sebastián de los
                      Reyes, Madrid, Spain
                    lat: 40.551773662072
                    long: -3.6149869900721
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent:
                    - -3.6364172109596353
                    - 40.53630460226685
                    - -3.6354953216164216
                    - 40.5367605591301
                  guided_module: false
                  id: 68a89596da168ede230eae43
                  name: prueba palomino
                  type: building
                  visible_name: prueba palomino
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent:
                    - -3.636484806398722
                    - 40.5361976274601
                    - -3.6349743395421803
                    - 40.53675343031418
                  guided_module: false
                  id: 68a8d218e05a6efce8071d84
                  name: palominoo
                  type: city
                  visible_name: palomino
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent:
                    - -3.6264635364355704
                    - 40.54572226159695
                    - -3.6256815675974927
                    - 40.54624886263457
                  guided_module: false
                  id: 68dd31d10cc6fbfdba0e4973
                  name: prueba_principal
                  type: city
                  visible_name: principal de prueba
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent:
                    - -3.6286929719797625
                    - 40.5437731040285
                    - -3.6280609025671957
                    - 40.54414322936694
                  guided_module: false
                  id: 68dd339197d82fed2001cc33
                  name: prueba_#
                  type: city
                  visible_name: prueba
                  position:
                    location_additional_data: []
                  is_main: false
                - map_layers: []
                  extent:
                    - -3.633987562442894
                    - 40.536512105867445
                    - -3.6329365753912812
                    - 40.53708537841831
                  guided_module: false
                  id: 68dd34790a583c63c9026a84
                  name: para_otra_prueba
                  type: city
                  visible_name: para otra pueba
                  position:
                    location_additional_data: []
                  is_main: false
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: >-
                  Parameter "app_element" of value "65f1e0b6f6a2a8d1c1a9a22"
                  violated a constraint "Ids are not valid"
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: jurisdiction_id was not found
  /jurisdiction/{jurisdiction_mongo_id}/jurisdictionElements:
    get:
      tags:
        - Jurisdiction > Jurisdiction
      summary: Jurisdiction Elements By Jurisdiction Mongo Id (Deprecated)
      operationId: jurisdictionElementsByJurisdictionMongoIdDeprecated
      description: >-
        **Description**


        Deprecated endpoint that returns jurisdiction elements by MongoDB id.
        This endpoint can serialize a large amount of data and should be
        replaced by `GET
        /jurisdiction/{{jurisdiction_id}}/jurisdiction-elements` whenever
        possible.


        **Request Params**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_mongo_id | String | \[required\]. MongoDB ObjectId de la
        jurisdiccion. |
      security:
        - noauthAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          description: >-
            String. [optional]. Client identifier when
            mandatory_client_header=true.
          example: '{{clientId}}'
        - name: jurisdiction_mongo_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. MongoDB ObjectId of the jurisdiction.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - id: 65f1e0b6f6a2a8d1c1a9aaaa
                  type: district
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: jurisdiction_mongo_id was not found
  /jurisdiction/{jurisdiction_id}/jurisdiction-element:
    get:
      tags:
        - Jurisdiction > Jurisdiction
      summary: Jurisdiction Element By Lat And Lng
      operationId: jurisdictionElementByLatAndLng
      description: >-
        **Description**


        Este endpoint busca y devuelve los elementos de jurisdicción
        (JurisdictionElement) que contienen las coordenadas geográficas
        especificadas. Utiliza GeoServer para determinar qué elemento de
        jurisdicción corresponde a una ubicación específica basándose en el
        perímetro configurado (perimeterMapLayer) de la jurisdicción.


        **Request Param**


        | Campo | **Tipo** | **Description** |

        | --- | --- | --- |

        | jurisdiction_id | String | \[required\] Es el jurisdiction_id de la
        jurisdicción (ej: es.madrid) |
      parameters:
        - name: lat
          in: query
          schema:
            type: string
          required: true
          description: Float.. Latitud de la ubicación a consultar
          example: '{{latitude}}'
        - name: lng
          in: query
          schema:
            type: string
          required: true
          description: Float.. Longitud de la ubicación a consulta
          example: '{{longitude}}'
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                map_layers:
                  - backend: OWS
                    endpoint: https://gis.mejoratuciudad.org/geoserver
                    id: 694939992c7a8694cb0b9a07
                    is_default: false
                    color: '#000000'
                    internal_name: buildings:custom_zones_fixtures
                    name: FixtureZones
                    description: Test Layer 5
                    preset: false
                    public: true
                    tags: []
                    token: 489780ae-39e0-40bf-93e3-57565431454a
                    type: WORK
                extent: []
                geoserver_perimeter_id: custom_zones_fixtures.13
                guided_module: false
                icon: >-
                  https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/icon_mock.png
                id: 694939982c7a8694cb0b98b9
                name: madrid
                type: city
                visible_name: Madrid
                is_main: false
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: latitude or longitude not provided
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: jurisdiction_id was not found
  /jurisdiction_preferences/{jurisdiction_id}:
    get:
      tags:
        - Jurisdiction > JurisdictionOpen010User
      summary: Get Preferences
      operationId: getPreferences
      description: >-
        **Request param**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_id | String | \[requerido\]  <br>jurisdiction_id de mongo
        de la jurisdicción de la cual se desean consultar. |


        Este endpoint permite **obtener las preferencias de configuración
        Open010 asociadas a una jurisdicción**, identificada por su
        `jurisdiction_id`, retornando los parámetros y ajustes definidos para
        dicha jurisdicción que controlan el comportamiento y personalización del
        sistema.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 68829cebed7baf72480a1533
                widget_buttons_ids: []
    put:
      tags:
        - Jurisdiction > JurisdictionOpen010User
      summary: Update Preferences
      operationId: updatePreferences
      description: >-
        Este endpoint permite a un usuario autenticado guardar y ordenar sus
        botones de widgets favoritos dentro de una jurisdicción específica.


        En términos simples: el usuario personaliza qué acciones rápidas
        (widgets) quiere ver en su interfaz de la app, y en qué orden aparecen.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_id | String | \[required\]. Identificador interno de la
        jurisdicción |

        | widget_buttons_ids | Array | \[optional\]. Lista ordenada de IDs de
        botones de widgets del usuario. Por defecto: \[\] |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                widget_buttons_ids:
                  - '{{objectId}}'
                  - '{{objectId}}'
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 6945713ea3a8f68c2b011555
                widget_buttons_ids:
                  - 69457145a3a8f68c2b01155a
                  - 69457145a3a8f68c2b01155b
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Update Preferences user not authenticated
                  value:
                    - code: 403
                      description: Access Denied
                example-1:
                  summary: Update Preferences user not related with jurisdiction
                  value:
                    - code: 403
                      description: Jurisdiction By User No Exist
  /jurisdiction-element/service/{service_id}:
    get:
      tags:
        - JurisdictionElement
      summary: List JurisdictionElements By Service
      operationId: listJurisdictionElementsByService
      description: >-
        Este endpoint obtiene la lista de IDs de elementos de jurisdicción
        (JurisdictionElements) donde el usuario autenticado tiene permiso de
        creación (CREATE) para un servicio específico.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | service_id | String | \[required\]. ID del servicio para el cual se
        quieren obtener los elementos de jurisdicción |
      security:
        - noauthAuth: []
      parameters:
        - name: service_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso service id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - 5c9b55579650e67d42985e80
                - 5c9b55579650e67d42985e81
                - 5c9b55579650e67d42985e82
            text/plain:
              schema:
                type: string
              example: '[]'
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Object not found
  /legal-terms:
    get:
      tags:
        - LegalTerms > LegalTerms
      summary: Get LegalTerms
      operationId: getLegalTerms
      description: Endpoint que permite obtener los términos legales asociados al cliente.
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          description: Identificador del cliente Open010. Requerido para este endpoint.
          example: '{{clientId}}'
        - name: Accept
          in: header
          schema:
            type: string
          description: Opcional. Valor recomendado para respuesta JSON.
          example: application/json
        - name: Authorization
          in: header
          schema:
            type: string
          description: Opcional. Incluir solo para pruebas en contexto autenticado.
          example: Bearer {{token_public}}
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 65f1e0b6f6a2a8d1c1a9a888
                termsOfUse:
                  date: '2026-01-10T00:00:00+00:00'
                  type: html
                  content: <p>...</p>
                  version: 4
                legal_text:
                  terms_of_use: >-
                    https://<host>/public-api/legal-text.json?legal_policy_type=terms_of_use&legal_terms_id=65f1e0b6f6a2a8d1c1a9a888
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: Client not found
  /legal-terms-by-jurisdiction:
    get:
      tags:
        - LegalTerms > LegalTerms
      summary: Get LegalTerms By Jurisdiction
      operationId: getLegalTermsByJurisdiction
      description: >-
        ## Descripcion


        Obtiene los textos legales (URLs) configurados para una jurisdicción y
        tipo de aplicación.


        ## Autenticacion


        - `X-CLIENT-ID`: `{{clientId}}` (requerido solo si
        `mandatory_client_header=true`).

        - `Authorization`: `Bearer {{token_public}}` (opcional; no requerido
        para este endpoint).


        ## Response


        - `200 OK`: Devuelve el objeto `legal_text` con URLs a cada política
        disponible.
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          description: >-
            Identificador del cliente. Requerido solo si
            mandatory_client_header=true.
          example: '{{clientId}}'
        - name: Authorization
          in: header
          schema:
            type: string
          description: Opcional. No requerido para ejecutar este endpoint.
          example: Bearer {{token_public}}
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: String.. ID funcional de la jurisdicción.
          example: '{{jurisdiction_id}}'
        - name: type
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Tipo de aplicación (validado por
            ValidateAppTypeConstraint).
          example: citizen
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                legal_text:
                  privacy_policy: >-
                    https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=privacy_policy
                  terms_of_use: >-
                    https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=terms_of_use
                  cookies_policy: >-
                    https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=cookies_policy
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: Application was not found
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Object not found
  /legal-text:
    get:
      tags:
        - LegalTerms > LegalTerms
      summary: Get LegalText
      operationId: getLegalText
      description: >-
        El endpoint permite obtener el contenido HTML de un documento legal
        específico (política de privacidad, términos de uso, accesibilidad o
        política de cookies) a partir de su identificador. Recibe dos
        parámetros: legal_terms_id para localizar el conjunto de términos
        legales en la base de datos, y legal_policy_type para indicar qué tipo
        de documento dentro de ese conjunto se desea obtener, devolviendo
        directamente el HTML listo para ser renderizado en una aplicación
        cliente.
      parameters:
        - name: legal_policy_type
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. . String. Indica el tipo de documento legal a obtener.
            Valores válidos: privacy_policy, terms_of_use, accessibility,
            cookies_policy
          example: privacy_policy
        - name: legal_terms_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. . String. El identificador único del documento de términos
            legales del cual se quiere extraer la política específica
          example: '{{legal_terms_id}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: text/html
          content:
            text/plain:
              schema:
                type: string
              examples:
                example-0:
                  summary: Get LegalText Privacy Policy
                  value: "<html>\n<p style=\"text-align: center;\"><b><span>POLÍTICA DE PRIVACIDAD</span></b></p>\n\n<p><span>Actualización: 18/06/2021</span></p>\n\n<ul>\n    <li>\n        <p><span>Responsable del Tratamiento: Ayuntamiento de Guadalajara</span></p>\n    </li>\n\n    <li>\n        <p><span>CIF: P1915500A</span></p>\n    </li>\n\n    <li>\n        <p><span>Dirección: Plaza Mayor, 1, 19001, Guadalajara</span></p>\n    </li>\n</ul>\n\n<p><span>La utilización de la aplicación móvil te atribuye la condición de usuario de la misma e implica la aceptación plena y sin reservas de todas y cada una de las disposiciones incluidas en la presente política. En consecuencia, se recomienda al Usuario la lectura periódica de las mismas, ya que pueden estar sujetas a modificaciones para adaptarlas a novedades legislativas y jurisprudenciales, circunstancia de la que se informaría previamente, en su caso. El uso ininterrumpido por tu parte de la Plataforma supondrá la aceptación de estas modificaciones.</span>\n</p>\n\n<p><span>El término “Plataforma” se refiere al conjunto de API, SDK, plugins, código, especificaciones, documentación, tecnología y servicios (como el contenido) que permiten que otras personas, incluidos los desarrolladores de aplicaciones y los operadores de sitios web, obtengan datos de o nos los proporcionen a nosotros.</span>\n</p>\n\n<p><span>El Usuario se compromete a utilizar el Portal, los Servicios, los Contenidos y las presentes Condiciones Generales de conformidad con la ley, la moral, las buenas costumbres y el orden público. Se obliga a usar el Portal, los Servicios y los Contenidos de forma diligente, correcta y lícita.</span>\n</p>\n\n<p><b><span>1.<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></b><b><span>RECOPILACIÓN DE INFORMACIÓN</span></b>\n</p>\n\n<p><span>Recopilamos información que pertenece a tres categorías generales:</span></p>\n\n<p><b><span>1.1.<span></span></span></b><b><span>Información que usted nos suministra.</span></b></p>\n\n<p><span>El Ayuntamiento de Guadalajara recopila y solicita determinados datos de carácter personal para la utilización y correcto funcionamiento de la aplicación móvil. Sin estos datos, es posible que no se pueda prestar todos los servicios solicitados.</span>\n</p>\n\n<ul>\n    <li>\n        <p><b><span>Información de la Cuenta</span></b><span>: Para acceder a la Plataforma y a los distintos módulos de servicio, los Usuarios deberán completar la pantalla de registro con su dirección de correo electrónico y contraseña. El registro previo en la Plataforma solicitará además un nombre y apellidos.</span>\n        </p>\n\n        <p><span>Al iniciar sesión en tu cuenta mediante un servicio de redes sociales de terceros (<i>Facebook Connect, Google Accounts o Sign in with Apple</i>), tendremos acceso a parte de la información de tu cuenta externa a partir de dicho servicio, permitiendo realizar el registro y acceder a los apartados de acceso restringido a usuarios de la Plataforma con los datos de la cuenta de usuario en esa red social (nombre completo, fotografía y en determinados casos, el cumpleaños y sexo de la persona, utilizado estos últimos para fines estadísticos).</span>\n        </p>\n    </li>\n\n    <li>\n        <p><b><span>Información adicional de perfil</span></b><span>.&nbsp;Puedes proporcionar información adicional como parte de tu perfil (como tu teléfono y Twitter).</span>\n        </p>\n    </li>\n</ul>\n\n<p><b><span>1.2.<span></span></span></b><b><span>Información que recopilamos automáticamente cuando usa la Plataforma</span></b>\n</p>\n\n<p><span>Cuando usas nuestros servicios, recopilamos información sobre las funciones que has utilizado, cómo las has utilizado y qué dispositivos usas para acceder a nuestros servicios. Continúa leyendo para obtener más información:</span>\n</p>\n\n<ul>\n    <li>\n        <p><b><span>Información de uso</span></b></p>\n\n        <p><span>Recopilamos información sobre tu actividad en nuestros servicios. Por ejemplo, cómo los usas (p. ej., fecha y hora en que inicias sesión, funciones que utilizas, búsquedas, clics,) y cómo interactúas.</span>\n        </p>\n    </li>\n\n    <li>\n        <p><b><span>Información de dispositivos</span></b></p>\n\n        <p><span>Recopilamos información sobre el dispositivo móvil que utilizas para acceder a nuestra Plataforma, incluidos el hardware, el sistema operativo y su versión, los identificadores únicos del dispositivo y la información de la red móvil.</span>\n        </p>\n    </li>\n\n    <li>\n        <p><b><span>Otra información con tu consentimiento</span></b></p>\n\n        <p><span>Puedes darnos permiso para que recopilemos tu geolocalización (latitud y longitud) a través de varios medios en función del servicio y dispositivo que estés usando, incluyendo GPS, Bluetooth o conexiones Wi-Fi. Podemos recopilar tu geolocalización en segundo plano (incluso cuando no estés usando los servicios) si nos has dado permiso específico para ello. No recopilaremos tu geolocalización en caso de que no nos concedas el permiso necesario.</span>\n        </p>\n\n        <p><span>Asimismo, tendremos acceso a la cámara y archivos multimedia del dispositivo que estés utilizando al activar la configuración correspondiente, esto es, siempre y cuando hayas dado el permiso concreto para ello.</span>\n        </p>\n    </li>\n</ul>\n\n<p><b><span>2.<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></b><b><span>USO DE LA INFORMACIÓN</span></b></p>\n\n<p><span>Podemos usar información tuya para varios propósitos relacionados con el funcionamiento de nuestra Plataforma, y establecer contacto contigo:</span>\n</p>\n\n<ol>\n    <li><span>Ofrecer, mantener y mejorar nuestra aplicación móvil.</span></li>\n    <li><span>Personalizar la plataforma.</span></li>\n    <li><span>Supervisar y analizar tendencias, uso y actividades en relación con nuestra Plataforma.</span></li>\n    <li><span>Responder a tus comentarios, preguntas y solicitudes, y ofrecer atención al ciudadano.</span></li>\n    <li><span>Comunicarse contigo para brindarte información sobre servicios municipales y eventos ofrecidos, y brindar noticias e información que a nuestra consideración sea de tu interés.</span>\n    </li>\n    <li><span>Enviarte notificaciones técnicas, actualizaciones, alertas de seguridad y asistencia técnica, así como mensajes administrativos, ya sea por medio de notificaciones push, o a través de correo electrónico, siempre que se haya dado permiso específico para ello, (que puedes revocar en cualquier momento a través de la configuración correspondiente).</span>\n    </li>\n</ol>\n\n<p><b><span>3.<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></b><b><span>CESIÓN DE LA INFORMACIÓN</span></b>\n</p>\n\n<p><span>Compartimos determinada información de los usuarios con proveedores de servicios y socios que nos ayudan a gestionar los servicios.&nbsp;</span>\n</p>\n\n<p><b><span>3.1.<span> </span></span></b><b><span>Con proveedores de servicios</span></b></p>\n\n<p><span>Podemos utilizar proveedores de servicios en relación con el funcionamiento y la mejora de la Plataforma para ayudar con ciertas funciones, como, por ejemplo, alojamiento de datos, y algunos aspectos de nuestra asistencia técnica y al cliente. Tomamos medidas para garantizar que estos proveedores de servicios accedan a información tuya, la procesen y la almacenen únicamente para los propósitos que autoricemos y estén sujetos a las obligaciones de confidencialidad, siempre para mejorar la experiencia del servicio.</span>\n</p>\n\n<p><b><span>3.2.<span> </span></span></b><b><span>Cumplimiento legal </span></b></p>\n\n<p><span>Es posible que revelemos tu información si fuese razonablemente necesario: </span></p>\n\n<ul>\n    <li>\n        <p><span>Para cumplir con un proceso legal, como una orden judicial, comparecencia u orden de registro, investigación del gobierno/las fuerzas del orden u otros requisitos legales.</span>\n        </p>\n    </li>\n\n    <li>\n        <p><span>Para investigar o prevenir actividades criminales, presuntos fraudes u otros actos indebidos, o tomar cualquier otra medida en consecuencia.</span>\n        </p>\n    </li>\n</ul>\n\n<p><b><span>4.<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></b><b><span>SUS DERECHOS</span></b></p>\n\n<p><span>Podrás ejercer los derechos establecidos en el Reglamento (UE) 2016/679 del Parlamento Europeo y del Consejo, y recogidos en el presente apartado ante el Responsable del Tratamiento de los Datos\n(Ayuntamiento de Guadalajara) mediante solicitud escrita y firmada, presentada en el Registro General del Ayuntamiento de Guadalajara.</span>\n</p>\n\n<p><b><span>4.1.<span></span></span></b><b><span>\_Rectificación de información incorrecta o incompleta</span></b></p>\n\n<p><span>Tienes derecho a pedirnos que rectifiquemos cualquier información personal incorrecta o incompleta tuya (y que no puedas modificar en tu Cuenta).</span>\n</p>\n\n<p><b><span>4.2.<span> </span></span></b><b><span>\_Acceso a los datos y portabilidad</span></b></p>\n\n<p><span>Tal y como establece la legislación aplicable, tendrás el derecho a solicitar copias de los datos personales que almacenamos tuyas. También podrás solicitar copias de la información personal que nos hayas facilitado en un formato estructurado, de uso común y legible en soporte electrónico y/o solicitarnos que remitamos dicha información a otro proveedor de servicios (en la medida en que resulte\ntécnicamente posible).</span></p>\n\n<p><b><span>4.3.<span> </span></span></b><b><span>Almacenamiento y supresión de los datos</span></b></p>\n\n<p><span>En general, almacenamos tu información personal durante todo el tiempo que resulte necesario para la ejecución del servicio formalizado entre tú y nosotros y para cumplir nuestras obligaciones legales. Si no deseas que sigamos utilizando tu información para poner a tu disposición la aplicación, puedes solicitarnos que eliminemos tu información personal y cerremos tu Cuenta. Ten en cuenta que, si solicitas la eliminación de tu información personal:</span>\n</p>\n\n<ul>\n    <li>\n        <p><span>Podemos retener y utilizar tu información personal en la medida en que resulte necesaria para cumplir nuestras obligaciones legales. Por ejemplo, podrá conservar parte de tu información en cumplimiento de sus obligaciones de información jurídica y de auditoría.</span>\n        </p>\n    </li>\n\n    <li>\n        <p><span>La información que hayas compartido con otros y se haya hecho pública (por ejemplo, comentarios y reclamaciones) podrán seguir siendo visibles al público en la Plataforma, incluso después de que se haya cancelado tu Cuenta. Sin embargo, dicha información dejará de estar vinculada contigo. Asimismo, es posible que algunas copias de tu información (por ejemplo, datos de registro) permanezcan en\nnuestra base de datos, si bien quedarán desprovistos de información que te identifique personalmente.</span></p>\n    </li>\n\n    <li>\n        <p><span>Puesto que nos aseguramos de proteger la Plataforma de pérdidas o de su destrucción accidental o malintencionada, es posible que tu información personal no sea eliminada de nuestros sistemas de copia de seguridad durante un periodo de tiempo limitado.</span>\n        </p>\n    </li>\n</ul>\n\n<p><b><span>4.4.<span> </span></span></b><b><span>Revocación del consentimiento y restricción del tratamiento de los datos</span></b>\n</p>\n\n<p><span>En aquellos casos en los que hayas autorizado el tratamiento de tu información personal, podrás revocar tu consentimiento en cualquier momento cambiando los ajustes de tu Cuenta.</span>\n</p>\n\n<p><span>Además, tienes el derecho a limitar el modo en que hacemos uso de tu información personal, particularmente en aquellos casos en que: </span>\n</p>\n\n<ul>\n    <li>\n        <p><span>Impugnes la veracidad de tu información personal; </span></p>\n    </li>\n\n    <li>\n        <p><span>El tratamiento de los datos sea ilícito y te opongas a la eliminación de tu información personal; </span>\n        </p>\n    </li>\n\n    <li>\n        <p><span>Ya no necesitemos tu información personal para su tratamiento, pero solicitas la información para la incoación, el ejercicio o la defensa de acciones legales.</span>\n        </p>\n    </li>\n</ul>\n\n<p><b><span>4.5.<span> </span></span></b><b><span>Oposición al tratamiento de los datos</span></b></p>\n\n<p><span>Se te otorga el derecho a exigir que no se trate tu información personal para fines concretos cuando dicho tratamiento se realice en base al interés legítimo. Si te opones a dicho tratamiento, se dejará de tratar tus datos personales para dichos fines salvo que podamos demostrar que existen causas justificadas y convincentes para realizar dicho tratamiento o salvo que dicho tratamiento sea\nnecesario para la incoación, el ejercicio o la defensa de acciones legales.</span></p>\n\n<p><b><span>4.6.<span> </span></span></b><b><span>Autoridad de Control</span></b></p>\n\n<p><span>Asimismo, tienes derecho a interponer una reclamación u obtener información adicional ante la Autoridad de Control competente en materia de Protección de Datos. </span>\n</p>\n\n<p><span>A los efectos informativos, se proporciona el contacto de la Agencia Española de Protección de Datos:</span>\n</p>\n\n<p><span>Agencia Española de Protección de Datos</span><br />\n    <span>C/ Jorge Juan, 6 (28001-Madrid)</span><br />\n    <span>901.100.099</span>\n</p>\n</span></p>\n\n<p><b><span>5.<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></b><b><span>SEGURIDAD DE LA INFORMACIÓN</span></b>\n</p>\n\n<p><span>Nosotros adoptamos y actualizamos continuamente medidas de seguridad administrativas, técnicas y físicas para contribuir a la protección de tu información e impedir que ésta sea destruida o modificada sin autorización o que se acceda a la misma sin permiso. Los cortafuegos, el cifrado de datos y los controles de acceso a la información son algunas de las salvaguardas que utilizamos para proteger tu información. Si conoces o tienes motivos para creer que las credenciales de tu Cuenta han sido objeto de pérdida, sustracción, apropiación indebida o están en riesgo por algún otro\nmotivo o si sabe o sospecha que se ha utilizado tu Cuenta sin autorización, póngase en contacto con nosotros.</span>\n</p>\n\n<p><span>En caso de que sospechemos o detectemos una infracción de seguridad, podemos suspender total o parcialmente, sin previo aviso, el uso que haces de nuestros servicios.&nbsp;</span>\n</p>\n\n<p><b><span>6.<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></b><b><span>PLAZO DE CONSERVACIÓN DE LA INFORMACIÓN</span></b>\n</p>\n\n<p><span>Únicamente guardamos tu información personal durante el tiempo de uso de la Plataforma.</span></p>\n\n<p><span>En la práctica, eliminamos y hacemos anónima tu información una vez que eliminas la cuenta (después del periodo de conservación de seguridad) </span><span>a menos que:</span>\n</p>\n\n<ol>\n    <li><span>debamos conservarla para cumplir con las leyes vigentes&nbsp;</span></li>\n    <li><span>debamos conservarla para demostrar nuestro cumplimiento con las leyes vigentes (por ejemplo, los registros de consentimientos de los Términos de uso, Política de privacidad y otros consentimientos similares se conservan durante cinco años)</span>\n    </li>\n    <li><span>exista un problema, conflicto o queja excepcional que requiera que conservemos la información relevante hasta que dicho asunto se solucione.</span>\n    </li>\n</ol>\n\n<p><b><span>7.<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></b><b><span>CAMBIOS EN LA POLÍTICA DE PRIVACIDAD</span></b>\n</p>\n\n<p><span>El Ayuntamiento de Guadalajara se reserva el derecho a modificar la presente Política de Privacidad en cualquier momento con arreglo a esta disposición. Si hacemos cambios en la presente Política de Privacidad, nosotros publicaremos la versión revisada de esta en la Plataforma y actualizaremos la fecha “Última actualización”, que figura al comienzo del presente documento. </span>\n</p>\n\n<p><span>Si estás en desacuerdo con la versión revisada de la Política de privacidad, podrás cancelar tu Cuenta. Si no cancelas tu Cuenta antes de la fecha de entrada en vigor de la versión revisada de la Política de Privacidad, el acceso continuado que obtengas a la Plataforma, así como el uso continuado de la misma por tu parte quedarán sujetos a dicha versión revisada.</span>\n</p>\n\n</html>"
                example-1:
                  summary: Get LegalText Terms of Use
                  value: >-
                    <h1>Términos y Condiciones de Uso</h1>

                    <p>Bienvenido a nuestra plataforma de participación
                    ciudadana. Al utilizar este servicio, acepta los siguientes
                    términos
                        y condiciones.</p>
                    <h2>1. Objeto</h2>

                    <p>Esta plataforma permite a los ciudadanos comunicar
                    incidencias, sugerencias y propuestas a la administración
                    pública.

                    </p>

                    <h2>2. Registro y cuenta de usuario</h2>

                    <p>Para utilizar los servicios es necesario registrarse
                    proporcionando información veraz y actualizada. El usuario
                    es
                        responsable de mantener la confidencialidad de sus credenciales.</p>
                    <h2>3. Uso aceptable</h2>

                    <p>El usuario se compromete a:</p>

                    <ul>
                        <li>No publicar contenido ofensivo, difamatorio o ilegal</li>
                        <li>Proporcionar información veraz en las comunicaciones</li>
                        <li>Respetar los derechos de otros usuarios</li>
                        <li>No utilizar la plataforma para fines comerciales no autorizados</li>
                    </ul>

                    <h2>4. Propiedad intelectual</h2>

                    <p>Todos los contenidos de la plataforma están protegidos
                    por derechos de propiedad intelectual.</p>
                example-2:
                  summary: Get LegalText Accesibility
                  value: >-
                    <h1>Declaración de Accesibilidad</h1>

                    <p>Esta plataforma está comprometida con garantizar la
                    accesibilidad digital conforme al Real Decreto
                    1112/2018.</p>

                    <h2>Situación de cumplimiento</h2>

                    <p>Este sitio web es parcialmente conforme con el nivel AA
                    de las Pautas WCAG 2.1 debido a las excepciones que se
                        indican a continuación.</p>
                    <h2>Contenido no accesible</h2>

                    <p>El contenido que se recoge a continuación no es accesible
                    por los siguientes motivos:</p>

                    <ul>
                        <li>Algunos documentos PDF antiguos pueden no ser totalmente accesibles</li>
                        <li>Ciertos vídeos pueden carecer de subtítulos</li>
                    </ul>

                    <h2>Preparación de la declaración</h2>

                    <p>Esta declaración fue preparada el 1 de enero de 2024 y se
                    revisa periódicamente.</p>

                    <h2>Contacto</h2>

                    <p>Puede comunicar cualquier problema de accesibilidad a
                    través de los canales de contacto habilitados.</p>
                example-3:
                  summary: Get LegalText Cookies Policy
                  value: >-
                    <h1>Política de Cookies</h1>

                    <p>Esta plataforma utiliza cookies para mejorar la
                    experiencia del usuario y ofrecer servicios
                    personalizados.</p>

                    <h2>¿Qué son las cookies?</h2>

                    <p>Las cookies son pequeños archivos de texto que se
                    almacenan en su dispositivo cuando visita un sitio web.
                    Permiten
                        recordar sus preferencias y mejorar la navegación.</p>
                    <h2>Tipos de cookies que utilizamos</h2>

                    <ul>
                        <li><strong>Cookies técnicas:</strong> Necesarias para el funcionamiento básico del sitio</li>
                        <li><strong>Cookies de sesión:</strong> Permiten mantener su sesión activa mientras navega</li>
                        <li><strong>Cookies analíticas:</strong> Nos ayudan a entender cómo interactúan los usuarios con la plataforma</li>
                        <li><strong>Cookies de preferencias:</strong> Recuerdan sus ajustes y configuraciones</li>
                    </ul>

                    <h2>Gestión de cookies</h2>

                    <p>Puede configurar su navegador para rechazar cookies o
                    para que le avise cuando se envíen. Sin embargo, algunas
                        funcionalidades del sitio pueden no estar disponibles si desactiva las cookies.</p>
                    <h2>Más información</h2>

                    <p>Para más información sobre el uso de cookies, puede
                    contactar con nosotros a través de los canales
                    habilitados.</p>
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: Client not found
  /location-additional-data:
    get:
      tags:
        - Location > Location
      summary: List Location Additional Data
      operationId: listLocationAdditionalData
      description: >-
        El endpoint proporciona información adicional sobre una ubicación
        específica dentro de una jurisdicción determinada. A partir del
        **identificador del elemento jurisdiccional
        (**`jurisdiction_element_id`**) y/o coordenadas geográficas
        (**`lat`**,** **`lng`**), el servicio devuelve detalles relevantes sobre
        la zona consultada.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_element_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. ID de mongo de la jurisdicción sobre el cual se consulta
            información adicional
          example: '{{jurisdiction_element_id}}'
        - name: formatted_address
          in: query
          schema:
            type: string
          description: >-
            String. [optional] (GCH2+3F Madrid, Spain). Dirección del
            JurisdictionElement.
          example: GCH2+3F Madrid, Spain
        - name: lat
          in: query
          schema:
            type: string
          description: >-
            Float. [optional] (40.55079132675021). Permite estableces
            coordenadas geográficas (latitud) para un filtrado más exacto de los
            resultados (formato decimal).
          example: '{{latitude}}'
        - name: lng
          in: query
          schema:
            type: string
          description: >-
            Float. [optional] (-3.6387169361114506). Permite estableces
            coordenadas geográficas (longitud) para un filtrado más exacto de
            los resultados (formato decimal).
          example: '{{longitude}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Response OK List Location Additional Data
                  value:
                    formatted_address: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    geometry: null
                    data:
                      - question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                        value: null
                        editable: true
                        response_attribute: Distrito
                        required: false
                        hidden_in_form: false
                        hidden_in_detail: false
                        visibility: public
                    location:
                      lat: 40.55075069999999
                      lng: -3.6389062
                example-1:
                  summary: >-
                    Response OK File Jurisdiction Element List Location
                    Additional Data
                  value:
                    formatted_address: null
                    geometry: null
                    data:
                      - question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                            - name: localización
                              color: '#000000'
                              id: localización
                        value: null
                        editable: true
                        response_attribute: Distrito
                        required: false
                        hidden_in_form: false
                        hidden_in_detail: false
                        visibility: public
                      - question:
                          type: text
                          active: true
                          code: barrio_es_t
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5ea6af91eaa11bba058b45d5
                          question: Barrio
                          question_translations:
                            es: Barrio
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: barrio
                              color: '#000000'
                              id: barrio
                            - name: localización
                              color: '#000000'
                              id: localización
                        value: null
                        editable: true
                        response_attribute: Barrio
                        required: false
                        hidden_in_form: false
                        hidden_in_detail: false
                        visibility: public
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 404
                error_msg: Object not found
  /service/{service_id}/validate-position:
    get:
      tags:
        - Location > Location
      summary: Validate Position
      operationId: validatePosition
      description: >-
        **Request param**


        | **Campo** | Tipo | **Descripción** |

        | --- | --- | --- |

        | service_id | String | \[required\] ID del servicio del que se quiere
        validar la posición. |


        Este endpoint valida si una **posición** es válida para un **servicio**,
        comprobando su relación con un elemento jurisdiccional y verifica si la
        ubicación cumple las reglas necesarias para permitir la **creación de
        solicitudes** asociadas a ese servicio.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_element_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. ID del elemento jurisdicción contra el cual se valida la
            posición
          example: '{{jurisdiction_element_id}}'
        - name: lat
          in: query
          schema:
            type: string
          required: true
          description: Float.. Latitud del punto a validar
          example: '{{latitude}}'
        - name: long
          in: query
          schema:
            type: string
          required: true
          description: Float.. Longitud del punto a validar
          example: '{{longitude}}'
        - name: level
          in: query
          schema:
            type: integer
          description: >-
            Int. [optional]. Nivel de profundidad del elemento jurisdiccional
            para validar la posición
          example: '3'
        - name: projection
          in: query
          schema:
            type: integer
          description: >-
            Int. [optional]. Sistema de referencia espacial (SRID) utilizado
            para las coordenadas
          example: '4326'
        - name: service_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso service id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                valid: true
  /nearest-geofences:
    get:
      tags:
        - Location > Location
      summary: Get Nearest Geofences
      operationId: getNearestGeofences
      description: >-
        **Requiere autenticación**


        Este endpoint devuelve las geocercas más cercanas a la ubicación del
        usuario, utilizando las coordenadas de latitud y longitud
        proporcionadas. Permite limitar la cantidad de resultados.


        **Nota**: Requiere un usuario autenticado para funcionar.
      security:
        - bearerAuth: []
      parameters:
        - name: lat
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. Latitud desde la cual se buscan las geocercas
            cercanas.
          example: '{{latitude}}'
        - name: limit
          in: query
          schema:
            type: string
          description: 'Int. [optional]. Número máximo de geocercas a retornar. Default: 20.'
          example: '{{limit}}'
        - name: lng
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. Longitud desde la cual se buscan las geocercas
            cercanas.
          example: '{{longitude}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: []
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 401
                error_msg: Unauthorized
  /poi-detail:
    get:
      tags:
        - Location > Location
      summary: Get POI Detail
      operationId: getPoiDetail
      description: >-
        Este endpoint obtiene el detalle completo de un Punto de Interés (POI)
        específico, incluyendo su geometría, propiedades y datos adicionales
        configurados en el QuestionList asociado al MapLayer.
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: poi_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. . String. Identificador único del POI en GeoServer. Formato
            típico: layerName.numericId
          example: ciudadbbva_PL0_paths.1
        - name: layer_id
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. . String. ID del MapLayer (MongoDB ObjectId). Si
            no se proporciona, se busca automáticamente por el poi_id
          example: '{{layer_id}}'
        - name: projection
          in: query
          schema:
            type: integer
          description: >-
            String. [optional]. . String. Sistema de proyección EPSG para las
            coordenadas de respuesta (ej: 3857, 4326)
          example: '4326'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get POI Detail with Layer Id
                  value:
                    type: Feature
                    id: ciudadbbva_PL0_paths.1
                    geometry:
                      type: Point
                      coordinates:
                        - -3.6892
                        - 40.4168
                    properties:
                      description: Área de tránsito principal
                      short_description: Área principal
                      type: transito
                      layer_name: buildings:ciudadbbva_PL0_paths
                      layer_id: 5d91db6311235f7f2b8b45a2
                      level: 0
                      favorite: false
                    additional_data:
                      - key: capacidad
                        label: Capacidad máxima
                        value: 500
                      - key: horario
                        label: Horario de apertura
                        value: 08:00 - 22:00
                example-1:
                  summary: Get POI Detail without Layer Id
                  value:
                    type: Feature
                    id: ciudadbbva_PL0_paths.1
                    geometry:
                      type: Point
                      coordinates:
                        - -3.6892
                        - 40.4168
                    properties:
                      description: Área de tránsito principal
                      short_description: Área principal
                      type: transito
                      layer_name: buildings:ciudadbbva_PL0_paths
                      layer_id: 5d91db6311235f7f2b8b45a2
                      level: 0
                      favorite: false
                    additional_data:
                      - key: capacidad
                        label: Capacidad máxima
                        value: 500
                      - key: horario
                        label: Horario de apertura
                        value: 08:00 - 22:00
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get POI Detail Not Found
                  value:
                    - code: 404
                      description: POI not found
                example-1:
                  summary: Get POI Detail Layer not found
                  value:
                    - code: 404
                      description: No MapLayers found
  /geoserver/feature/{layer_id}/detail.json:
    get:
      tags:
        - Location > Location
      summary: Get Feature Detail
      operationId: getFeatureDetail
      description: >-
        ## Descripcion


        Documenta el endpoint `GET
        /public-api/geoserver/feature/{layer_id}/detail` para obtener una
        feature de Geoserver y sus datos adicionales públicos.


        ## Autenticacion


        - `X-CLIENT-ID`: `{{clientId}}` (requerido solo si
        `mandatory_client_header=true`).

        - `Authorization`: `Bearer {{token_public}}` (opcional; no requerido
        para este endpoint).


        ## Request Params


        | Campo | Descripcion |

        | --- | --- |

        | layer_id | (string) [required]. ID de la capa (MapLayer) en formato
        hexadecimal de 24 caracteres |


        ## Query Params


        | Key | Value | Description |

        | --- | --- | --- |

        | fid | 123 | Integer. [required]. Feature ID en Geoserver |


        ## Response


        - `200 OK`: Feature encontrada o `[]` cuando el `fid` no existe en la
        capa.
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          description: >-
            Identificador del cliente. Requerido solo si
            mandatory_client_header=true.
          example: '{{clientId}}'
        - name: Authorization
          in: header
          schema:
            type: string
          description: Opcional. No requerido para ejecutar este endpoint.
          example: Bearer {{token_public}}
        - name: fid
          in: query
          schema:
            type: integer
          required: true
          description: Integer.. Feature ID en Geoserver
          example: '123'
        - name: layer_id
          in: path
          schema:
            type: string
          required: true
          description: >-
            String. [required]. ID de la capa (MapLayer) en formato hexadecimal
            de 24 caracteres.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: 200 OK - Feature detail
                  value:
                    type: Feature
                    id: points_of_interest.123
                    geometry:
                      type: Point
                      coordinates:
                        - -3.7038
                        - 40.4168
                    properties:
                      name: Plaza Mayor
                      category: plaza
                    additional_data:
                      - question:
                          id: 507f1f77bcf86cd799439011
                          type: text
                          question: Nombre
                          code: name
                          active: true
                        value: Plaza Mayor
                        editable: true
                        response_attribute: name
                        required: false
                        hidden_in_form: false
                        hidden_in_detail: false
                        visibility: public
                example-1:
                  summary: 200 OK - Feature not found (empty array)
                  value: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: >-
                    Parameter "fid" of value "abc" violated a constraint "This
                    value should match \"\d+\"."
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Not Found
  /search-point-layers.json:
    get:
      tags:
        - Location > Location
      summary: Search Points From Layer
      operationId: searchPointsFromLayer
      description: >-
        Este endpoint permite buscar y listar puntos de interés (POIs) en capas
        de mapa, aplicando filtros por jurisdicción, capas, nivel, ubicación y
        texto.


        ## Autenticación


        - `X-CLIENT-ID`: `{{clientId}}` (obligatorio solo cuando
        `mandatory_client_header=true`).

        - `Authorization`: `Bearer {{token_public}}` (opcional; requerido para
        aplicar `only_favorites` por usuario autenticado).


        ## Responses


        - `200 OK`: retorna un `FeatureCollection` con `features`,
        `totalFeatures`, `numberMatched` y `numberReturned`.

        - `200 OK` (caso adicional): cuando `only_favorites=true` y el usuario
        no tiene favoritos, retorna `[]`.

        - `400 Bad Request`: falta `jurisdiction_element_id` o hay parámetros
        inválidos.

        - `404 Not Found`: error funcional del servicio de capas (sin capas
        válidas).


        Nota: cuando `mandatory_client_header=true`, el listener de cliente
        puede cortar la petición con `510` si `X-CLIENT-ID` es inválido o
        ausente.


        No se documentan errores `5XX`.
      security:
        - bearerAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          example: '{{clientId}}'
        - name: Authorization
          in: header
          schema:
            type: string
          example: Bearer {{token_public}}
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: jurisdiction_element_id
          in: query
          schema:
            type: string
          required: true
          description: String.. ID del elemento de jurisdicción (MongoDB ObjectId).
          example: '{{jurisdiction_element_id}}'
        - name: highlighted_poi
          in: query
          schema:
            type: boolean
          description: Boolean. [optional]. Filtrar solo POIs destacados.
          example: 'true'
        - name: lat
          in: query
          schema:
            type: string
          description: Float. [optional]. Latitud para ordenar por proximidad.
          example: '{{latitude}}'
        - name: layer_ids[]
          in: query
          schema:
            type: string
          description: >-
            Array. [optional]. IDs de MapLayer (MongoDB ObjectId). Tiene
            prioridad sobre layer_names[].
          example: '{{layer_ids}}'
        - name: layer_names[]
          in: query
          schema:
            type: string
          description: Array. [optional]. Nombres internos de capas a consultar.
          example: buildings:ciudadbbva_PL0_paths
        - name: level
          in: query
          schema:
            type: integer
          description: Integer. [optional]. Nivel/planta del edificio (0, 1, 2...).
          example: '0'
        - name: limit
          in: query
          schema:
            type: string
          description: Integer. [optional] (15). Número máximo de resultados.
          example: '{{limit}}'
        - name: lng
          in: query
          schema:
            type: string
          description: Float. [optional]. Longitud para ordenar por proximidad.
          example: '{{longitude}}'
        - name: only_favorites
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Filtrar solo POIs favoritos (requiere usuario
            autenticado).
          example: 'false'
        - name: q
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Texto para filtrar POIs por nombre o
            descripción.
          example: '{{searchQuery}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Search Points From Layer OK
                  value:
                    type: FeatureCollection
                    features:
                      - type: Feature
                        id: ciudadbbva_PL0_paths.1
                        geometry:
                          type: Point
                          coordinates:
                            - -3.6892
                            - 40.4168
                        properties:
                          description: Sala de reuniones A
                          short_description: Sala A
                          type: meeting_room
                          subtype: small
                          layer_name: buildings:ciudadbbva_PL0_paths
                          layer_id: 5d91db6311235f7f2b8b45a2
                          level: 0
                          favorite: false
                          distance: 125.5
                      - type: Feature
                        id: ciudadbbva_PL0_paths.2
                        geometry:
                          type: Point
                          coordinates:
                            - -3.6895
                            - 40.417
                        properties:
                          description: Cafetería principal
                          short_description: Cafetería
                          type: restaurant
                          layer_name: buildings:ciudadbbva_PL0_paths
                          layer_id: 5d91db6311235f7f2b8b45a2
                          level: 0
                          favorite: true
                          distance: 230.2
                    totalFeatures: 2
                    numberMatched: 2
                    numberReturned: 2
                example-1:
                  summary: Search Points From Layer Favorites Empty
                  value: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: Parameter "jurisdiction_element_id" is required
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: No Map Layers Found
  /management/check_optional_updates:
    get:
      tags:
        - Management > UpdatedVersion
      summary: Get Optional Updates
      operationId: getOptionalUpdates
      description: >-
        Este endpoint permite verificar si existen **actualizaciones opcionales
        disponibles** para la aplicación o cliente que realiza la solicitud.
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: []
  /map-layer/list:
    get:
      tags:
        - MapLayer > MapLayer
      summary: Get MapLayers
      operationId: getMapLayers
      description: >-
        Este endpoint devuelve **la lista de capas** asociadas a un elemento de
        jurisdicción, se utiliza para obtener capas que pertenecen a una
        jurisdicción específica, permitiendo filtrar.
      security:
        - bearerAuth: []
      parameters:
        - name: geoserver_serialize
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Si es true, la respuesta se serializa con el
            grupo geoserver.
          example: 'true'
        - name: include_without_level
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Si es true, también se incluyen capas que no
            tienen nivel asignado.
          example: 'true'
        - name: jurisdiction_element_id
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. ID de mongo de la jurisdicción sobre el cual se
            consulta información adicional
          example: '{{jurisdiction_element_id}}'
        - name: level
          in: query
          schema:
            type: integer
          description: >-
            Integer. [optional]. Permite definir el nivel de búsqueda en los
            escenarios donde fueron reportados en un edificio que posea varias
            capas.
          example: '2'
        - name: type
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Especifica el tipo de configuracion
            personalizada de la consulta.
          example: request
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: []
  /map-layer/{map_layer_id}/question-list:
    get:
      tags:
        - MapLayer > MapLayer
      summary: Get MapLayer Question List
      operationId: getMapLayerQuestionList
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | map_layer_id | String | \[required\]. ID del map_layer sobre la cual
        se requiere obtener la lista de preguntas asociadas. |


        Este endpoint devuelve la **lista de preguntas** asociada a una capa de
        mapa.
      security:
        - bearerAuth: []
      parameters:
        - name: map_layer_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso map layer id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                nestingLevel: 1
                requiredVariables: []
                configurable_questions:
                  - editable: true
                    hidden_in_detail: false
                    hidden_in_form: false
                    hidden_in_open010_detail: false
                    hidden_in_open010_form: false
                    show_collapsed: false
                    default_collapsed: false
                    question:
                      type: text
                      active: true
                      code: horario
                      help_text: |-
                        *   Lunes a viernes: 8:00 - 20:00.  
                        *   Sábados, domingos y festivos: 9:00 - 20:00.
                      help_text_translations:
                        es: |-
                          *   Lunes a viernes: 8:00 - 20:00.  
                          *   Sábados, domingos y festivos: 9:00 - 20:00.
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                        gl: ''
                      id: 691eea114fb8f78005078b39
                      question: Horario
                      question_translations:
                        es: Horario
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                        gl: ''
                      tags: []
                    required: false
                    default_value: ''
                    visibility: public
                    filterable: false
                id: 691eea734fb8f78005078b3b
                jurisdictions:
                  - jurisdiction_id: org.alcobendas
                    name: Alcobendas
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                name: POI Alcobendas (Punto limpio fijo)
                tags:
                  - name: poi
                    color: '#000000'
                    id: poi
                use_cases: []
                description: Punto limpio fijo
  /notification/unsubscribe:
    post:
      tags:
        - Notification > Unsubscribe
      summary: Unsubscribe From Email Notification
      operationId: unsubscribeFromEmailNotification
      description: >-
        Este endpoint permite a un usuario desactivar las notificaciones por
        correo electrónico para un aviso específico, utilizando su dirección de
        correo electrónico y el identificador del aviso (request_id).


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | email | String | \[required\]  <br>Email encriptado del usuario al que
        se quieren desactivar las notificaciones por email |

        | request_id | String | \[required\] Identificador único del aviso para
        el que se quieren desactivar las  <br>notificaciones |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                email: S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=
                request_id: '{{requestId}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: >-
                  You have unsubscribed from email notifications for the request
                  5000056
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Error Decrypting Email
                  value:
                    code: 400
                    description: Error decrypting email
                example-1:
                  summary: Error Saving RequestFollower
                  value:
                    code: 400
                    description: Error saving RequestFollower
                example-2:
                  summary: Error Flush RequestFollower
                  value:
                    code: 400
                    description: Error saving RequestFollower
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                description: RequestFollowers not found
  /poi-route/{poi_route_id}:
    get:
      tags:
        - POI > PoiRoute
      summary: PoiRoute Detail
      operationId: poiRouteDetail
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | poi_route_id | String | \[required\] Id de mongo de PoiRoute |


        Este endpoint permite obtener la información de una ruta de POIs (Puntos
        de Interés) específica, identificada por su `poi_route_id`. Si la ruta
        tiene POIs asociados a capas, se recuperan y se añaden a la ruta a
        través de una consulta a un servicio geoespacial, proporcionando los
        detalles actualizados de los POIs de la ruta solicitada.
      security:
        - bearerAuth: []
      parameters:
        - name: poi_route_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso poi route id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 690388de6a8055eff602ab63
                pois_by_layer: []
                name: dsadsad
                jurisdiction_element:
                  id: 5c9b55579650e67d42985e80
                  visible_name: Alcobendas
                description: dsadsadsaddasd
                images:
                  - >-
                    https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg
                starting_point:
                  lat: 40.546819487301
                  long: -3.646459174043
                estimated_difficulty: easy
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Object not found
  /poi-route/list:
    get:
      tags:
        - POI > PoiRoute
      summary: PoiRoute List
      operationId: poiRouteList
      description: >-
        Este endpoint permite listar las rutas de POIs (Puntos de Interés)
        aplicando diversos filtros, como identificadores de elementos de
        jurisdicción, dificultad, distancia, duración, entre otros. Además,
        permite realizar búsquedas por palabras clave y paginar los resultados,
        facilitando la obtención de rutas específicas de acuerdo a los criterios
        proporcionados.
      parameters:
        - name: difficulty[]
          in: query
          schema:
            type: string
          description: >-
            Array. [optional]. Lista opcional de niveles de dificultad que
            permite filtrar las rutas de POIs según su grado de dificultad.
          example: easy
        - name: jurisdiction_element_ids[]
          in: query
          schema:
            type: string
          description: >-
            Array. [optional]. Lista opcional de identificadores de elementos de
            jurisdicción (Mongo ID) que permite filtrar las rutas de POIs según
            los elementos de jurisdicción asociados. S permiten enviar varios
            ids de jurisdiction element separados por ,.
          example: '{{jurisdiction_element_ids}}'
        - name: limit
          in: query
          schema:
            type: string
          description: Integer. [optional]. Resultados por página
          example: '{{limit}}'
        - name: max_distance
          in: query
          schema:
            type: integer
          description: Float. [optional]. Distancia máxima (en metros)
          example: '100'
        - name: max_duration
          in: query
          schema:
            type: integer
          description: Float. [optional]. Duración máxima (en minutos)
          example: '120'
        - name: min_distance
          in: query
          schema:
            type: number
          description: Float. [optional]. Distancia mínima (en metros)
          example: '20.5'
        - name: min_duration
          in: query
          schema:
            type: integer
          description: Float. [optional]. Duración mínima (en minutos)
          example: '20'
        - name: page
          in: query
          schema:
            type: string
          description: Integer. [optional]. Página
          example: '{{page}}'
        - name: q
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Parámetro de búsqueda opcional utilizado para
            filtrar las rutas de POIs por una palabra clave o frase.
          example: '{{searchQuery}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - id: 69021857c741eca1c9044c52
                  pois_by_layer: []
                  name: dsadasd
                  jurisdiction_element:
                    id: 5c9b55579650e67d42985e80
                    visible_name: Alcobendas
                  description: dsdasdas
                  images:
                    - >-
                      https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69021849ab7019.53062596.jpg
                  starting_point:
                    lat: 40.547983940487
                    long: -3.6435103563539
                - id: 690221eaa6d759e3a1088c92
                  pois_by_layer: []
                  name: dsadasdas
                  jurisdiction_element:
                    id: 5c9b55579650e67d42985e80
                    visible_name: Alcobendas
                  description: dasdasdas
                  images:
                    - >-
                      https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690221d5c97a07.79522579.jpg
                  starting_point:
                    lat: 40.534996442872
                    long: -3.6363975803572
                - id: 6902822405139a6f81065a25
                  pois_by_layer: []
                  name: dsadsadas
                  jurisdiction_element:
                    id: 5c9b55579650e67d42985e80
                    visible_name: Alcobendas
                  description: dsadsadasdsadsadsa
                  images:
                    - >-
                      https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69028218d63731.69314275.jpg
                  starting_point:
                    lat: 40.53611679952
                    long: -3.6342971602309
                - id: 69036e011629cd75330aaaa4
                  pois_by_layer: []
                  name: sadasdsa
                  jurisdiction_element:
                    id: 5c9b55579650e67d42985e80
                    visible_name: Alcobendas
                  description: dsadsad
                  images: []
                  starting_point:
                    lat: 40.548798394585
                    long: -3.6431276812872
                  estimated_difficulty: easy
                - id: 6903846719995a489a088074
                  pois_by_layer: []
                  name: dsadasdas
                  jurisdiction_element:
                    id: 5c9b55579650e67d42985e80
                    visible_name: Alcobendas
                  description: dsadasdasdas
                  images: []
                  starting_point:
                    lat: 40.543638358867
                    long: -3.6576112688977
                  estimated_difficulty: easy
                - id: 690388de6a8055eff602ab63
                  pois_by_layer: []
                  name: dsadsad
                  jurisdiction_element:
                    id: 5c9b55579650e67d42985e80
                    visible_name: Alcobendas
                  description: dsadsadsaddasd
                  images:
                    - >-
                      https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg
                  starting_point:
                    lat: 40.546819487301
                    long: -3.646459174043
                  estimated_difficulty: easy
  /poi-route/{poi_route_id}/calculate-path:
    get:
      tags:
        - POI > PoiRoute
      summary: PoiRoute Calculate Path
      operationId: poiRouteCalculatePath
      description: >-
        Calcula la ruta óptima entre los puntos de interés (POIs) configurados
        en un PoiRoute usando el grafo de conexiones de Geoserver.


        | **Campo** | **Tipo** | **Descripción** |

        | --- | --- | --- |

        | poi_route_id | String | [required]. ID de la ruta (PoiRoute) en
        formato hexadecimal de 24 caracteres |
      security:
        - bearerAuth: []
      parameters:
        - name: poi_route_id
          in: path
          schema:
            type: string
          required: true
          description: >-
            String. [required]. ID de la ruta (PoiRoute) en formato hexadecimal
            de 24 caracteres.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                type: FeatureCollection
                features:
                  - type: Feature
                    geometry:
                      type: LineString
                      coordinates:
                        - - -3.7038
                          - 40.4168
                        - - -3.704
                          - 40.417
                    properties: {}
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: Error calculating the route due to missing pois
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Object not found
  /{jurisdiction_id}/shorten-url:
    get:
      tags:
        - PoiExtraData > PoiExtraData
      summary: Shorten Url
      operationId: shortenUrl
      description: >-
        Este endpoint genera una URL corta para un conjunto de identificadores
        de puntos de interés (poiIds) asociados a una jurisdicción específica.
        Permite acceder de manera más sencilla a enlaces relacionados con los
        puntos de interés proporcionados, optimizando la compartición y el
        acceso rápido.
      security:
        - bearerAuth: []
      parameters:
        - name: poi_ids
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. PoiId de Mongo del POI (Punto de Interés) que se desea
            consultar. Este parámetro permite especificar los POIs para los
            cuales se generarán las URLs cortas.
          example: >-
            alcobendas_poi_aparcapatinetes.26,
            alcobendas_poi_aparcapatinetes.27, alcobendas_poi_aparcapatinetes.28
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                items:
                  - poi_id: alcobendas_poi_aparcapatinetes.26
                    shortened_url: https://zeus.mejoratuciudad.org/yourls/5reoe
                  - poi_id: alcobendas_poi_aparcapatinetes.27
                    shortened_url: https://zeus.mejoratuciudad.org/yourls/dq8b9
                  - poi_id: alcobendas_poi_aparcapatinetes.28
                    shortened_url: https://zeus.mejoratuciudad.org/yourls/fpjfl
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                message: jurisdiction was not found
  /poi-extra-data:
    get:
      tags:
        - PoiExtraData > PoiExtraData
      summary: Get Poi Extra Data
      operationId: getPoiExtraData
      description: >-
        **Description**


        Obtiene la información adicional configurada para un POI a partir del
        parámetro `poi_id`.
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          required: true
          description: String.. Identificador de cliente para consumir la API pública.
          example: '{{clientId}}'
        - name: poi_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Identificador del POI para localizar el documento
            PoiExtraData.
          example: '{{poi_id}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                poiId: poi_123
                jurisdictionElement:
                  id: 65f0a1b2c3d4e5f607182930
                appElements:
                  - id: 65f0a1b2c3d4e5f607182931
                    name: Elemento de ejemplo
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                message: Object not found
  /releases:
    get:
      tags:
        - Release > Release
      summary: Releases
      operationId: releases
      description: >-
        Este endpoint **retorna una lista de Releases** filtrada según los
        criterios enviados (jurisdicción, tipo de aplicación, paginación), sirve
        para poder consultar todos los releases disponibles para una aplicación,
        bajo una jurisdicción específica y con posibilidad de paginar
        resultados.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Permite realizar la búsqueda utilizando el jurisdiction_id
            de una o varias jurisdicciones asociadas, en caso de enviar
            múltiples jurisdicciones, estas deben ser separadas por comas.
          example: '{{jurisdiction_id}}'
        - name: appType
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Tipo de aplicación para filtrar los releases,
            usado para encontrar la aplicación asociada.
          example: backoffice
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir el limite de cada página de
            resultados.
          example: '{{limit}}'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados.
          example: '{{page}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - status: PUBLISHED
                  application_types:
                    - id: 5620af276aa91868238b4567
                      jurisdictions:
                        - id: 561e04ed6aa918910c8b4592
                          jurisdiction_id: org.alcobendas
                          name: Alcobendas
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                      name: Alcobendas
                      type: cityapp
                  author:
                    id: 6925bd2f4bed3bfd7f0ae777
                    first_name: Silvia
                    last_name: Reyes
                    avatar: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                  channels: []
                  company:
                    alias: ADDA OPS
                    id: 607040ae93fba54b048b457a
                    name: ALC_ADDA_OPS
                  description: >-
                    Prueba 3
                    [aqui](https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%252C-grat.aspx
                    "https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%252C-grat.aspx")
                  emergency: false
                  end_date: '2025-12-08T09:10:32+00:00'
                  files: []
                  geofences: []
                  id: 692ead28feae9d27d30e0a4a
                  images:
                    - name: pRUEBAS_MTC_PRE.jpg
                      url: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ead034bb615.60771455.jpg
                  jurisdiction_element:
                    extent: []
                    id: 663550808a8e6f62c10d9e7e
                    name: Prueba22
                    visible_name: Prueba02
                    is_main: false
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction_element/667b22dbd531f074699340.png
                  jurisdictions:
                    - id: 561e04ed6aa918910c8b4592
                      jurisdiction_id: org.alcobendas
                      name: Alcobendas
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                  last_editor:
                    id: 6925bd2f4bed3bfd7f0ae777
                    first_name: Silvia
                    last_name: Reyes
                    avatar: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                  links:
                    - link: >-
                        https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%2C-grat.aspx
                      name: prueba
                  name: PRUEBA COMUNICACION 3
                  notification_mode:
                    email_notification: false
                    push_notification: true
                    web_notification: false
                  start_date: '2025-12-02T09:09:27+00:00'
                  tags: []
                  push_only: false
                  action: []
                  buttons: []
                  backoffice_users: []
                  users: []
                  notify_anonymous_users: false
                  map_layer_ids: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 1040
                error_msg: Jurisdiction Not found
  /my-releases:
    get:
      tags:
        - Release > Release
      summary: My Releases
      operationId: myReleases
      description: >-
        Este endpoint **retorna una lista paginada de Releases** asociados a un
        tipo de aplicación específico (`appType`) y filtrados mediante los
        criterios enviados (como jurisdicción, página, límite de
        `PublicApiReleaseQueryType`), el endpoint valida la jurisdicción,
        identifica la aplicación correspondiente y obtiene los Releases.
      security:
        - bearerAuth: []
      parameters:
        - name: appType
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Tipo de aplicación para filtrar los releases, usado para
            encontrar la aplicación asociada.
          example: backoffice
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Permite realizar la búsqueda utilizando el
            jurisdiction_id de una o varias jurisdicciones asociadas, en caso de
            enviar múltiples jurisdicciones, estas deben ser separadas por
            comas.
          example: '{{jurisdiction_id}}'
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir el limite de cada página de
            resultados.
          example: '{{limit}}'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados.
          example: '{{page}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - status: PUBLISHED
                  lat: 40.3948356
                  lng: -3.6995988
                  address_string: Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid, Spain
                  application_types:
                    - id: 5caf0fc80e9867512f8b458f
                      jurisdictions:
                        - id: 561e04ed6aa918910c8b4592
                          jurisdiction_id: org.alcobendas
                          name: Alcobendas
                          icon: >-
                            https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                      name: WorkApp Generica
                      type: workapp
                  author:
                    id: 66369df4d48ec432de0df580
                    avatar: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png
                    first_name: Carlos
                    last_name: Ascencio
                  channels: []
                  company:
                    alias: ADDA OPS
                    id: 607040ae93fba54b048b457a
                    name: ALC_ADDA_OPS
                  description: Prueba de comunicación
                  emergency: false
                  end_date: '2025-12-06T19:52:40+00:00'
                  event_end_date: '2025-12-06T19:53:00+00:00'
                  event_start_date: '2025-11-30T19:52:58+00:00'
                  files:
                    - name: En blanco.pdf
                      url: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/releases/692ca0addc6be7.28141943.pdf
                  geofences: []
                  id: 692ca0e68accbac9c30da945
                  images:
                    - name: 13.jpg
                      url: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ca0cff14582.98105484.jpg
                  jurisdictions:
                    - id: 561e04ed6aa918910c8b4592
                      jurisdiction_id: org.alcobendas
                      name: Alcobendas
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                  last_editor:
                    id: 66369df4d48ec432de0df580
                    avatar: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png
                    first_name: Carlos
                    last_name: Ascencio
                  links:
                    - link: https://es.wikipedia.org/wiki/Hola_mundo
                      name: Contacto
                  name: Comunicado de prueba
                  notification_mode:
                    email_notification: true
                    push_notification: true
                    web_notification: false
                  position:
                    lng: -3.6995988
                    address_string: >-
                      Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid,
                      Spain
                    lat: 40.3948356
                    long: -3.6995988
                    location_additional_data: []
                  start_date: '2025-11-30T20:54:03+00:00'
                  tags: []
                  push_only: false
                  action: []
                  buttons: []
                  backoffice_users: []
                  users: []
                  notify_anonymous_users: false
                  map_layer_ids: []
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Invalid Jurisdiction
  /release/{id}:
    get:
      tags:
        - Release > Release
      summary: Get Release
      operationId: getRelease
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | release_id | String | ID del release sobre la cual se desea consultar.
        |


        Este endpoint permite obtener la información completa de un **Release**
        específico, identificado por su `id`, retorna el objeto del Release
        utilizando los grupos de serialización adecuados para exponer tanto
        información resumida como detalles internos.
      security:
        - bearerAuth: []
      parameters:
        - name: id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso release id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                status: PUBLISHED
                application_types:
                  - id: 5620af276aa91868238b4567
                    jurisdictions:
                      - id: 561e04ed6aa918910c8b4592
                        jurisdiction_id: org.alcobendas
                        name: Alcobendas
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                    name: Alcobendas
                    type: cityapp
                author:
                  id: 6925bd2f4bed3bfd7f0ae777
                  first_name: Silvia
                  last_name: Reyes
                  avatar: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                channels: []
                company:
                  alias: ADDA OPS
                  id: 607040ae93fba54b048b457a
                  name: ALC_ADDA_OPS
                description: >-
                  Prueba 3
                  [aqui](https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%252C-grat.aspx
                  "https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%252C-grat.aspx")
                emergency: false
                end_date: '2025-12-08T09:10:32+00:00'
                files: []
                geofences: []
                id: 692ead28feae9d27d30e0a4a
                images:
                  - name: pRUEBAS_MTC_PRE.jpg
                    url: >-
                      https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ead034bb615.60771455.jpg
                jurisdiction_element:
                  extent: []
                  id: 663550808a8e6f62c10d9e7e
                  name: Prueba22
                  visible_name: Prueba02
                  is_main: false
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction_element/667b22dbd531f074699340.png
                jurisdictions:
                  - id: 561e04ed6aa918910c8b4592
                    jurisdiction_id: org.alcobendas
                    name: Alcobendas
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                last_editor:
                  id: 6925bd2f4bed3bfd7f0ae777
                  first_name: Silvia
                  last_name: Reyes
                  avatar: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                links:
                  - link: >-
                      https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%2C-grat.aspx
                    name: prueba
                name: PRUEBA COMUNICACION 3
                notification_mode:
                  email_notification: false
                  push_notification: true
                  web_notification: false
                start_date: '2025-12-02T09:09:27+00:00'
                tags: []
                push_only: false
                action: []
                buttons: []
                backoffice_users: []
                users: []
                notify_anonymous_users: false
                map_layer_ids: []
  /request/{token}/complaints:
    get:
      tags:
        - Request > Request Complaint
      summary: Get Request Complaints
      operationId: getRequestComplaints
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | ID de la request sobre la cual se desea
        consultar. |


        Este endpoint devuelve todas las **quejas** asociadas a un _Request_
        específico identificado por su `token`.
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso request token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - datetime: '2025-12-04T13:13:44+00:00'
                  origin_create: Acciona
                  id: 693189089ddc57f7cc015d65
                  source:
                    alias: Interno (Backoffice)
                    id: 5850de88e22c6d9f51b17719
  /request/{token}/complaint:
    post:
      tags:
        - Request > Request Complaint
      summary: Post Request Complaint
      operationId: postRequestComplaint
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | ID de la request sobre la cual se desea
        consultar. |


        Este endpoint permite **crear una queja asociada a una solicitud**,
        identificada por su `token`, registrando información descriptiva, datos
        del usuario y archivos adjuntos relacionados, siempre que el usuario
        tenga acceso al módulo correspondiente de la jurisdicción de la
        solicitud y que los datos enviados sean válidos.
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                description:
                  type: string
                  description: >-
                    String [optional]. Descripción detallada de la queja
                    presentada sobre la solicitud.
                  example: Prueba
                email:
                  type: string
                  description: >-
                    String [optional]. Correo electrónico de contacto asociado a
                    la queja.
                  example: '{{testEmail}}'
                email_notification:
                  type: boolean
                  description: >-
                    Bool [optional]. Indica si el usuario desea recibir
                    notificaciones por email.
                  example: 'true'
                files[0]:
                  type: string
                  description: >-
                    File [optional]. Archivos adjuntos relacionados con la
                    queja.
                  format: binary
                first_name:
                  type: string
                  description: String [optional]. Nombre del usuario que presenta la queja.
                  example: Diana Lucia
                follow_request:
                  type: boolean
                  description: >-
                    Bool [optional]. Indica si el usuario desea hacer
                    seguimiento a la solicitud relacionada.
                  example: 'true'
                last_name:
                  type: string
                  description: >-
                    String [optional]. Apellido del usuario que presenta la
                    queja.
                  example: Leon Figueroa
                originCreate:
                  type: string
                  description: String [optional]. Origen desde donde se crea la queja.
                  example: Lamoraleja
                push_notification:
                  type: boolean
                  description: >-
                    Bool [optional]. Indica si el usuario desea recibir
                    notificación push.
                  example: 'true'
                sms_notification:
                  type: boolean
                  description: >-
                    Bool [optional]. Indica si el usuario desea recibir
                    notificaciones por SMS.
                  example: 'true'
                source:
                  type: string
                  description: >-
                    String [optional]. ID de la fuente u origen categórico de la
                    queja.
                  example: '{{originDeviceId}}'
                user:
                  type: string
                  description: String [optional]. ID del usuario que registra la queja.
                  example: '{{userId}}'
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso request token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                datetime: '2025-12-19T13:51:20+00:00'
                origin_create: Lamoraleja
                description: Prueba
                email: diana.leon@gopenux.com
                first_name: Diana Lucia
                follow_request: true
                id: 69455858618773d55a0a4413
                last_name: Leon Figueroa
                request:
                  following_count: 1
                  reiterations_count: 0
                  complaints_count: 1
                  token: 6903b227498563d72c0ca77e
                source:
                  alias: Interno (Backoffice)
                  id: 5850de88e22c6d9f51b17719
                user:
                  nickname: user_70ee9714afc834435c9d
                  id: 68af0c6690c69558be01ebee
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 400
                error_msg: Invalid complaint data
  /requests:
    get:
      tags:
        - Request > Request
      summary: Requests List
      operationId: requestsList
      description: >-
        Este endpoint permite obtener un listado de avisos (o solicitudes)
        aplicando varios filtros de búsqueda configurables. Los filtros
        disponibles se definen mediante un formulario de consulta, lo que
        permite personalizar los resultados según las necesidades del usuario.
      security:
        - bearerAuth: []
      parameters:
        - name: address_and_service_request_id
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. (ALC00001) Permite realizar búsquedas de avisos
            a partir de una dirección o identificador de aviso vinculados
          example: ALC00001
        - name: complaints
          in: query
          schema:
            type: boolean
          description: >-
            String. [optional]. . Permite realizar búsqueda de avisos si estos
            poseen quejas reportadas
          example: 'true'
        - name: distance
          in: query
          schema:
            type: integer
          description: >-
            String. [optional]. (130) Permite realizar búsqueda de avisos a
            partir de una distancia en metros
          example: '130'
        - name: end_date
          in: query
          schema:
            type: string
          description: >-
            Date. [optional]. (2025-10-02T00:00:00Z) Permite realizar la
            búsqueda de un aviso mediante un rango de fechas (rango superior)
          example: '2025-10-02T00:00:00Z'
        - name: final_not_ok
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite realizar la búsqueda de un aviso si su
            estado es intermedio (ni nuevo ni finalizado)
          example: 'true'
        - name: final_ok
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite realizar la búsqueda de un aviso si su
            estado final es correcto
          example: 'false'
        - name: final_status
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite realizar la búsqueda de un aviso si su
            estado es final
          example: 'true'
        - name: following
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. (true) Permite realizar búsqueda de avisos a
            los que el usuario del contexto esté siguiendo
          example: 'true'
        - name: interested
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite realizar la búsqueda de avisos en donde
            el usuario del contexto haya realizado el reporte y adicionalmente
            este aviso haya sido reportado anteriormente (reiteración)
          example: 'true'
        - name: jurisdiction_element_ids[0]
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. (5c87a4d24e4ea894138b4567) Permite realiza
            búsquedas a partir de los elementos de jurisdicción vinculados
          example: '{{jurisdiction_element_ids}}'
        - name: jurisdiction_ids[0]
          in: query
          schema:
            type: string
          description: >-
            Array. [optional]. (es.madrid). Permite realizar la búsqueda de
            avisos utilizando el jurisdiction_id de mongo de una o varias
            jurisdicciones asociadas. En caso de enviar múltiples
            jurisdicciones, estas deben ser separadas por comas (,).
          example: '{{jurisdiction_id}}'
        - name: lat
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. (1.11111) Permite realizar la búsqueda de avisos
            mediante coordenadas (latitud)
          example: '{{latitude}}'
        - name: level
          in: query
          schema:
            type: integer
          description: >-
            Integer. [optional]. (2) Permite definir el nivel de búsqueda de
            avisos en los escenarios donde fueron reportados en un edificio que
            posea varias plantas.
          example: '2'
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. (10) Permite definir el limite de cada página
            de resultados
          example: '{{limit}}'
        - name: long
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. (3.3333) Permite realizar la búsqueda de avisos
            mediante coordenadas (longitud)
          example: '{{longitude}}'
        - name: order
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Permite definir el ordenamiento de los
            resultados encontrados de manera ascendente o descendente
            (alfabéticamente)
          example: ASC
        - name: own
          in: query
          schema:
            type: boolean
          description: >-
            Bool. [optional]. (true) Permite realizar la búsqueda de avisos que
            fuesen reportados por el usuario del contexto (logeado)
          example: 'true'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. (1) Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados. Por
            defecto el valor es 1
          example: '{{page}}'
        - name: polygon[0]
          in: query
          schema:
            type: number
          description: >-
            Float. [optional]. Ej: [2.1111, 1.0000] - Permite realizar búsqueda
            de avisos a partir de poligonos o puntos de coordenadas
          example: '40.466'
        - name: polygon[1]
          in: query
          schema:
            type: number
          description: >-
            Float. [optional]. Ej: [2.1111, 1.0000] - Permite realizar búsqueda
            de avisos a partir de poligonos o puntos de coordenadas
          example: '-3.696'
        - name: reiterations
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite realizar búsqueda de avisos si estos
            poseen reiteraciones reportadas
          example: 'true'
        - name: service_ids[0]
          in: query
          schema:
            type: string
          description: >-
            Array. [optional] (5c87a4d24e4ea894138b4567). Permite realizar
            búsqueda de avisos a partir de las categorias relacionadas.  En caso
            de enviar múltiples jurisdicciones, estas deben ser separadas por
            comas (,).
          example: '{{service_ids}}'
        - name: service_request_ids[0]
          in: query
          schema:
            type: string
          description: >-
            Array. [optional] (5c87a4d24e4ea894138b4567). Permite realizar
            búsqueda de avisos a partir de los IDs de mongo vinculados a los
            avisos. En caso de enviar múltiples jurisdicciones, estas deben ser
            separadas por comas (,).
          example: '{{service_request_ids}}'
        - name: start_date
          in: query
          schema:
            type: string
          description: >-
            Date. [optional]. (2025-10-01T00:00:00Z) Permite realizar la
            búsqueda de un aviso mediante un rango de fechas (rango inferior)
          example: '2025-10-01T00:00:00Z'
        - name: status[0]
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. (5c87a4d24e4ea894138b4567) Permite realizar
            búsquedas de avisos a partir del estado de los mismos. En caso de
            enviar múltiples jurisdicciones, estas deben ser separadas por comas
            (,).
          example: '{{status}}'
        - name: typologies[0]
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. (5c87a4d24e4ea894138b4567) Permite realizar
            búsquedas de avisos a partir de la tipologia a la que pertenezcan
          example: '{{typologies}}'
        - name: user_complaint
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite realizar búsqueda de avisos que el
            usuario del contexto haya denunciado (puesto una queja
          example: 'false'
        - name: user_reiterated
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite realizar búsqueda de avisos que el
            usuario del contexto haya reiterado
          example: 'true'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Requests List With Data
                  value:
                    service_id: 5627630d6aa918d3008b456a
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/sic_pro/service_icons/5db19490928b3.png
                    service_name: Farolas
                    requested_datetime: '2025-03-05T08:20:40+00:00'
                    reiterations_count: 0
                    complaints_count: 0
                    jurisdiction_id: es.madrid
                    status_node_type: initial_node
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/sic_pro/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    public_visibility: true
                    address: Calle Padilla, 17 , Salamanca, Castellana
                    comments_count: 1
                    complaining: false
                    current_node_estimated_final_datetime: '2025-03-07T08:17:20+00:00'
                    current_node_estimated_start_datetime: '2025-03-05T08:17:20+00:00'
                    description: .
                    estimated_final_datetime: '2025-03-18T08:17:20+00:00'
                    estimated_start_datetime: '2025-03-05T08:17:20+00:00'
                    evaluation: 0
                    jurisdiction_element:
                      map_layers:
                        - backend: OWS
                          endpoint: https://sic_pro.mejoratuciudad.org/geoserver
                          id: 5d9ee7bcde2efef4018b4569
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      extent:
                        - -3.70038574
                        - 40.50117283
                        - -3.55027416
                        - 40.58886137
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/sic_pro/jurisdiction_element/674ddb7deef43095450720.png
                      id: 5c9b55579650e67d42985e80
                      location_additional_data: {}
                      name: es.madrid
                      type: city
                      visible_name: madrid
                    address_string: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    lat: 40.543749344957
                    long: -3.6469118016521
                    service_request_id: ALC43676
                    status_node:
                      typology_node_id: 5850dca2e22c6d9f51b00c59
                      visible_name: Nuevo
                      id: 5850dd1fe22c6d9f51b0158d
                      order: 1
                      planned: false
                    supporting: false
                    tags: []
                    token: 67c809593da33d5ef9036ed8
                    worknotes_count: 1
                example-1:
                  summary: Requests List Empty Response
                  value: {}
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                message: request_token not exist
    post:
      tags:
        - Request > Request
      summary: Create Request
      operationId: createRequest
      description: >-
        **Description**


        Este endpoint permite crear un nuevo ticket (aviso) utilizando los datos
        proporcionados. La creación del ticket está sujeta a validaciones
        basadas en la jurisdicción, y se restringe a usuarios registrados si así
        lo requiere la configuración de la jurisdicción.


        **Body**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | additionalData | Array | \[required\] Lista de objetos que contienen
        preguntas y respuestas asociadas. |

        | address_string | String | \[required\] Dirección física en formato de
        texto. |

        | description | String | \[required\] Descripción del servicio o entidad
        asociada. |

        | device_id | String | \[required\] Identificador único del dispositivo
        que realiza la solicitud. |

        | device_type | String | \[required\] Tipo de dispositivo desde el cual
        se realiza la solicitud. |

        | email | String | \[required\] Dirección de correo electrónico del
        usuario. |

        | email_notification | Bool | \[required\] Indica si el usuario ha
        habilitado las notificaciones por correo electrónico. |

        | first_name | String | \[required\] Nombre del usuario. |

        | jurisdiction_element | String | \[required\] Identificador del
        elemento dentro de la jurisdicción. |

        | jurisdiction_id | String | \[required\] Identificador de la
        jurisdicción a la que pertenece. |

        | last_name | String | \[required\] Apellido del usuario. |

        | lat | Float | \[required\] Coordenada de latitud geográfica. |

        | long | Float | \[required\] Coordenada de longitud geográfica. |

        | phone | String | \[required\] Número de teléfono del usuario. |

        | public | Bool | \[required\] Indica si la información es pública o
        privada. |

        | push_notification | Bool | \[required\] Indica si el usuario ha
        habilitado las notificaciones push. |

        | service_id | String | \[required\] Identificador único del servicio
        asociado. |

        | sms_notification | Bool | \[required\] Indica si el usuario ha
        habilitado las notificaciones por SMS. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example: |-
                {
                    "additionalData": [
                        {
                            "question": "{{objectId}}",
                            "value": "resp1"
                        },
                        {
                            "question": "{{objectId}}",
                            "value": "fgfdg"
                        },
                        {
                            "question": "{{objectId}}",
                            "value": "sdfsdf"
                        },
                        {
                            "question": "{{objectId}}",
                            "value": "1"
                        },
                        {
                            "question": "{{objectId}}",
                            "value": [
                                "vbvcbvb"
                            ]
                        }
                    ],
                    "address_string": "Calle Padilla, 17 , Salamanca, Castellana",
                    "description": "sdgsfsdfsdfsd",
                    "device_id": "{{objectId}}",
                    "device_type": "{{objectId}}",
                    "email": "{{testEmail}}",
                    "email_notification": true,
                    "first_name": "Pepito",
                    "jurisdiction_element": "{{jurisdictionId}}",
                    "jurisdiction_id": "{{jurisdictionId}}",
                    "last_name": "Perez",
                    "lat": 40.54720023441049,
                    "long": -3.{{device_id}},
                    "phone": "5551234",
                    "public": true,
                    "push_notification": true,
                    "service_id": "{{serviceId}}",
                    "sms_notification": true
                }
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. (es.madrid) Identificador del proyecto utilizado para
            individualizar el origen del aviso o ticket, permitiendo asociar el
            ticket a un proyecto específico.
          example: '{{jurisdiction_id}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Create Request OK
                  value:
                    service_request_id: ALC43688
                    status_node:
                      name: Nuevo
                      color: '#f1c40f'
                      visible_name: Nuevo
                      id: 5850dd1ee22c6d9f51b0157b
                    token: 67d423553596bff44f0a79c5
                example-1:
                  summary: Create Request with service name
                  value:
                    service_request_id: ALC43688
                    status_node:
                      name: Nuevo
                      color: '#f1c40f'
                      visible_name: Nuevo
                      id: 5850dd1ee22c6d9f51b0157b
                    token: 67d423553596bff44f0a79c5
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: ''
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                description: >-
                  Jurisdiction does NOT allow Anonymous Users to create a
                  Request
  /request_stop_follow:
    get:
      tags:
        - Request > Request
      summary: Remove Request Follower
      operationId: removeRequestFollower
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_id | String | \[required\] Identificador de la
        jurisdicción a la que pertenece. |

        | service_request_id | String | \[required\] Identificador del aviso al
        que se le removerán los followers. |


        Este endpoint permite al usuario dejar de seguir un aviso (ticket) y con
        ello la posibilidad de recibir notificaciones o información acerca del
        aviso especificado.
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                deleted: false
                jurisdiction_name: Madrid
                service_id: 6932d3a03d69676a5b0f6478
                service_code: '1'
                service_name: Limpieza y Residuos
                requested_datetime: '2025-11-30T12:44:34+00:00'
                supporting_count: 0
                following_count: 0
                evaluations_count: 0
                address: Dirección de prueba56
                updated_datetime: '2025-12-05T12:44:46+00:00'
                evaluations_avg: -1
                reiterations_count: 0
                complaints_count: 0
                jurisdiction_id: es.madrid
                status_node_type: initial_node
                files: []
                is_evaluable: true
                typology:
                  hasLocation: true
                  id: 6932d3993d69676a5b0f6441
                  color: '#337ab7'
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png
                  location_type: geolocation
                  name: avisos
                  order: 0
                  public: true
                  visible_name: Avisos
                  with_description: true
                  with_files: true
                  with_geolocation_data: false
                  with_medias: true
                  with_temporality_data: false
                current_status_assignments: []
                public_visibility: false
                accepted: false
                additional_data: []
                comments_count: 0
                complaining: false
                current_node_estimated_final_datetime: '2025-12-05T16:44:35+00:00'
                current_node_estimated_start_datetime: '2025-12-05T12:44:35+00:00'
                description: 0 - 0 - Madrid - Limpieza y Residuos
                estimated_final_datetime: '2025-12-05T16:44:35+00:00'
                estimated_start_datetime: '2025-12-05T12:44:35+00:00'
                evaluation: 0
                following:
                  isFollowing: false
                medias:
                  - created_at: '2025-12-05T12:44:34+00:00'
                    id: 6932d3b23d69676a5b0f6587
                    public: true
                    type: image/jpeg
                    media_url: >-
                      https://mtc.vdeveloper.lan/uploads/local/open010/6932d3b2ec8e2277033655.jpg
                    created_datetime: '2025-12-05T12:44:34+00:00'
                    deleted: false
                    media_code: 6932d3b23d69676a5b0f6587
                    check_distance: no_data
                    check_time: no_data
                    media_metadata:
                      location_additional_data: []
                      created: '2025-12-05T12:44:39+00:00'
                    tags: []
                address_string: Dirección de prueba56
                lat: 40.378
                long: -3.631
                location_additional_data: []
                priority:
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab7962bb361.png
                public: true
                seen: false
                service:
                  deleted: false
                  parent_service_name: ''
                  group: ''
                  visible_name: Limpieza y Residuos (Avisos)
                  mandatory_medias: false
                  mandatory_files: false
                  id: 6932d3a03d69676a5b0f6478
                  social: true
                  evaluation: true
                  color: '#0B99A6'
                  hideEstimatedDate: false
                  mandatory_description: true
                  mandatory_informant_config:
                    - field: first_name
                      required: false
                    - field: last_name
                      required: false
                    - field: phone
                      required: false
                    - field: secondary_phone
                      required: false
                    - field: email
                      required: false
                    - field: twitter_nickname
                      required: false
                    - field: id_document
                      required: false
                    - field: id_documents
                      required: false
                    - field: addresses
                      required: false
                    - field: address
                      required: false
                    - field: gender
                      required: false
                    - field: birthday
                      required: false
                    - field: user_location_area
                      required: false
                  max_upload_files: 3
                  max_upload_medias: 3
                  public: true
                  public_requests: true
                  public_requests_internal: true
                  allow_changing_request_privacy: true
                  service_code: '1'
                  service_icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png
                  status_node: []
                  typology:
                    hasLocation: true
                    id: 6932d3993d69676a5b0f6441
                    color: '#337ab7'
                    icon: >-
                      https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png
                    location_type: geolocation
                    name: avisos
                    order: 0
                    public: true
                    visible_name: Avisos
                    with_description: true
                    with_files: true
                    with_geolocation_data: false
                    with_medias: true
                    with_temporality_data: false
                  with_informant: true
                service_request_id: MAD1001
                status_node:
                  status_node_type: initial_node
                  name: nuevo
                  color: '#7da038'
                  typology_node_id: 6932d3993d69676a5b0f6442
                  visible_name: Nuevo
                  id: 6932d3a03d69676a5b0f6471
                  order: 1
                  planned: false
                supporting: false
                tags: []
                token: 6932d3b23d69676a5b0f6588
                user:
                  hasPassword: true
                  nickname: hely.suarez
                  channels:
                    - external: true
                      id: 6932d3983d69676a5b0f6430
                      name: PruebaNotes
                  id: 6932d3983d69676a5b0f643b
                  notification_channels:
                    - external: true
                      id: 6932d3983d69676a5b0f6430
                      name: PruebaNotes
                  last_geofences: []
                  jurisdiction_element_channels: []
                media_url: >-
                  https://mtc.vdeveloper.lan/uploads/local/open010/6932d3b2ec8e2277033655.jpg
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: service_request_id was not provided
  /request/count_last_days:
    get:
      tags:
        - Request > Request
      summary: Get Request in final status count
      operationId: getRequestInFinalStatusCount
      description: >-
        Este endpoint permite obtener los avisos (tickets) que se encuentren en
        estado final basado en la cantidad de dias especificados en la petición.
        Por defecto si el valor no es introducido se buscará sobre los últimos 7
        días.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. . Stirng. Identificador de las jurisdicciones
            con las cuales se requiere realizar la búsqueda de los avisos
            separado por comas.
          example: '{{jurisdiction_id}}'
        - name: last_days
          in: query
          schema:
            type: integer
          description: >-
            String. [optional]. . Integer. Establece el número de días en los
            cuales se realizará el filtrado de los avisos (por defecto 7 si no
            se introduce valor).
          example: '3'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get Request in final status count OK
                  value:
                    jurisdiction_ids: org.alcobendas
                    last_days: 3
                    count: 1
                example-1:
                  summary: Get Request in final status count without jurisdictionId
                  value:
                    jurisdiction_ids: ''
                    last_days: 3
                    count: 0
                example-2:
                  summary: Get Request in final status count without last days value
                  value:
                    jurisdiction_ids: org.alcobendas
                    last_days: 7
                    count: 2
  /request/{token}/related_family/list:
    get:
      tags:
        - Request > Request
      summary: Get related family
      operationId: getRelatedFamily
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | token | String | \[required\]. Identificador mongo del aviso al cual
        se le requiere extraer la información sobre otros avisos relacionados. |


        Este endpoint permite visualizar avisos (tickets) que se encuentren
        relacionados al aviso especificado en la petición.
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get related family OK
                  value:
                    - service_id: 6932f482e4b2768f51039f52
                      service_icon: >-
                        https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png
                      service_name: Limpieza
                      requested_datetime: '2025-09-17T14:04:56+00:00'
                      address: Dirección de prueba94
                      reiterations_count: 0
                      complaints_count: 0
                      jurisdiction_id: es.madrid
                      status_node_type: initial_node
                      typology:
                        id: 6932f47fe4b2768f51039edd
                        color: '#337ab7'
                        icon: >-
                          https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png
                        location_type: indoor
                        order: 1
                        public: true
                        visible_name: Avisos Hospital
                        with_description: true
                        with_files: true
                        with_geolocation_data: false
                        with_medias: true
                        with_temporality_data: false
                      public_visibility: false
                      comments_count: 0
                      complaining: false
                      current_node_estimated_final_datetime: '2025-12-05T20:04:56+00:00'
                      current_node_estimated_start_datetime: '2025-12-05T15:04:56+00:00'
                      description: 7 - 3 - Madrid - Limpieza
                      estimated_final_datetime: '2025-12-05T20:04:56+00:00'
                      estimated_start_datetime: '2025-12-05T15:04:56+00:00'
                      evaluation: 0
                      jurisdiction_element:
                        map_layers:
                          - backend: OWS
                            endpoint: https://gis.mejoratuciudad.org/geoserver
                            id: 6932f483e4b2768f51039fe6
                            is_default: false
                            color: '#000000'
                            internal_name: buildings:custom_zones_fixtures
                            name: FixtureZones
                            description: Test Layer 5
                            preset: false
                            public: true
                            tags: []
                            token: 489780ae-39e0-40bf-93e3-57565431454a
                            type: WORK
                        extent: []
                        geoserver_perimeter_id: custom_zones_fixtures.13
                        guided_module: false
                        icon: >-
                          https://mtc.vdeveloper.lan/uploads/local/jurisdiction_element/icon_mock.png
                        id: 6932f479e4b2768f51039ea9
                        name: madrid
                        type: city
                        visible_name: Madrid
                        is_main: false
                      address_string: Dirección de prueba94
                      lat: 40.419
                      long: -3.674
                      service_request_id: MAD1110
                      status_node:
                        typology_node_id: 6932f47fe4b2768f51039ede
                        visible_name: Nuevo
                        id: 6932f482e4b2768f51039f4b
                        order: 1
                        planned: false
                      supporting: false
                      tags: []
                      token: 6932f498e4b2768f5103a22f
                      user:
                        id: 6932f47ae4b2768f51039eb7
                      worknotes_count: 1
                      media_url: >-
                        https://mtc.vdeveloper.lan/uploads/local/open010/6932f49880585560875310.jpg
                example-1:
                  summary: Get related family without superparent request related
                  value: []
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 403
                  description: >-
                    Related family list only is available if request was created
                    by the logged user
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Object not found
  /request_duplicate:
    get:
      tags:
        - Request > Request
      summary: Check Duplicates
      operationId: checkDuplicates
      description: >-
        Este endpoint permite identificar avisos que podrían ser duplicados en
        función de una categoría de servicio específica y las coordenadas
        geográficas proporcionadas. Al recibir los parámetros de latitud y
        longitud, así como la identificación del servicio, el sistema busca
        solicitudes cercanas a la ubicación indicada y verifica si existen
        posibles duplicados.
      security:
        - bearerAuth: []
      parameters:
        - name: lat
          in: query
          schema:
            type: string
          required: true
          description: Float.. (40.54720023441049) Coordenada de latitud geográfica.
          example: '{{latitude}}'
        - name: lng
          in: query
          schema:
            type: string
          required: true
          description: Float.. (-3.6370539665222172) Coordenada de longitud geográfica.
          example: '{{longitude}}'
        - name: service_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. (5620ec856aa918b1008b4567) Permite identificar la categoria
            a la que pertenece el aviso o ticket
          example: '{{service_id}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Check Duplicates Found
                  value:
                    deleted: false
                    jurisdiction: 561e04ed6aa918910c8b4592
                    jurisdiction_name: Madrid Móvil
                    service_id: 5620ec856aa918b1008b4567
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png
                    service_code: '2'
                    service_name: Arquetas de alumbrado
                    requested_datetime: '2025-03-13T16:26:32+00:00'
                    supporting_count: 0
                    following_count: 1
                    evaluations_count: 0
                    updated_datetime: '2025-03-13T20:37:45+00:00'
                    address_string: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    evaluations_avg: -1
                    reiterations_count: 0
                    complaints_count: 0
                    jurisdiction_id: es.madrid
                    status_node_type: initial_node
                    final_status_ok: false
                    final_status_not_ok: false
                    files: []
                    is_evaluable: false
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    paused: false
                    creator:
                      hasPassword: true
                      channels: []
                      jurisdiction_element_channels: []
                      id: 67d2f56f887735a7be00f7bb
                      nickname: witijah950
                      notification_channels: []
                      last_geofences: []
                    informant:
                      hasPassword: true
                      channels: []
                      jurisdiction_element_channels: []
                      id: 67d2f56f887735a7be00f7bb
                      nickname: witijah950
                      notification_channels: []
                      last_geofences: []
                    has_required_assignments: false
                    current_status_assignments: []
                    public_visibility: true
                    user_id: 67d2f56f887735a7be00f7bb
                    accepted: false
                    additional_data:
                      - type: singleValueList
                        value: resp1
                        value_translations:
                          es: resp1
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        question:
                          type: singleValueList
                          active: true
                          code: code_lista_simple
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 64706cd7a18ec0136f01dea5
                          question: pregunta lista
                          question_translations:
                            es: pregunta lista
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                          possible_answers:
                            - value: resp1
                              value_translations:
                                es: resp1
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              next_question_list:
                                requiredVariables: []
                                configurable_questions:
                                  - editable: false
                                    hidden_in_detail: false
                                    hidden_in_form: false
                                    hidden_in_open010_detail: false
                                    hidden_in_open010_form: false
                                    question:
                                      type: text
                                      active: true
                                      code: complejo
                                      help_text: ''
                                      help_text_translations:
                                        es: ''
                                        en: ''
                                        ca: ''
                                        eu: ''
                                        fr: ''
                                        es_MX: ''
                                        en_AU: ''
                                      tags: []
                                    required: false
                                    default_value: ''
                                id: 5d3069e643b387a9018b4568
                                name: Localización BBVA
                                use_cases:
                                  - type: linked_list
                                    id: 66ed366037c0c32c020b5372
                                description: .
                    address: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    comments_count: 0
                    complaining: false
                    current_node_estimated_final_datetime: '2025-03-15T16:26:45+00:00'
                    current_node_estimated_start_datetime: '2025-03-13T16:26:45+00:00'
                    description: sdgsfsdfsdfsd
                    device_type:
                      alias: Canal Web
                      id: 5850de88e22c6d9f51b17722
                      options:
                        - web_channel
                    estimated_final_datetime: '2025-03-26T16:26:44+00:00'
                    estimated_start_datetime: '2025-03-13T16:26:44+00:00'
                    evaluation: 0
                    first_name: Pepito
                    following: false
                    jurisdiction_element:
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7bcde2efef4018b4569
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      extent:
                        - -3.70038574
                        - 40.50117283
                        - -3.55027416
                        - 40.58886137
                      guided_module: false
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                      id: 5c9b55579650e67d42985e80
                      location_additional_data:
                        requiredVariables: []
                        configurable_questions:
                          - editable: true
                            hidden_in_detail: false
                            hidden_in_form: false
                            hidden_in_open010_detail: false
                            hidden_in_open010_form: false
                            question:
                              type: text
                              active: true
                              code: distrito_T
                              help_text: ''
                              help_text_translations:
                                es: ''
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              id: 5de929ca0007544c098b4578
                              question: Distrito
                              question_translations:
                                es: Distrito
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              tags:
                                - name: distrito
                                  color: '#000000'
                                  id: distrito
                            required: false
                            response_attribute: Distrito
                            default_value: ''
                        endpoint: >-
                          http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                        id: 5ea6b00322bce3c7058b45a9
                        name: Datos Adicionales de Localización ES
                        use_cases:
                          - type: linked_list
                            id: 675738c67470888ae20cc926
                            description: Prueba 01
                        description: Datos adicionales1
                      name: es.madrid
                      type: city
                      visible_name: madrid
                      is_main: false
                    last_name: Perez
                    medias: []
                    observers: []
                    phone: '5551234'
                    lat: 40.54720023441
                    long: -3.6370539665222
                    location_additional_data: []
                    priority: {}
                    public: true
                    seen: false
                    service:
                      deleted: false
                      parent_service_name: Alumbrado público
                      group: 5620e9176aa91815008b4567
                      jurisdiction_id: est.madrid
                      visible_name: Arquetas de alumbrado (Aviso)
                      id: 5620ec856aa918b1008b4567
                      additionalData:
                        requiredVariables: []
                        configurable_questions:
                          - editable: true
                            hidden_in_detail: false
                            hidden_in_form: false
                            hidden_in_open010_detail: false
                            hidden_in_open010_form: false
                            question:
                              type: datetime
                              active: true
                              code: code_date
                              help_text: texto ayuda
                              help_text_translations:
                                es: texto ayuda
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              id: 64706c8ad0e52544940c4156
                              question: pregunta fecha
                              question_translations:
                                es: pregunta fecha
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              tags: []
                            required: false
                            default_value: ''
                        id: 64706cdad70caf226b01ff66
                        name: lista prueba multi
                        use_cases:
                          - type: crm_extended_detail_internal
                            id: 66e95e5f83ec90ea650b1a12
                      social: true
                      evaluation: true
                      color: '#FBC02D'
                      description: Tapas arquetas de farolas deterioradas o inexistentes
                      hideEstimatedDate: false
                      mandatory_description: true
                      mandatory_files: false
                      mandatory_informant_config:
                        - field: first_name
                          message: ''
                          required: true
                      mandatory_medias: false
                      max_upload_files: 5
                      max_upload_medias: 5
                      public: true
                      public_requests: true
                      service_code: '2'
                      service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png
                      service_name: Arquetas de alumbrado
                      sponsoring_info:
                        display: false
                      status_node: []
                      typology:
                        hasLocation: true
                        id: 5850dca2e22c6d9f51b00c0f
                        color: '#ebc113'
                        description_legend: 'Ej: farola fundida'
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                        location_type: geolocation
                        name: Aviso
                        order: 1
                        public: true
                        typology_description: Tengo un problema con un elemento en la calle
                        visible_name: Aviso
                        with_authorized_users: false
                        with_description: true
                        with_files: true
                        with_geolocation_data: true
                        with_medias: true
                        with_temporality_data: true
                      with_informant: true
                      with_internal_informant: true
                    service_request_id: ALC43684
                    status_assignments: []
                    status_node:
                      status_node_type: initial_node
                      name: Nuevo
                      color: '#f1c40f'
                      typology_node_id: 5850dca2e22c6d9f51b00c59
                      visible_name: Nuevo
                      id: 5850dd1ee22c6d9f51b0157b
                      order: 1
                      planned: false
                    supporting: false
                    tags: []
                    token: 67d307454e10cee6cc011a37
                    user:
                      hasPassword: true
                      channels: []
                      jurisdiction_element_channels: []
                      id: 67d2f56f887735a7be00f7bb
                      nickname: witijah950
                      notification_channels: []
                      last_geofences: []
                    zones:
                      - {}
                    worknotes_count: 0
                example-1:
                  summary: Check Duplicates Not Found
                  value: {}
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Check Duplicates Service Not Configured
                  value:
                    code: 404
                    description: Service not configured
                example-1:
                  summary: Check Duplicates Without Coordinates
                  value:
                    code: 404
                    description: Lat and lng required
  /requests/{token}:
    get:
      tags:
        - Request > Request
      summary: Request Detail
      operationId: requestDetail
      description: >-
        **Request param**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_id | String | \[required\]. ID de la request sobre la cual se
        requiere obtener el detalle correspondiente. |


        Este es un endpoint que permite visualizar los datos detallados de un
        aviso registrado en la API, incluyendo información como la tipología del
        aviso, su estado actual, datos adicionales relacionados con normativas,
        metadados de información y archivos conjuntos.
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                deleted: false
                jurisdiction_name: Madrid Móvil
                service_id: 5627630d6aa918d3008b456a
                service_icon: >-
                  https://mtc.vdeveloper.lan/uploads/local/service_icons/5db19490928b3.png
                service_code: '5'
                service_name: Farolas
                requested_datetime: '2025-03-12T13:28:48+00:00'
                supporting_count: 0
                following_count: 0
                evaluations_count: 0
                updated_datetime: '2025-03-12T13:28:53+00:00'
                evaluations_avg: -1
                reiterations_count: 0
                complaints_count: 0
                jurisdiction_id: es.madrid
                status_node_type: initial_node
                files: []
                is_evaluable: false
                typology:
                  hasLocation: true
                  id: 5850dca2e22c6d9f51b00c0f
                  color: '#ebc113'
                  description_legend: 'Ej: farola fundida'
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/typology_icons/5b5c6827519b7.png
                  location_type: geolocation
                  name: Aviso
                  order: 1
                  public: true
                  typology_description: Tengo un problema con un elemento en la calle
                  visible_name: Aviso
                  with_authorized_users: false
                  with_description: true
                  with_files: true
                  with_geolocation_data: true
                  with_medias: true
                  with_temporality_data: true
                current_status_assignments: []
                public_visibility: true
                accepted: false
                additional_data:
                  - type: singleValueList
                    value: Sí
                    value_translations:
                      es: Sí
                      en: ''
                      ca: ''
                      eu: ''
                      fr: ''
                      es_MX: ''
                      en_AU: ''
                    question:
                      type: singleValueList
                      active: true
                      code: montaje_caseta1
                      help_text: >-
                        _Artículo 2: Define que las licencias de casetas son
                        concesiones administrativas temporales, otorgadas para
                        la instalación y explotación de casetas en el recinto
                        ferial. Estas licencias están sujetas al cumplimiento de
                        las normativas municipales y su finalidad es garantizar
                        el uso adecuado de los espacios durante la Feria._
                      help_text_translations:
                        es: >-
                          _Artículo 2: Define que las licencias de casetas son
                          concesiones administrativas temporales, otorgadas para
                          la instalación y explotación de casetas en el recinto
                          ferial. Estas licencias están sujetas al cumplimiento
                          de las normativas municipales y su finalidad es
                          garantizar el uso adecuado de los espacios durante la
                          Feria._
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                      id: 67a4d346368ebfa05405809c
                      question: Autorización de montaje
                      question_translations:
                        es: Autorización de montaje
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                      tags: []
                      possible_answers:
                        - value: Sí
                          value_translations:
                            es: Sí
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          next_question_list:
                            requiredVariables: []
                            configurable_questions:
                              - editable: true
                                hidden_in_detail: false
                                hidden_in_form: false
                                hidden_in_open010_detail: false
                                hidden_in_open010_form: false
                                question:
                                  type: label
                                  active: true
                                  code: Funcionamiento_feria
                                  help_text: ''
                                  help_text_translations:
                                    es: ''
                                    en: ''
                                    ca: ''
                                    eu: ''
                                    fr: ''
                                    es_MX: ''
                                    en_AU: ''
                                  id: 67a4922f368ebfa054058094
                                  question: '## 📋 Funcionamiento del formulario'
                                  question_translations:
                                    es: '## 📋 Funcionamiento del formulario'
                                    en: ''
                                    ca: ''
                                    eu: ''
                                    fr: ''
                                    es_MX: ''
                                    en_AU: ''
                                  tags: []
                                required: false
                                default_value: ''
                            id: 67a23e97568815817600a1b3
                            name: prueba_feria1
                            use_cases:
                              - type: linked_list
                                id: 66ed366037c0c32c020b5372
                            description: Certificado de seguridad y solidez
                address: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                backoffice_user: {}
                comments_count: 1
                complaining: false
                current_node_estimated_final_datetime: '2025-03-14T13:27:00+00:00'
                current_node_estimated_start_datetime: '2025-03-12T13:27:00+00:00'
                description: Prueba
                estimated_final_datetime: '2025-03-25T13:27:00+00:00'
                estimated_start_datetime: '2025-03-12T13:27:00+00:00'
                evaluation: 0
                following:
                  isFollowing: false
                jurisdiction_element:
                  map_layers:
                    - backend: OWS
                      endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                      id: 5d9ee7bcde2efef4018b4569
                      is_default: false
                      color: '#000000'
                      internal_name: zones_prod:Alc_Distritos
                      name: Distritos
                      description: Distritos
                      preset: false
                      public: true
                      tags: []
                      token: 489780ae-39e0-40bf-93e3-57565431454a
                      type: ADMINISTRATIVE
                  extent:
                    - -3.70038574
                    - 40.50117283
                    - -3.55027416
                    - 40.58886137
                  guided_module: false
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/jurisdiction_element/674ddb7deef43095450720.png
                  id: 5c9b55579650e67d42985e80
                  location_additional_data:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        question:
                          type: text
                          active: true
                          code: distrito_T
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 5de929ca0007544c098b4578
                          question: Distrito
                          question_translations:
                            es: Distrito
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: distrito
                              color: '#000000'
                              id: distrito
                        required: false
                        response_attribute: Distrito
                        default_value: ''
                    endpoint: >-
                      http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data
                    id: 5ea6b00322bce3c7058b45a9
                    name: Datos Adicionales de Localización ES
                    use_cases:
                      - type: linked_list
                        id: 675738c67470888ae20cc926
                        description: Prueba 01
                    description: Datos adicionales1
                  name: es.madrid
                  type: city
                  visible_name: Madrid Móvil
                  is_main: false
                medias:
                  - created_at: '2025-03-12T13:28:52+00:00'
                    id: 67d18c144d115a245901cc02
                    public: true
                    type: image/png
                    media_url: >-
                      https://mtc.vdeveloper.lan/uploads/local/open010/67d18c148b6ec466193645.png
                    created_datetime: '2025-03-12T13:28:52+00:00'
                    deleted: false
                    media_code: 67d18c144d115a245901cc02
                    check_distance: no_data
                    check_time: no_data
                    media_metadata:
                      location_additional_data: []
                      created: '2025-03-12T13:28:52+00:00'
                    tags: []
                address_string: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                lat: 40.533558843103
                long: -3.6451943496226
                location_additional_data:
                  - type: text
                    value: Empresarial
                    question:
                      type: text
                      active: true
                      code: distrito_T
                      help_text: ''
                      help_text_translations:
                        es: ''
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                      id: 5de929ca0007544c098b4578
                      question: Distrito
                      question_translations:
                        es: Distrito
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                      tags:
                        - name: distrito
                          color: '#000000'
                          id: distrito
                priority: {}
                public: true
                seen: false
                service:
                  deleted: false
                  parent_service_name: Alumbrado público
                  group: 5620e9176aa91815008b4567
                  jurisdiction_id: es.madrid
                  visible_name: Farolas (Aviso)
                  id: 5627630d6aa918d3008b456a
                  additionalData:
                    requiredVariables:
                      - 5de929ca0007544c098b4578
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        question:
                          type: label
                          active: true
                          code: Titulo_ordenanzalegal
                          help_text: >-
                            _Conjunto de normas aprobadas por el Ayuntamiento de
                            Sevilla para regular el funcionamiento, uso del
                            espacio público y la convivencia durante el evento._
                          help_text_translations:
                            es: >-
                              _Conjunto de normas aprobadas por el Ayuntamiento
                              de Sevilla para regular el funcionamiento, uso del
                              espacio público y la convivencia durante el
                              evento._
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 67a4d41d3074f177c00b3f40
                          question: '## Ordenanza legal'
                          question_translations:
                            es: '## Ordenanza legal'
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags: []
                        required: false
                        default_value: ''
                    endpoint: >-
                      https://feria.free.beeceptor.com/todos?distrito=%5de929ca0007544c098b4578%
                    id: 67a4d351a35d066cff07c6e8
                    name: encadenada_caseta
                    use_cases: []
                    description: Autorización de montaje
                  social: true
                  evaluation: true
                  color: '#FBC02D'
                  description: >-
                    Baculo deteriorado, inclinado o caído. Luz intermitente o
                    apagada. Luminaria rota o abierta
                  hideEstimatedDate: true
                  mandatory_description: true
                  mandatory_files: true
                  mandatory_informant_config:
                    - field: first_name
                      message: ''
                      required: false
                  mandatory_medias: true
                  max_upload_files: 1
                  max_upload_medias: 2
                  public: true
                  public_requests: true
                  service_code: '5'
                  service_icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/service_icons/5db19490928b3.png
                  service_name: Farolas
                  sponsoring_info:
                    display: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://mtc.vdeveloper.lan/uploads/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: false
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  with_informant: true
                  with_internal_informant: true
                  with_authorized_internal_users: true
                service_request_id: ALC43683
                status_node:
                  status_node_type: initial_node
                  name: Nuevo
                  color: '#f1c40f'
                  typology_node_id: 5850dca2e22c6d9f51b00c59
                  visible_name: Nuevo
                  id: 5850dd1fe22c6d9f51b0158d
                  order: 1
                  planned: false
                supporting: false
                tags: []
                token: 67d18c1105bb19eb24016579
                worknotes_count: 1
                media_url: >-
                  https://mtc.vdeveloper.lan/uploads/local/open010/67d18c148b6ec466193645.png
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                description: Request was not found
  /request/{token}/medias:
    get:
      tags:
        - Request > Request
      summary: Get Request Media
      operationId: getRequestMedia
      description: >-
        **Request param**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | \[required\].ID de la request de la cual se
        desean obtener las imágenes asociadas. (Ej. 690502a24e28f2eca706ecde) |


        Este endpoint permite obtener, en formato paginado, todos los medios
        asociados a un aviso identificado por su ID, incluyendo imágenes,
        documentos y archivos complementarios. Para cada medio se expone la
        tipología del aviso, su estado actual, metadatos relevantes y datos
        asociados a normativas aplicables
      security:
        - noauthAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso request token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                created_at: '2014-08-21T12:54:52+00:00'
                id: 53f5ec1de940f6032c8b4567
                public: true
                type: '1'
                media_url: https://mtc.vxavi.lan/uploads/local/open010/53f5ec1cb0edf.jpg
                created_datetime: '2014-08-21T12:54:52+00:00'
                deleted: false
                media_code: 53f5ec1de940f6032c8b4567
                check_distance: no_data
                check_time: no_data
                request:
                  deleted: false
                  jurisdiction_name: Summit Smart Cities
                  service_id: 53f5eb12e940f6ba228b456a
                  service_code: '2'
                  service_name: Mobiliario urbano
                  requested_datetime: '2014-08-21T12:54:52+00:00'
                  supporting_count: 0
                  following_count: 0
                  evaluations_count: 0
                  updated_datetime: '2018-09-27T10:55:07+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.summit2014
                  status_node_type: middle_node
                  files: []
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c06
                    color: '#666666'
                    description_legend: ''
                    icon: >-
                      https://mtc.vxavi.lan/uploads/local/typology_icons/5b5c6825c8e85.png
                    location_type: geolocation
                    name: aviso
                    public: true
                    typology_description: ''
                    visible_name: Aviso
                    with_description: true
                    with_files: true
                    with_medias: true
                  current_status_assignments:
                    - category:
                        name: Técnico Avisos
                      user_group:
                        company:
                          alias: Equipo de Limpieza
                  public_visibility: true
                  accepted: false
                  additional_data: []
                  address: >-
                    Raulí 649-683, Santiago Centro, Región Metropolitana de
                    Santiago, Chile
                  backoffice_user: {}
                  comments_count: 0
                  complaining: false
                  description: Mesa en mal estado
                  evaluation: 0
                  following: false
                  medias: []
                  address_string: >-
                    Raulí 649-683, Santiago Centro, Región Metropolitana de
                    Santiago, Chile
                  lat: -33.4510104
                  long: -70.63603239999998
                  location_additional_data: []
                  priority: {}
                  public: true
                  seen: true
                  service:
                    deleted: false
                    parent_service_name: ''
                    group: ''
                    visible_name: Mobiliario urbano (Aviso)
                    id: 53f5eb12e940f6ba228b456a
                    social: true
                    evaluation: true
                    color: '#4abd85'
                    hideEstimatedDate: false
                    mandatory_description: true
                    mandatory_files: false
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: false
                      - field: last_name
                        message: ''
                        required: false
                      - field: phone
                        message: ''
                        required: false
                      - field: email
                        message: ''
                        required: false
                      - field: twitter_nickname
                        message: ''
                        required: false
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                    mandatory_medias: false
                    max_upload_files: 5
                    max_upload_medias: 5
                    public: true
                    public_requests: true
                    service_code: '2'
                    service_icon: >-
                      https://mtc.vxavi.lan/uploads/local/service_icons/5b5c66c0a883c.png
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c06
                      color: '#666666'
                      description_legend: ''
                      icon: >-
                        https://mtc.vxavi.lan/uploads/local/typology_icons/5b5c6825c8e85.png
                      location_type: geolocation
                      name: aviso
                      public: true
                      typology_description: ''
                      visible_name: Aviso
                      with_description: true
                      with_files: true
                      with_medias: true
                    with_informant: true
                    with_internal_informant: true
                  service_request_id: '14086256928'
                  status_node:
                    status_node_type: middle_node
                    name: en_progreso
                    color: '#FFAB00'
                    typology_node_id: 5850dca2e22c6d9f51b00c2d
                    visible_name: En progreso
                    id: 5850dcc3e22c6d9f51b00efe
                    order: 0
                    planned: false
                  supporting: false
                  tags: []
                  token: 53f5ec1de940f6032c8b4568
                  media_url: >-
                    https://mtc.vxavi.lan/uploads/local/open010/53f5ec1cb0edf.jpg
                tags: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: request_token not exist
  /requests/coordinates:
    get:
      tags:
        - Request > Request
      summary: Get Request By Coordinates
      operationId: getRequestByCoordinates
      description: >-
        Este endpoint permite realizar la búsqueda de avisos (tickets) a partir
        de coodernadas especificadas junto con opciones como observar avisos
        reportados por el usuario logeado o no sin distingo de jurisdicción (si
        esta no se especifica).
      security:
        - bearerAuth: []
      parameters:
        - name: User-Agent
          in: header
          schema:
            type: string
          example: >-
            Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:145.0) Gecko/20100101
            Firefox/145.0
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: Accept-Language
          in: header
          schema:
            type: string
          example: es
        - name: Accept-Encoding
          in: header
          schema:
            type: string
          example: gzip, deflate, br, zstd
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
        - name: X-Client-Id
          in: header
          schema:
            type: string
          example: 4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
        - name: Authorization
          in: header
          schema:
            type: string
          example: >-
            Bearer
            Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
        - name: Origin
          in: header
          schema:
            type: string
          example: '{{mapaUrl}}'
        - name: Connection
          in: header
          schema:
            type: string
          example: keep-alive
        - name: Referer
          in: header
          schema:
            type: string
          example: '{{mapaUrl}}/'
        - name: Sec-Fetch-Dest
          in: header
          schema:
            type: string
          example: empty
        - name: Sec-Fetch-Mode
          in: header
          schema:
            type: string
          example: cors
        - name: Sec-Fetch-Site
          in: header
          schema:
            type: string
          example: same-site
        - name: Priority
          in: header
          schema:
            type: string
          example: u=0
        - name: TE
          in: header
          schema:
            type: string
          example: trailers
        - name: Cookie
          in: header
          schema:
            type: string
          example: lunetics_locale=es
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Permite realizar la búsqueda de avisos
            utilizando el jurisdiction_id. En caso de enviar múltiples
            jurisdicciones, estas deben ser separadas por comas.
          example: '{{jurisdiction_id}}'
        - name: lat
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. Permite establecer la búsqueda de avisos a partir
            de coordenadas especificadas (latitud).
          example: '{{latitude}}'
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite limitar la cantidad de resultados
            obtenidos por página.
          example: '{{limit}}'
        - name: long
          in: query
          schema:
            type: string
          description: >-
            Float. [optional]. Permite establecer la búsqueda de avisos a partir
            de coordenadas especificadas (longitud).
          example: '{{longitude}}'
        - name: own
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Permite limitar la búsqueda de avisos para que
            solo se obtengan los que pertenecen al usuario del contexto
            (logueado).
          example: 'true'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get Request By Coordinates OK
                  value:
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: >-
                        C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.52528265385
                      long: -3.62548828125
                      token: 6931a26b70d10e94e8098d15
                example-1:
                  summary: Get Request By Coordinates OK without jurisdiction
                  value:
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: >-
                        C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.52528265385
                      long: -3.62548828125
                      token: 6931a26b70d10e94e8098d15
                example-2:
                  summary: Get Request By Coordinates OK with OWN false
                  value:
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: >-
                        C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.52528265385
                      long: -3.62548828125
                      token: 6931a26b70d10e94e8098d15
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692f05aa842a68178c050196
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692f0252842a68178c05018f
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd77da210f331ac087187
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd76cb8b9f6918a0e0386
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd6315f98c86b560dfdb6
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd39db8b9f6918a0e037f
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd38ba8914add0604c24c
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd2f6a210f331ac087179
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd2f13164123bec033e58
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd23da8914add0604c245
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcf993164123bec033e51
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dce3a5f98c86b560dfda8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcdceb8b9f6918a0e0371
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcda9a8914add0604c23e
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcb0cb8b9f6918a0e0368
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcaf2a8914add0604c235
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692d97d1a8914add0604c218
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a6783236e36d3f30173cd
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a64d26776231a1a0378f6
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a6425d361484694000886
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a62f914f60fd3d800a876
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a08c2fccaacc0a808042a
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929f94de60a7c6ab20735c9
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929f79fe524e52ba10abb77
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929ead2437d68e36c02a40c
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929e73c362d2dae9d001646
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929e6b1189af4dcbd094c56
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6928c1da219552d51c07dd96
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525073917534
                      long: -3.6366227414177
                      token: 6928b101090476c76e06d8ce
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525073917534
                      long: -3.6366227414177
                      token: 6928b0189065fdb417019b65
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68d1bfb44e1c1777530c7aa2
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1bf3f70aaf4926901fc83
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1bef84e1c1777530c7a9a
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1bee7238dd8923804efd8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68d1be4374e3e1147c097ad9
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1a94d590ad9af9f03baef
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68d14a15238dd8923804efc4
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de Luis Rodríguez Ontiveros, 78, 28100 Alcobendas,
                        Madrid, Spain
                      lat: 40.549224853516
                      long: -3.6409599781036
                      token: 68d0c6a7519532e5c30d82ac
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Caléndula, 208, 28109 Alcobendas, Madrid, Spain
                      lat: 40.527778097213
                      long: -3.6446875333786
                      token: 68d0b9a09c1d37d0870e0daf
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Camino de Hoyarrasa, 32, 28109 Alcobendas,
                        Madrid, Spain
                      lat: 40.529082867208
                      long: -3.6245226860046
                      token: 68d0b90209e5f7c588081cb7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain
                      lat: 40.5255927
                      long: -3.6265079
                      token: 68d085b324c1fe3f5d0aa4a5
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525644681244
                      long: -3.6263399258762
                      token: 68d0854e0ba6dbf2380761e6
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain
                      lat: 40.5379861
                      long: -3.6440703
                      token: 68d08505899244f3470d1378
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain
                      lat: 40.538258139613
                      long: -3.6440129341263
                      token: 68d082d523271942e10d6b99
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379949
                      long: -3.6373992
                      token: 68cd35467da03b88d6050eb7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. Olímpica, 28108 Alcobendas, Madrid, Spain
                      lat: 40.5367484
                      long: -3.6321514
                      token: 68cc76eac3f255c3790a9534
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5389461
                      long: -3.6380202
                      token: 68cc6f6e19dc4940c9024bd5
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        Carr. de Madrid a Burgos, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.532755559787
                      long: -3.6393194741136
                      token: 68cc5fe8c3f255c3790a9529
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: GC72+4C Madrid, Spain
                      lat: 40.512792577888
                      long: -3.5989276283067
                      token: 68cc30f8c3f255c3790a951d
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: M-12, 585, 28108 Alcobendas, Madrid, Spain
                      lat: 40.530702112944
                      long: -3.6130632957233
                      token: 68cc30511ea2951465026484
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain
                      lat: 40.533260227335
                      long: -3.6420077575764
                      token: 68cc2f9abcb1142db60870c1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain
                      lat: 40.533260227335
                      long: -3.6420077575764
                      token: 68cc2f72e1919d475e028188
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Salvia, 30, 28109 Madrid, Spain
                      lat: 40.528143900896
                      long: -3.631237725259
                      token: 68cc1ab01b7ac09eef03554b
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cc0e42f5de6a92e2085d19
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cc08b072ea31443e000137
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5474364
                      long: -3.6417961
                      token: 68cbcb248f26354bf505f4e8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 7, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379051
                      long: -3.6375546
                      token: 68cb9a35ba105bedff080917
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain
                      lat: 40.52957864212
                      long: -3.638483054237
                      token: 68cb2e565061c508bb0ddbd0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. Olímpica, 9, 28108 Alcobendas, Madrid, Spain
                      lat: 40.534026284682
                      long: -3.6368102144837
                      token: 68cb2db10f88f7ff0600f5de
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: GCM2+C5 Alcobendas, Spain
                      lat: 40.533503339924
                      long: -3.5996029042337
                      token: 68cb22efba105bedff0808a0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain
                      lat: 40.535426039679
                      long: -3.6418222521334
                      token: 68cb1e4b858efcd66a061a54
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain
                      lat: 40.535932326838
                      long: -3.6418287337436
                      token: 68cb1d635b76da9e7e05db75
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: Azalea-PºDe Alcobendas, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525130704358
                      long: -3.6343009548538
                      token: 68cb18eb5b76da9e7e05db6b
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5389461
                      long: -3.6380202
                      token: 68cb17b80f88f7ff0600f5d7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cb17a55061c508bb0ddb94
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cb0bf5858efcd66a061a50
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 8, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5381924
                      long: -3.6375022
                      token: 68caa7f789887827df04dfb1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 3, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379178
                      long: -3.6375222
                      token: 68caa7b4e885555ed706e649
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379949
                      long: -3.6373992
                      token: 68ca8a875c47836b7602c177
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5474364
                      long: -3.6417961
                      token: 68ca86454a9034805809dea1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de la Constitución, 129, 28100 Alcobendas, Madrid,
                        Spain
                      lat: 40.54871
                      long: -3.6465873
                      token: 68c89a3294ef9d8e3a04f1e5
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de la Cuesta del Cerro, 134, 28109 Alcobendas,
                        Madrid, Spain
                      lat: 40.524270216473
                      long: -3.6327836589804
                      token: 68c7d47eefa5daf1ce08dde7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de Joaquín Rodrigo, 3, 28100 Alcobendas, Madrid,
                        Spain
                      lat: 40.547949
                      long: -3.6420561
                      token: 68c7cf320ef81450fb0e5d45
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Blas de Otero, 4, 28100 Alcobendas, Madrid, Spain
                      lat: 40.547605
                      long: -3.6419796
                      token: 68c01334a0241c076b0f0a28
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379949
                      long: -3.6373992
                      token: 68bef7e50d35876da0096d86
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de la Chopera, 185, 28100 Alcobendas, Madrid, Spain
                      lat: 40.544145907268
                      long: -3.6544062895649
                      token: 68be9a8126183dd62b023439
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Marqués de la Valdavia, 134, 28100 Alcobendas,
                        Madrid, Spain
                      lat: 40.546990272268
                      long: -3.6520267506622
                      token: 68b5b0ebe44f50d51902363a
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Calle Encinar, 3D, 28108 Alcobendas, Madrid, Spain
                      lat: 40.537766535264
                      long: -3.6421077817783
                      token: 68b5b00449c9581c720a87c0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        P.º del Conde de los Gaitanes, 51, 28109 Alcobendas,
                        Madrid, Spain
                      lat: 40.523609600764
                      long: -3.6299710008578
                      token: 68b5af2765dd2fdc5e0143db
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain
                      lat: 40.529023461169
                      long: -3.6395182895172
                      token: 68b5ae45e44f50d51902362d
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Maliciosa, 3, 28108 Alcobendas, Madrid, Spain
                      lat: 40.538858790191
                      long: -3.658710311209
                      token: 68b5ad7fe1c8d25976091aad
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        Av. de Valdelaparra, 33C, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.538858790191
                      long: -3.6486918954648
                      token: 68b5aa4dc522d57aa70d84b8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Huelva, 10A, 28100 Alcobendas, Madrid, Spain
                      lat: 40.540891753253
                      long: -3.650030022434
                      token: 68b5a831c522d57aa70d84b0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Petunia, 3, 28109 Alcobendas, Madrid, Spain
                      lat: 40.529201373143
                      long: -3.6366487527415
                      token: 68b5a7ed2ae2be9bc801340c
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain
                      lat: 40.530868729958
                      long: -3.6374455690384
                      token: 68b5a1492ae2be9bc8013401
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain
                      lat: 40.530868729958
                      long: -3.6374455690384
                      token: 68b5a12f074f1a6e55050289
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.522048071386
                      long: -3.6371317056783
                      token: 68b594be65dd2fdc5e0143b1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.522048071386
                      long: -3.6371317056783
                      token: 68b594b12ae2be9bc80133dd
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de la Chopera, 287D, 28100 Alcobendas, Madrid, Spain
                      lat: 40.54498271006
                      long: -3.6575889587402
                      token: 68b1c952ab3726d6130a73ab
                example-3:
                  summary: Get Request By Coordinates only lat and lng
                  value:
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: >-
                        C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.52528265385
                      long: -3.62548828125
                      token: 6931a26b70d10e94e8098d15
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692f05aa842a68178c050196
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692f0252842a68178c05018f
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd77da210f331ac087187
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd76cb8b9f6918a0e0386
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd6315f98c86b560dfdb6
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd39db8b9f6918a0e037f
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd38ba8914add0604c24c
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd2f6a210f331ac087179
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd2f13164123bec033e58
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dd23da8914add0604c245
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcf993164123bec033e51
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dce3a5f98c86b560dfda8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcdceb8b9f6918a0e0371
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcda9a8914add0604c23e
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcb0cb8b9f6918a0e0368
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692dcaf2a8914add0604c235
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692d97d1a8914add0604c218
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a6783236e36d3f30173cd
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a64d26776231a1a0378f6
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a6425d361484694000886
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a62f914f60fd3d800a876
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de Fuente Lucha, 25, 28100 Alcobendas, Madrid, Spain
                      lat: 40.549169501264
                      long: -3.6588359330724
                      token: 692a08c2fccaacc0a808042a
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929f94de60a7c6ab20735c9
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929f79fe524e52ba10abb77
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929ead2437d68e36c02a40c
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929e73c362d2dae9d001646
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6929e6b1189af4dcbd094c56
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Vereda del Tiro, 17, 28109 Alcobendas, Madrid, Spain
                      lat: 40.520519845197
                      long: -3.6251795820805
                      token: 6928c1da219552d51c07dd96
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525073917534
                      long: -3.6366227414177
                      token: 6928b101090476c76e06d8ce
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Dalia, 375, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525073917534
                      long: -3.6366227414177
                      token: 6928b0189065fdb417019b65
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68d1bfb44e1c1777530c7aa2
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1bf3f70aaf4926901fc83
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1bef84e1c1777530c7a9a
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1bee7238dd8923804efd8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68d1be4374e3e1147c097ad9
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Municipality of Alcobendas, Madrid, Spain
                      lat: 40.5371361
                      long: -3.6370715
                      token: 68d1a94d590ad9af9f03baef
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68d14a15238dd8923804efc4
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de Luis Rodríguez Ontiveros, 78, 28100 Alcobendas,
                        Madrid, Spain
                      lat: 40.549224853516
                      long: -3.6409599781036
                      token: 68d0c6a7519532e5c30d82ac
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Caléndula, 208, 28109 Alcobendas, Madrid, Spain
                      lat: 40.527778097213
                      long: -3.6446875333786
                      token: 68d0b9a09c1d37d0870e0daf
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Camino de Hoyarrasa, 32, 28109 Alcobendas,
                        Madrid, Spain
                      lat: 40.529082867208
                      long: -3.6245226860046
                      token: 68d0b90209e5f7c588081cb7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain
                      lat: 40.5255927
                      long: -3.6265079
                      token: 68d085b324c1fe3f5d0aa4a5
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. del Halcón, 2, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525644681244
                      long: -3.6263399258762
                      token: 68d0854e0ba6dbf2380761e6
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain
                      lat: 40.5379861
                      long: -3.6440703
                      token: 68d08505899244f3470d1378
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Valdelaparra, 3, 28108 Alcobendas, Madrid, Spain
                      lat: 40.538258139613
                      long: -3.6440129341263
                      token: 68d082d523271942e10d6b99
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379949
                      long: -3.6373992
                      token: 68cd35467da03b88d6050eb7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. Olímpica, 28108 Alcobendas, Madrid, Spain
                      lat: 40.5367484
                      long: -3.6321514
                      token: 68cc76eac3f255c3790a9534
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5389461
                      long: -3.6380202
                      token: 68cc6f6e19dc4940c9024bd5
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        Carr. de Madrid a Burgos, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.532755559787
                      long: -3.6393194741136
                      token: 68cc5fe8c3f255c3790a9529
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: GC72+4C Madrid, Spain
                      lat: 40.512792577888
                      long: -3.5989276283067
                      token: 68cc30f8c3f255c3790a951d
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: M-12, 585, 28108 Alcobendas, Madrid, Spain
                      lat: 40.530702112944
                      long: -3.6130632957233
                      token: 68cc30511ea2951465026484
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain
                      lat: 40.533260227335
                      long: -3.6420077575764
                      token: 68cc2f9abcb1142db60870c1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Caléndula, 6, 28108 Alcobendas, Madrid, Spain
                      lat: 40.533260227335
                      long: -3.6420077575764
                      token: 68cc2f72e1919d475e028188
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Salvia, 30, 28109 Madrid, Spain
                      lat: 40.528143900896
                      long: -3.631237725259
                      token: 68cc1ab01b7ac09eef03554b
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cc0e42f5de6a92e2085d19
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cc08b072ea31443e000137
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5474364
                      long: -3.6417961
                      token: 68cbcb248f26354bf505f4e8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 7, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379051
                      long: -3.6375546
                      token: 68cb9a35ba105bedff080917
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain
                      lat: 40.52957864212
                      long: -3.638483054237
                      token: 68cb2e565061c508bb0ddbd0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. Olímpica, 9, 28108 Alcobendas, Madrid, Spain
                      lat: 40.534026284682
                      long: -3.6368102144837
                      token: 68cb2db10f88f7ff0600f5de
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: GCM2+C5 Alcobendas, Spain
                      lat: 40.533503339924
                      long: -3.5996029042337
                      token: 68cb22efba105bedff0808a0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain
                      lat: 40.535426039679
                      long: -3.6418222521334
                      token: 68cb1e4b858efcd66a061a54
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: Av. de la Industria, 4, 28108 Alcobendas, Madrid, Spain
                      lat: 40.535932326838
                      long: -3.6418287337436
                      token: 68cb1d635b76da9e7e05db75
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                      address_string: Azalea-PºDe Alcobendas, 28109 Alcobendas, Madrid, Spain
                      lat: 40.525130704358
                      long: -3.6343009548538
                      token: 68cb18eb5b76da9e7e05db6b
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5389461
                      long: -3.6380202
                      token: 68cb17b80f88f7ff0600f5d7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cb17a55061c508bb0ddb94
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Alcobendas, Madrid, Spain
                      lat: 40.5372512
                      long: -3.6372245
                      token: 68cb0bf5858efcd66a061a50
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 8, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5381924
                      long: -3.6375022
                      token: 68caa7f789887827df04dfb1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 3, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379178
                      long: -3.6375222
                      token: 68caa7b4e885555ed706e649
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379949
                      long: -3.6373992
                      token: 68ca8a875c47836b7602c177
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Pl. Mayor, 1, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5474364
                      long: -3.6417961
                      token: 68ca86454a9034805809dea1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de la Constitución, 129, 28100 Alcobendas, Madrid,
                        Spain
                      lat: 40.54871
                      long: -3.6465873
                      token: 68c89a3294ef9d8e3a04f1e5
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de la Cuesta del Cerro, 134, 28109 Alcobendas,
                        Madrid, Spain
                      lat: 40.524270216473
                      long: -3.6327836589804
                      token: 68c7d47eefa5daf1ce08dde7
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. de Joaquín Rodrigo, 3, 28100 Alcobendas, Madrid,
                        Spain
                      lat: 40.547949
                      long: -3.6420561
                      token: 68c7cf320ef81450fb0e5d45
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Blas de Otero, 4, 28100 Alcobendas, Madrid, Spain
                      lat: 40.547605
                      long: -3.6419796
                      token: 68c01334a0241c076b0f0a28
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Melilla, 2, 28100 Alcobendas, Madrid, Spain
                      lat: 40.5379949
                      long: -3.6373992
                      token: 68bef7e50d35876da0096d86
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de la Chopera, 185, 28100 Alcobendas, Madrid, Spain
                      lat: 40.544145907268
                      long: -3.6544062895649
                      token: 68be9a8126183dd62b023439
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Marqués de la Valdavia, 134, 28100 Alcobendas,
                        Madrid, Spain
                      lat: 40.546990272268
                      long: -3.6520267506622
                      token: 68b5b0ebe44f50d51902363a
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Calle Encinar, 3D, 28108 Alcobendas, Madrid, Spain
                      lat: 40.537766535264
                      long: -3.6421077817783
                      token: 68b5b00449c9581c720a87c0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        P.º del Conde de los Gaitanes, 51, 28109 Alcobendas,
                        Madrid, Spain
                      lat: 40.523609600764
                      long: -3.6299710008578
                      token: 68b5af2765dd2fdc5e0143db
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 29, 28108 Alcobendas, Madrid, Spain
                      lat: 40.529023461169
                      long: -3.6395182895172
                      token: 68b5ae45e44f50d51902362d
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Maliciosa, 3, 28108 Alcobendas, Madrid, Spain
                      lat: 40.538858790191
                      long: -3.658710311209
                      token: 68b5ad7fe1c8d25976091aad
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        Av. de Valdelaparra, 33C, 28108 Alcobendas, Madrid,
                        Spain
                      lat: 40.538858790191
                      long: -3.6486918954648
                      token: 68b5aa4dc522d57aa70d84b8
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de Huelva, 10A, 28100 Alcobendas, Madrid, Spain
                      lat: 40.540891753253
                      long: -3.650030022434
                      token: 68b5a831c522d57aa70d84b0
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: C. de la Petunia, 3, 28109 Alcobendas, Madrid, Spain
                      lat: 40.529201373143
                      long: -3.6366487527415
                      token: 68b5a7ed2ae2be9bc801340c
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain
                      lat: 40.530868729958
                      long: -3.6374455690384
                      token: 68b5a1492ae2be9bc8013401
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: Av. de Bruselas, 21, 28108 Alcobendas, Madrid, Spain
                      lat: 40.530868729958
                      long: -3.6374455690384
                      token: 68b5a12f074f1a6e55050289
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.522048071386
                      long: -3.6371317056783
                      token: 68b594be65dd2fdc5e0143b1
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: >-
                        C. del Camino Nuevo, 106, 28109 Alcobendas, Madrid,
                        Spain
                      lat: 40.522048071386
                      long: -3.6371317056783
                      token: 68b594b12ae2be9bc80133dd
                    - service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                      address_string: P.º de la Chopera, 287D, 28100 Alcobendas, Madrid, Spain
                      lat: 40.54498271006
                      long: -3.6575889587402
                      token: 68b1c952ab3726d6130a73ab
                example-4:
                  summary: Get Request By Coordinates Empty response
                  value: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: |
                    ERROR: lat or long was not found
  /requests_owns:
    get:
      tags:
        - Request > Request
      summary: Requests Owns
      operationId: requestsOwns
      description: >-
        **Description**


        Obtiene todas las solicitudes (requests) que pertenecen al usuario
        autenticado. Busca requests donde el usuario es el propietario, ya sea
        por su email o por su ID de usuario.
      security:
        - noauthAuth: []
      parameters:
        - name: Authorization
          in: header
          schema:
            type: string
          example: >-
            Bearer
            MzEwNjIyNTlhMGMyZjBkYjNkZTExOGI5MTdiNWYxYjU5YmUxMzBlMWVhNTVkMGNmZTkyYzBiMjBiNDc1OGZlZg
        - name: Cookie
          in: header
          schema:
            type: string
          example: lunetics_locale=en
        - name: app_key
          in: query
          schema:
            type: integer
          description: >-
            String. [optional]. . Si se proporciona, filtra los requests solo de
            las jurisdicciones asociadas a esa aplicación. Si no se proporciona,
            busca en todas las jurisdicciones activas.
          example: '1234555'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - deleted: false
                  jurisdiction_name: Alcobendas
                  service_id: 60754e113f00a3de068b4581
                  service_code: '93'
                  service_name: Fauna exótica invasora
                  requested_datetime: '2025-08-27T20:57:04+00:00'
                  supporting_count: 0
                  following_count: 0
                  evaluations_count: 0
                  address: >-
                    C. del Marqués de la Valdavia, 132, 28100 Alcobendas,
                    Madrid, Spain
                  updated_datetime: '2025-08-27T20:57:27+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.alcobendas
                  status_node_type: initial_node
                  files: []
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  current_status_assignments: []
                  public_visibility: false
                  accepted: false
                  additional_data: []
                  comments_count: 0
                  complaining: false
                  current_node_estimated_final_datetime: '2025-08-29T20:57:05+00:00'
                  current_node_estimated_start_datetime: '2025-08-27T20:57:05+00:00'
                  description: test
                  estimated_final_datetime: '2025-09-09T20:57:05+00:00'
                  estimated_start_datetime: '2025-08-27T20:57:05+00:00'
                  evaluation: 0
                  following:
                    isFollowing: false
                  medias: []
                  address_string: >-
                    C. del Marqués de la Valdavia, 132, 28100 Alcobendas,
                    Madrid, Spain
                  lat: 40.54667847058
                  long: -3.6517524719238
                  location_additional_data:
                    - type: text
                      value: Norte
                      question:
                        type: text
                        active: true
                        code: distrito_T
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 5de929ca0007544c098b4578
                        question: oij
                        question_translations:
                          es: Distrito
                          en: oij
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: distrito
                            color: '#000000'
                            id: distrito
                          - name: localización
                            color: '#000000'
                            id: localización
                        archived: false
                  priority:
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                  public: true
                  seen: false
                  service:
                    deleted: false
                    parent_service_name: Control de plagas
                    group: 562763226aa918d3008b4572
                    visible_name: Fauna exótica invasora (Aviso)
                    mandatory_medias: false
                    mandatory_files: false
                    id: 60754e113f00a3de068b4581
                    social: true
                    evaluation: true
                    color: '#4a148c'
                    hideEstimatedDate: false
                    mandatory_description: true
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: true
                      - field: last_name
                        message: ''
                        required: true
                      - field: phone
                        message: ''
                        required: true
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: email
                        message: ''
                        required: false
                      - field: twitter_nickname
                        message: ''
                        required: false
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                    max_upload_files: 5
                    max_upload_medias: 5
                    public: true
                    public_requests: true
                    public_requests_internal: true
                    allow_changing_request_privacy: true
                    service_code: '93'
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/607554fec49dd.png
                    sponsoring_info:
                      display: false
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    with_informant: true
                    with_internal_informant: true
                  service_request_id: ALC43992
                  status_node:
                    status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 5850dca2e22c6d9f51b00c59
                    visible_name: Nuevo
                    id: 60754e113f00a3de068b4574
                    order: 1
                    planned: false
                  supporting: false
                  tags: []
                  token: 68af7121b8afa2e322039137
                - deleted: false
                  jurisdiction_name: Alcobendas
                  service_id: 60754e113f00a3de068b4581
                  service_code: '93'
                  service_name: Fauna exótica invasora
                  requested_datetime: '2025-08-27T20:57:26+00:00'
                  supporting_count: 0
                  following_count: 0
                  evaluations_count: 0
                  address: >-
                    C. del Marqués de la Valdavia, 132, 28100 Alcobendas,
                    Madrid, Spain
                  updated_datetime: '2025-08-27T20:57:26+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.alcobendas
                  status_node_type: initial_node
                  files: []
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  current_status_assignments: []
                  public_visibility: false
                  accepted: false
                  additional_data: []
                  comments_count: 0
                  complaining: false
                  current_node_estimated_final_datetime: '2025-08-29T20:57:26+00:00'
                  current_node_estimated_start_datetime: '2025-08-27T20:57:26+00:00'
                  description: test
                  estimated_final_datetime: '2025-09-09T20:57:26+00:00'
                  estimated_start_datetime: '2025-08-27T20:57:26+00:00'
                  evaluation: 0
                  following:
                    isFollowing: false
                  medias: []
                  address_string: >-
                    C. del Marqués de la Valdavia, 132, 28100 Alcobendas,
                    Madrid, Spain
                  lat: 40.54667847058
                  long: -3.6517524719238
                  location_additional_data:
                    - type: text
                      value: Norte
                      question:
                        type: text
                        active: true
                        code: distrito_T
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 5de929ca0007544c098b4578
                        question: oij
                        question_translations:
                          es: Distrito
                          en: oij
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: distrito
                            color: '#000000'
                            id: distrito
                          - name: localización
                            color: '#000000'
                            id: localización
                        archived: false
                  priority:
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                  public: true
                  seen: false
                  service:
                    deleted: false
                    parent_service_name: Control de plagas
                    group: 562763226aa918d3008b4572
                    visible_name: Fauna exótica invasora (Aviso)
                    mandatory_medias: false
                    mandatory_files: false
                    id: 60754e113f00a3de068b4581
                    social: true
                    evaluation: true
                    color: '#4a148c'
                    hideEstimatedDate: false
                    mandatory_description: true
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: true
                      - field: last_name
                        message: ''
                        required: true
                      - field: phone
                        message: ''
                        required: true
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: email
                        message: ''
                        required: false
                      - field: twitter_nickname
                        message: ''
                        required: false
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                    max_upload_files: 5
                    max_upload_medias: 5
                    public: true
                    public_requests: true
                    public_requests_internal: true
                    allow_changing_request_privacy: true
                    service_code: '93'
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/607554fec49dd.png
                    sponsoring_info:
                      display: false
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    with_informant: true
                    with_internal_informant: true
                  service_request_id: ALC43993
                  status_node:
                    status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 5850dca2e22c6d9f51b00c59
                    visible_name: Nuevo
                    id: 60754e113f00a3de068b4574
                    order: 1
                    planned: false
                  supporting: false
                  tags: []
                  token: 68af7136c0e785eee4079db7
                - deleted: false
                  jurisdiction_name: Alcobendas
                  service_id: 570b55b26aa918db008b4567
                  service_code: '60'
                  service_name: Ascensor calle Granada
                  requested_datetime: '2025-09-22T12:13:19+00:00'
                  supporting_count: 0
                  following_count: 1
                  evaluations_count: 0
                  address: Av.Industria-Valgrande, 28108 Alcobendas, Madrid, Spain
                  updated_datetime: '2025-09-22T12:13:21+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.alcobendas
                  status_node_type: initial_node
                  files: []
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  current_status_assignments: []
                  public_visibility: false
                  accepted: false
                  additional_data:
                    - type: singleValueList
                      value: No funciona/parado
                      value_translations:
                        es: No funciona/parado
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                      archived: false
                      question:
                        type: singleValueList
                        active: true
                        code: Alc_ascensorcallegranada_cualeselproblema_ls
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 604a1ade1d6cc0f7028b45a2
                        question: ¿Cuál es el problema?
                        question_translations:
                          es: ¿Cuál es el problema?
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: Acobendas
                            color: '#000000'
                            id: Acobendas
                          - name: ascensor
                            color: '#000000'
                            id: ascensor
                        archived: false
                        possible_answers:
                          - value: No funciona/parado
                            value_translations:
                              es: No funciona/parado
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            archived: false
                          - value: Vandalizado
                            value_translations:
                              es: Vandalizado
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            archived: false
                          - value: Rotura del pulsador
                            value_translations:
                              es: Rotura del pulsador
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            archived: false
                          - value: Otro
                            value_translations:
                              es: Otro
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            archived: false
                  comments_count: 0
                  complaining: false
                  current_node_estimated_final_datetime: '2025-09-24T12:13:21+00:00'
                  current_node_estimated_start_datetime: '2025-09-22T12:13:21+00:00'
                  description: prueba
                  estimated_final_datetime: '2025-10-05T12:13:21+00:00'
                  estimated_start_datetime: '2025-09-22T12:13:21+00:00'
                  evaluation: 0
                  following:
                    isFollowing: true
                    channels:
                      email: false
                      push: false
                  medias: []
                  address_string: Av.Industria-Valgrande, 28108 Alcobendas, Madrid, Spain
                  lat: 40.535104866997
                  long: -3.6491882801056
                  location_additional_data: []
                  priority:
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                  public: true
                  seen: false
                  service:
                    deleted: false
                    parent_service_name: Ascensores en vía pública
                    group: 570b50756aa918d6008b4567
                    visible_name: Ascensor calle Granada (Aviso)
                    mandatory_medias: false
                    mandatory_files: false
                    id: 570b55b26aa918db008b4567
                    additionalData:
                      requiredVariables: []
                      configurable_questions:
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: singleValueList
                            active: true
                            code: Alc_ascensorcallegranada_cualeselproblema_ls
                            help_text: ''
                            help_text_translations:
                              es: ''
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 604a1ade1d6cc0f7028b45a2
                            question: ¿Cuál es el problema?
                            question_translations:
                              es: ¿Cuál es el problema?
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            tags:
                              - name: Acobendas
                                color: '#000000'
                                id: Acobendas
                              - name: ascensor
                                color: '#000000'
                                id: ascensor
                            archived: false
                            possible_answers:
                              - value: No funciona/parado
                                value_translations:
                                  es: No funciona/parado
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                              - value: Vandalizado
                                value_translations:
                                  es: Vandalizado
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                              - value: Rotura del pulsador
                                value_translations:
                                  es: Rotura del pulsador
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                              - value: Otro
                                value_translations:
                                  es: Otro
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                          required: false
                          default_value: ''
                      id: 604a1ae47c89ecbc028b45b7
                      name: Alc_ascensorenlaviapublica_ascensorcallegranada
                      use_cases: []
                    social: true
                    evaluation: true
                    color: '#bfba3d'
                    hideEstimatedDate: false
                    mandatory_description: true
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: true
                      - field: last_name
                        message: ''
                        required: true
                      - field: phone
                        message: ''
                        required: true
                      - field: email
                        message: ''
                        required: false
                      - field: twitter_nickname
                        message: ''
                        required: false
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                    max_upload_files: 5
                    max_upload_medias: 5
                    public: true
                    public_requests: true
                    public_requests_internal: true
                    allow_changing_request_privacy: true
                    service_code: '60'
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png
                    sponsoring_info:
                      display: false
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    with_informant: true
                    with_internal_informant: true
                  service_request_id: ALC44052
                  status_node:
                    status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 5850dca2e22c6d9f51b00c59
                    visible_name: Nuevo
                    id: 5850dd34e22c6d9f51b016ef
                    order: 1
                    planned: false
                  supporting: false
                  tags: []
                  token: 68d13d61cc67b74eb90bcbd0
                  user:
                    hasPassword: false
                    nickname: user_cf6b655f8bdc6b8ce17c
                    avatar: >-
                      https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600
                    channels: []
                    id: 68b064f122eb8e9dcf08aad6
                    notification_channels: []
                    last_geofences: []
                    jurisdiction_element_channels: []
                - deleted: false
                  jurisdiction_name: Alcobendas
                  service_id: 5620ec856aa918b1008b4567
                  service_code: '2'
                  service_name: Arquetas de alumbrado
                  requested_datetime: '2025-10-01T14:13:09+00:00'
                  supporting_count: 0
                  following_count: 1
                  evaluations_count: 0
                  address: Av. de la Industria, 20, 28108 Alcobendas, Madrid, Spain
                  updated_datetime: '2025-10-01T14:13:11+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.alcobendas
                  status_node_type: initial_node
                  files: []
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  current_status_assignments: []
                  public_visibility: false
                  accepted: false
                  additional_data: []
                  comments_count: 0
                  complaining: false
                  current_node_estimated_final_datetime: '2025-10-03T14:13:10+00:00'
                  current_node_estimated_start_datetime: '2025-10-01T14:13:10+00:00'
                  description: prueba
                  estimated_final_datetime: '2025-10-14T14:13:10+00:00'
                  estimated_start_datetime: '2025-10-01T14:13:10+00:00'
                  evaluation: 0
                  following:
                    isFollowing: true
                    channels:
                      email: false
                      push: false
                  medias:
                    - created_at: '2025-10-01T14:13:11+00:00'
                      id: 68dd36f78496ed9dd300cb49
                      public: true
                      type: image
                      media_url: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/68dd36f7c08cf025276131.png
                      created_datetime: '2025-10-01T14:13:11+00:00'
                      deleted: false
                      media_code: 68dd36f78496ed9dd300cb49
                      check_distance: no_data
                      check_time: no_data
                      media_metadata:
                        location_additional_data: []
                        created: '2025-10-01T14:13:11+00:00'
                      tags: []
                  address_string: Av. de la Industria, 20, 28108 Alcobendas, Madrid, Spain
                  lat: 40.534892810787
                  long: -3.6485324209675
                  location_additional_data:
                    - type: text
                      value: Empresarial
                      question:
                        type: text
                        active: true
                        code: distrito_T
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 5de929ca0007544c098b4578
                        question: oij
                        question_translations:
                          es: Distrito
                          en: oij
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: distrito
                            color: '#000000'
                            id: distrito
                          - name: localización
                            color: '#000000'
                            id: localización
                        archived: false
                  priority:
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                  public: false
                  seen: false
                  service:
                    deleted: false
                    parent_service_name: Alumbrado público
                    group: 5620e9176aa91815008b4567
                    visible_name: Arquetas de alumbrado (Aviso)
                    mandatory_medias: true
                    mandatory_files: false
                    id: 5620ec856aa918b1008b4567
                    additionalData:
                      requiredVariables: []
                      configurable_questions:
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: true
                          default_collapsed: false
                          question:
                            type: multiValueList
                            active: true
                            code: listamultiple_prueba
                            help_text: ''
                            help_text_translations:
                              es: ''
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 6454501caab13877c805b023
                            question: Selecciona 2
                            question_translations:
                              es: Selecciona 2
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: Selecciona 2
                              en_AU: ''
                            tags: []
                            archived: false
                            possible_answers:
                              - value: '11'
                                value_translations:
                                  es: '11'
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: '11'
                                  en_AU: ''
                                archived: false
                              - value: '2'
                                value_translations:
                                  es: '2'
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: '2'
                                  en_AU: ''
                                archived: false
                              - value: '3'
                                value_translations:
                                  es: '3'
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: '3'
                                  en_AU: ''
                                archived: false
                              - value: Opción 4
                                value_translations:
                                  es: Opción 4
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                                next_question_list:
                                  requiredVariables: []
                                  configurable_questions:
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: true
                                      default_collapsed: true
                                      question:
                                        type: singleValueList
                                        active: true
                                        code: code_lista_simple
                                        help_text: esta pregunta es una lista simple
                                        help_text_translations:
                                          es: esta pregunta es una lista simple
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 64706cd7a18ec0136f01dea5
                                        question: pregunta lista
                                        question_translations:
                                          es: pregunta lista
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags:
                                          - name: PRUEBA
                                            color: '#000000'
                                            id: PRUEBA
                                        archived: false
                                        possible_answers:
                                          - value: resp1
                                            value_translations:
                                              es: resp1
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: false
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: complejo
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 5d30696fc5f2f3ac018b4568
                                                    question: Complejo
                                                    question_translations:
                                                      es: Complejo
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: false
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: edificio
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 5d3069ba9e0d8faa018b4571
                                                    question: Edificio
                                                    question_translations:
                                                      es: Edificio
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: sala
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 5d3069dac5f2f3aa018b4567
                                                    question: Sala
                                                    question_translations:
                                                      es: Sala
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 5d3069e643b387a9018b4568
                                              name: Localización BBVA
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                              description: .
                                          - value: resp2
                                            value_translations:
                                              es: resp2
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: resp3
                                            value_translations:
                                              es: resp3
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '1'
                                            value_translations:
                                              es: '1'
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '2'
                                            value_translations:
                                              es: '2'
                                              en: '2'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '4'
                                            value_translations:
                                              es: '4'
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '5'
                                            value_translations:
                                              es: '5'
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '6'
                                            value_translations:
                                              es: '6'
                                              en: '6'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '7'
                                            value_translations:
                                              es: '7'
                                              en: '7'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '8'
                                            value_translations:
                                              es: '8'
                                              en: '8'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '9'
                                            value_translations:
                                              es: '9'
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: true
                                      default_collapsed: true
                                      question:
                                        type: massiveSingleValueList
                                        active: true
                                        code: QA5
                                        help_text: lista simple masiva
                                        help_text_translations:
                                          es: ''
                                          en: lista simple masiva
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 6835a238502b54dfac08a242
                                        question: pregunta
                                        question_translations:
                                          es: ''
                                          en: pregunta
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: '1'
                                            value_translations:
                                              es: ''
                                              en: '1'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '2'
                                            value_translations:
                                              es: ''
                                              en: '2'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '3'
                                            value_translations:
                                              es: ''
                                              en: '3'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '4'
                                            value_translations:
                                              es: ''
                                              en: '4'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '1'
                                            value_translations:
                                              es: ''
                                              en: '1'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '6'
                                            value_translations:
                                              es: ''
                                              en: '6'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '7'
                                            value_translations:
                                              es: ''
                                              en: '7'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: '8'
                                            value_translations:
                                              es: ''
                                              en: '8'
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                        answers_count: 8
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: true
                                      default_collapsed: true
                                      question:
                                        type: singleValueList
                                        active: true
                                        code: prueba_lista_simpre
                                        help_text: ''
                                        help_text_translations:
                                          es: ''
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67b346c8fc074bd2800aaf22
                                        question: prueba lista siemple
                                        question_translations:
                                          es: ''
                                          en: prueba lista siemple
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: si
                                            value_translations:
                                              es: si
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: label
                                                    active: true
                                                    code: Funcionamiento_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a4922f368ebfa054058094
                                                    question: '## 📋 Funcionamiento del formulario'
                                                    question_translations:
                                                      es: '## 📋 Funcionamiento del formulario'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: label
                                                    active: true
                                                    code: funcion_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a4ab0853533cfb5605fcb5
                                                    question: >-
                                                      Este formulario permite registrar
                                                      únicamente los incumplimientos
                                                      detectados durante la inspección. Cada
                                                      apartado debe marcarse solo si la norma
                                                      no se cumple; de lo contrario, se
                                                      considerará conforme.  


                                                      En caso de incumplimiento, el inspector
                                                      deberá:  


                                                      *   Describir las razones en el campo de
                                                      texto libre.  

                                                      *   Adjuntar evidencias gráficas o
                                                      archivos que respalden la observación.  


                                                      Este proceso garantiza una supervisión
                                                      eficiente y una documentación clara de
                                                      las incidencias.
                                                    question_translations:
                                                      es: >-
                                                        Este formulario permite registrar
                                                        únicamente los incumplimientos
                                                        detectados durante la inspección. Cada
                                                        apartado debe marcarse solo si la norma
                                                        no se cumple; de lo contrario, se
                                                        considerará conforme.  


                                                        En caso de incumplimiento, el inspector
                                                        deberá:  


                                                        *   Describir las razones en el campo de
                                                        texto libre.  

                                                        *   Adjuntar evidencias gráficas o
                                                        archivos que respalden la observación.  


                                                        Este proceso garantiza una supervisión
                                                        eficiente y una documentación clara de
                                                        las incidencias.
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: label
                                                    active: true
                                                    code: titulo_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a4ab2f22f65863190e13d7
                                                    question: >-
                                                      ## 📏 Dimensiones y estructura de las
                                                      casetas
                                                    question_translations:
                                                      es: >-
                                                        ## 📏 Dimensiones y estructura de las
                                                        casetas
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: singleValueList
                                                    active: true
                                                    code: prueba_feria01
                                                    help_text: >-
                                                      _Artículo 64 - Módulos de las casetas:
                                                      El módulo es la unidad de medida básica
                                                      de las casetas en la Feria de Sevilla.
                                                      Cada módulo tiene una anchura estándar
                                                      de 4 metros y una profundidad mínima de
                                                      6 metros, sobre la cual se levanta la
                                                      estructura base de la caseta._
                                                    help_text_translations:
                                                      es: >-
                                                        _Artículo 64 - Módulos de las casetas:
                                                        El módulo es la unidad de medida básica
                                                        de las casetas en la Feria de Sevilla.
                                                        Cada módulo tiene una anchura estándar
                                                        de 4 metros y una profundidad mínima de
                                                        6 metros, sobre la cual se levanta la
                                                        estructura base de la caseta._
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a48efd3074f177c00b3f34
                                                    question: '**Documento de dimensiones**'
                                                    question_translations:
                                                      es: '**Documento de dimensiones**'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                    possible_answers:
                                                      - value: >-
                                                          El documento en el que se reflejan las
                                                          dimensiones no está disponible o
                                                          presenta irregularidades.
                                                        value_translations:
                                                          es: >-
                                                            El documento en el que se reflejan las
                                                            dimensiones no está disponible o
                                                            presenta irregularidades.
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: ''
                                                          en_AU: ''
                                                        archived: false
                                                        next_question_list:
                                                          requiredVariables: []
                                                          configurable_questions:
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: text
                                                                active: true
                                                                code: texto_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a240f25a7fd323a5026116
                                                                question: 'Indique las razones del incumplimiento:'
                                                                question_translations:
                                                                  es: 'Indique las razones del incumplimiento:'
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: image
                                                                active: true
                                                                code: imagen_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a241511adde9311d0f1835
                                                                question: >-
                                                                  Adjunte las evidencias gráficas del
                                                                  incumplimiento:
                                                                question_translations:
                                                                  es: >-
                                                                    Adjunte las evidencias gráficas del
                                                                    incumplimiento:
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                          id: 67a2415c8f62e72c70034f23
                                                          name: encadenadas_feria1
                                                          use_cases:
                                                            - type: linked_list
                                                              id: 66ed366037c0c32c020b5372
                                                          description: Encadenadas
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: singleValueList
                                                    active: true
                                                    code: feria1
                                                    help_text: >-
                                                      _Artículo 65 - Estabilidad de las
                                                      estructuras: Las casetas deben contar
                                                      con un certificado de seguridad y
                                                      solidez emitido por un técnico
                                                      cualificado y visado por el Colegio
                                                      Oficial, garantizando la estabilidad de
                                                      sus estructuras. Este documento debe
                                                      obtenerse antes del inicio del festejo y
                                                      estar disponible para los Servicios
                                                      Técnicos Municipales._
                                                    help_text_translations:
                                                      es: >-
                                                        _Artículo 65 - Estabilidad de las
                                                        estructuras: Las casetas deben contar
                                                        con un certificado de seguridad y
                                                        solidez emitido por un técnico
                                                        cualificado y visado por el Colegio
                                                        Oficial, garantizando la estabilidad de
                                                        sus estructuras. Este documento debe
                                                        obtenerse antes del inicio del festejo y
                                                        estar disponible para los Servicios
                                                        Técnicos Municipales._
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a23e881a0f77255607a493
                                                    question: '**Certificado de seguridad y solidez**'
                                                    question_translations:
                                                      es: '**Certificado de seguridad y solidez**'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                    possible_answers:
                                                      - value: >-
                                                          El certificado de seguridad y solidez
                                                          emitido por un técnico cualificado no ha
                                                          sido presentado o es inválido
                                                        value_translations:
                                                          es: >-
                                                            El certificado de seguridad y solidez
                                                            emitido por un técnico cualificado no ha
                                                            sido presentado o es inválido
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: ''
                                                          en_AU: ''
                                                        archived: false
                                                        next_question_list:
                                                          requiredVariables: []
                                                          configurable_questions:
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: text
                                                                active: true
                                                                code: texto_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a240f25a7fd323a5026116
                                                                question: 'Indique las razones del incumplimiento:'
                                                                question_translations:
                                                                  es: 'Indique las razones del incumplimiento:'
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: image
                                                                active: true
                                                                code: imagen_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a241511adde9311d0f1835
                                                                question: >-
                                                                  Adjunte las evidencias gráficas del
                                                                  incumplimiento:
                                                                question_translations:
                                                                  es: >-
                                                                    Adjunte las evidencias gráficas del
                                                                    incumplimiento:
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                          id: 67a2415c8f62e72c70034f23
                                                          name: encadenadas_feria1
                                                          use_cases:
                                                            - type: linked_list
                                                              id: 66ed366037c0c32c020b5372
                                                          description: Encadenadas
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: singleValueList
                                                    active: true
                                                    code: prueba_feria2
                                                    help_text: >-
                                                      _Artículo 78 - Vías de evacuación: Desde
                                                      el fondo de la caseta, en el que
                                                      habitualmente se localizan los servicios
                                                      evacuatorios, hasta cada una de las
                                                      salidas exigibles en la línea de
                                                      fachada, deberán mantenerse pasillos
                                                      considerados vías de evacuación, que
                                                      deben permanecer libres de obstáculos,
                                                      con una anchura mínima de 1,20 metros._
                                                    help_text_translations:
                                                      es: >-
                                                        _Artículo 78 - Vías de evacuación: Desde
                                                        el fondo de la caseta, en el que
                                                        habitualmente se localizan los servicios
                                                        evacuatorios, hasta cada una de las
                                                        salidas exigibles en la línea de
                                                        fachada, deberán mantenerse pasillos
                                                        considerados vías de evacuación, que
                                                        deben permanecer libres de obstáculos,
                                                        con una anchura mínima de 1,20 metros._
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a48f53bddb8f0fa301e5f4
                                                    question: '**Medidas inadecuadas de la caseta**'
                                                    question_translations:
                                                      es: '**Medidas inadecuadas de la caseta**'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                    possible_answers:
                                                      - value: >-
                                                          Las medidas de la caseta no cumplen con
                                                          la normativa establecida.
                                                        value_translations:
                                                          es: >-
                                                            Las medidas de la caseta no cumplen con
                                                            la normativa establecida.
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: ''
                                                          en_AU: ''
                                                        archived: false
                                                        next_question_list:
                                                          requiredVariables: []
                                                          configurable_questions:
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: text
                                                                active: true
                                                                code: texto_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a240f25a7fd323a5026116
                                                                question: 'Indique las razones del incumplimiento:'
                                                                question_translations:
                                                                  es: 'Indique las razones del incumplimiento:'
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: image
                                                                active: true
                                                                code: imagen_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a241511adde9311d0f1835
                                                                question: >-
                                                                  Adjunte las evidencias gráficas del
                                                                  incumplimiento:
                                                                question_translations:
                                                                  es: >-
                                                                    Adjunte las evidencias gráficas del
                                                                    incumplimiento:
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                          id: 67a2415c8f62e72c70034f23
                                                          name: encadenadas_feria1
                                                          use_cases:
                                                            - type: linked_list
                                                              id: 66ed366037c0c32c020b5372
                                                          description: Encadenadas
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: singleValueList
                                                    active: true
                                                    code: prueba_feria3
                                                    help_text: >-
                                                      _Artículo 79 - Aseos: En la zona de
                                                      trastienda, para la delimitación de
                                                      aseos, se debe emplear módulos
                                                      prefabricados o de chapa o material
                                                      incombustible, los cuales deben ser
                                                      retirados dentro de los quince días
                                                      siguientes a la finalización del
                                                      festejo_
                                                    help_text_translations:
                                                      es: >-
                                                        _Artículo 79 - Aseos: En la zona de
                                                        trastienda, para la delimitación de
                                                        aseos, se debe emplear módulos
                                                        prefabricados o de chapa o material
                                                        incombustible, los cuales deben ser
                                                        retirados dentro de los quince días
                                                        siguientes a la finalización del
                                                        festejo_
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a48f833074f177c00b3f36
                                                    question: >-
                                                      **Material no autorizado en módulos de
                                                      casetas**
                                                    question_translations:
                                                      es: >-
                                                        **Material no autorizado en módulos de
                                                        casetas**
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                    possible_answers:
                                                      - value: >-
                                                          El módulo prefabricado o de chapa no
                                                          cumple con los requisitos de material
                                                          incombustible.
                                                        value_translations:
                                                          es: >-
                                                            El módulo prefabricado o de chapa no
                                                            cumple con los requisitos de material
                                                            incombustible.
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: ''
                                                          en_AU: ''
                                                        archived: false
                                                        next_question_list:
                                                          requiredVariables: []
                                                          configurable_questions:
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: text
                                                                active: true
                                                                code: texto_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a240f25a7fd323a5026116
                                                                question: 'Indique las razones del incumplimiento:'
                                                                question_translations:
                                                                  es: 'Indique las razones del incumplimiento:'
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: image
                                                                active: true
                                                                code: imagen_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a241511adde9311d0f1835
                                                                question: >-
                                                                  Adjunte las evidencias gráficas del
                                                                  incumplimiento:
                                                                question_translations:
                                                                  es: >-
                                                                    Adjunte las evidencias gráficas del
                                                                    incumplimiento:
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                          id: 67a2415c8f62e72c70034f23
                                                          name: encadenadas_feria1
                                                          use_cases:
                                                            - type: linked_list
                                                              id: 66ed366037c0c32c020b5372
                                                          description: Encadenadas
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: singleValueList
                                                    active: true
                                                    code: prueba_feria4
                                                    help_text: >-
                                                      _Artículo 66 - Cubierta: La cubrición de
                                                      cada caseta debe ser a dos aguas, con
                                                      una altura de tres metros y un pendolón
                                                      de entre 1,50 y 2 metros._
                                                    help_text_translations:
                                                      es: >-
                                                        _Artículo 66 - Cubierta: La cubrición de
                                                        cada caseta debe ser a dos aguas, con
                                                        una altura de tres metros y un pendolón
                                                        de entre 1,50 y 2 metros._
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a48fb322f65863190e13d5
                                                    question: >-
                                                      **Dimensiones incorrectas en la
                                                      cubierta**
                                                    question_translations:
                                                      es: >-
                                                        **Dimensiones incorrectas en la
                                                        cubierta**
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                    possible_answers:
                                                      - value: >-
                                                          Las medidas de la cubierta no cumplen
                                                          con la normativa establecida.
                                                        value_translations:
                                                          es: >-
                                                            Las medidas de la cubierta no cumplen
                                                            con la normativa establecida.
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: ''
                                                          en_AU: ''
                                                        archived: false
                                                        next_question_list:
                                                          requiredVariables: []
                                                          configurable_questions:
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: text
                                                                active: true
                                                                code: texto_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a240f25a7fd323a5026116
                                                                question: 'Indique las razones del incumplimiento:'
                                                                question_translations:
                                                                  es: 'Indique las razones del incumplimiento:'
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                            - editable: true
                                                              hidden_in_detail: false
                                                              hidden_in_form: false
                                                              hidden_in_open010_detail: true
                                                              hidden_in_open010_form: true
                                                              show_collapsed: false
                                                              default_collapsed: false
                                                              question:
                                                                type: image
                                                                active: true
                                                                code: imagen_feria
                                                                help_text: ''
                                                                help_text_translations:
                                                                  es: ''
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                id: 67a241511adde9311d0f1835
                                                                question: >-
                                                                  Adjunte las evidencias gráficas del
                                                                  incumplimiento:
                                                                question_translations:
                                                                  es: >-
                                                                    Adjunte las evidencias gráficas del
                                                                    incumplimiento:
                                                                  en: ''
                                                                  ca: ''
                                                                  eu: ''
                                                                  fr: ''
                                                                  es_MX: ''
                                                                  en_AU: ''
                                                                tags: []
                                                                archived: false
                                                              required: false
                                                              default_value: ''
                                                          id: 67a2415c8f62e72c70034f23
                                                          name: encadenadas_feria1
                                                          use_cases:
                                                            - type: linked_list
                                                              id: 66ed366037c0c32c020b5372
                                                          description: Encadenadas
                                                  required: false
                                                  default_value: ''
                                              id: 67a23e97568815817600a1b3
                                              name: prueba_feria1
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                              description: Certificado de seguridad y solidez
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: true
                                      default_collapsed: true
                                      question:
                                        type: multiValueList
                                        active: true
                                        code: 1multip
                                        help_text: Prueba lista multiple superior a 5
                                        help_text_translations:
                                          es: >-
                                            Prueba lista multiple superior a 5
                                            opciones
                                          en: Prueba lista multiple superior a 5
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 68c945250b29226cdc0397a1
                                        question: ppr1
                                        question_translations:
                                          es: Pregunta multiple +5
                                          en: ppr1
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags:
                                          - name: x
                                            color: '#000000'
                                            id: x
                                        archived: false
                                        possible_answers:
                                          - value: 5c
                                            value_translations:
                                              es: Opcion 1
                                              en: 5c
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: multiValueList
                                                    active: true
                                                    code: tlj_r_descacharrizacion_lm
                                                    help_text: >-
                                                      **¡ADVERTENCIA!** \- No se recoge
                                                      escombro o poda; no se recogen cacharros
                                                      al interior de domicilios, favor de
                                                      dejarlos fuera.
                                                    help_text_translations:
                                                      es: >-
                                                        **¡ADVERTENCIA!** \- No se recoge
                                                        escombro o poda; no se recogen cacharros
                                                        al interior de domicilios, favor de
                                                        dejarlos fuera.
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: >-
                                                        **¡ADVERTENCIA!** \- No se recoge
                                                        escombro o poda; no se recogen cacharros
                                                        al interior de domicilios, favor de
                                                        dejarlos fuera.
                                                      en_AU: ''
                                                    id: 5e94a25d1078bd6d2e8b4571
                                                    question: Tipo de material a recolectar
                                                    question_translations:
                                                      es: Tipo de material a recolectar
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: Tipo de material a recolectar
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                    possible_answers:
                                                      - value: Electrónico
                                                        value_translations:
                                                          es: Electrónico
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: Electrónico
                                                          en_AU: ''
                                                        archived: false
                                                      - value: Llantas
                                                        value_translations:
                                                          es: Llantas
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: Llantas
                                                          en_AU: ''
                                                        archived: false
                                                      - value: Cartón
                                                        value_translations:
                                                          es: Cartón
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: Cartón
                                                          en_AU: ''
                                                        archived: false
                                                      - value: Muebles
                                                        value_translations:
                                                          es: Muebles
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: Muebles
                                                          en_AU: ''
                                                        archived: false
                                                      - value: Vidrio
                                                        value_translations:
                                                          es: Vidrio
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: Vidrio
                                                          en_AU: ''
                                                        archived: false
                                                      - value: Colchones
                                                        value_translations:
                                                          es: Colchones
                                                          en: ''
                                                          ca: ''
                                                          eu: ''
                                                          fr: ''
                                                          es_MX: Colchones
                                                          en_AU: ''
                                                        archived: false
                                                  required: true
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: number
                                                    active: true
                                                    code: tlj_r_descacharrizacion_n
                                                    help_text: >-
                                                      Especifique el peso aproximado del
                                                      material a recolectar.
                                                    help_text_translations:
                                                      es: >-
                                                        Especifique el peso aproximado del
                                                        material a recolectar.
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: >-
                                                        Especifique el peso aproximado del
                                                        material a recolectar.
                                                      en_AU: ''
                                                    id: 5e94a2f002be88b22b8b4585
                                                    question: Peso aproximado
                                                    question_translations:
                                                      es: Peso aproximado
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: Peso aproximado
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: true
                                                  default_value: ''
                                              id: 5eebae47c0579d280a8b4578
                                              name: Tlj_Concatenada_CasaDescacharrización
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                          - value: 6c
                                            value_translations:
                                              es: Opción 2
                                              en: 6c
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: >-
                                                      alc_a_encargosaseromaldeldptodemantenimientodeedificios_aclaracionesalorigen_T
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 5f7336e49041c4e2018b4579
                                                    question: Aclaraciones al origen
                                                    question_translations:
                                                      es: Aclaraciones al origen
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags:
                                                      - name: Alcobendas
                                                        color: '#0271b8'
                                                        id: Alcobendas
                                                      - name: mantenimiento
                                                        color: '#000000'
                                                        id: mantenimiento
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 5fb4fbda4e63f2d9018b456b
                                              name: Solicitudes, aclaraciones al origen
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                          - value: Opcion 3
                                            value_translations:
                                              es: ffd
                                              en: Opcion 3
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: Opcion 4
                                            value_translations:
                                              es: fft
                                              en: Opcion 4
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                          - value: Opcion 5
                                            value_translations:
                                              es: ''
                                              en: Opcion 5
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: false
                                                  hidden_in_open010_form: false
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: necesitascontarnosalgomas_t
                                                    help_text: >-
                                                      Apórtanos aquí la información adicional
                                                      que consideres para atender de forma más
                                                      eficiente tu solicitud📌
                                                    help_text_translations:
                                                      es: >-
                                                        Apórtanos aquí la información adicional
                                                        que consideres para atender de forma más
                                                        eficiente tu solicitud📌
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: >-
                                                        Aportanos aquí la información adicional
                                                        que consideres para atender de forma más
                                                        eficiente tu solicitud.
                                                      en_AU: ''
                                                    id: 5e84d6f81078bd27238b46a1
                                                    question: ¿Necesitas contarnos algo más?
                                                    question_translations:
                                                      es: ¿Necesitas contarnos algo más?
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ¿Necesitas contarnos algo más?
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 649beeb3e0987774410f7395
                                              name: Lista encadenada
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                      required: false
                                      default_value: ''
                                  id: 68d157ac62a9d00ccb0f6d3f
                                  name: Prueba lista encadenada
                                  use_cases:
                                    - type: linked_list
                                      id: 675738c67470888ae20cc926
                                      description: Prueba 01
                                  description: Prueba lista encadenada
                          required: false
                          default_value: ''
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: multiValueList
                            active: true
                            code: multicorta
                            help_text: a tun can plató
                            help_text_translations:
                              es: a tun can plató
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 68d11f95f9f4e3b4140e00d3
                            question: a tun can plató?
                            question_translations:
                              es: a tun can plató?
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            tags: []
                            archived: false
                            possible_answers:
                              - value: Si
                                value_translations:
                                  es: Si
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                                next_question_list:
                                  requiredVariables: []
                                  configurable_questions:
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: multiValueList
                                        active: true
                                        code: tlj_r_descacharrizacion_lm
                                        help_text: >-
                                          **¡ADVERTENCIA!** \- No se recoge
                                          escombro o poda; no se recogen cacharros
                                          al interior de domicilios, favor de
                                          dejarlos fuera.
                                        help_text_translations:
                                          es: >-
                                            **¡ADVERTENCIA!** \- No se recoge
                                            escombro o poda; no se recogen cacharros
                                            al interior de domicilios, favor de
                                            dejarlos fuera.
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: >-
                                            **¡ADVERTENCIA!** \- No se recoge
                                            escombro o poda; no se recogen cacharros
                                            al interior de domicilios, favor de
                                            dejarlos fuera.
                                          en_AU: ''
                                        id: 5e94a25d1078bd6d2e8b4571
                                        question: Tipo de material a recolectar
                                        question_translations:
                                          es: Tipo de material a recolectar
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: Tipo de material a recolectar
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: Electrónico
                                            value_translations:
                                              es: Electrónico
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: Electrónico
                                              en_AU: ''
                                            archived: false
                                          - value: Llantas
                                            value_translations:
                                              es: Llantas
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: Llantas
                                              en_AU: ''
                                            archived: false
                                          - value: Cartón
                                            value_translations:
                                              es: Cartón
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: Cartón
                                              en_AU: ''
                                            archived: false
                                          - value: Muebles
                                            value_translations:
                                              es: Muebles
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: Muebles
                                              en_AU: ''
                                            archived: false
                                          - value: Vidrio
                                            value_translations:
                                              es: Vidrio
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: Vidrio
                                              en_AU: ''
                                            archived: false
                                          - value: Colchones
                                            value_translations:
                                              es: Colchones
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: Colchones
                                              en_AU: ''
                                            archived: false
                                      required: true
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: number
                                        active: true
                                        code: tlj_r_descacharrizacion_n
                                        help_text: >-
                                          Especifique el peso aproximado del
                                          material a recolectar.
                                        help_text_translations:
                                          es: >-
                                            Especifique el peso aproximado del
                                            material a recolectar.
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: >-
                                            Especifique el peso aproximado del
                                            material a recolectar.
                                          en_AU: ''
                                        id: 5e94a2f002be88b22b8b4585
                                        question: Peso aproximado
                                        question_translations:
                                          es: Peso aproximado
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: Peso aproximado
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                      required: true
                                      default_value: ''
                                  id: 5eebae47c0579d280a8b4578
                                  name: Tlj_Concatenada_CasaDescacharrización
                                  use_cases:
                                    - type: linked_list
                                      id: 66ed366037c0c32c020b5372
                              - value: 'No'
                                value_translations:
                                  es: 'No'
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                                next_question_list:
                                  requiredVariables: []
                                  configurable_questions:
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: text
                                        active: true
                                        code: tlj_r_otro_t
                                        help_text: ''
                                        help_text_translations:
                                          es: ''
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 5f2042a8dcb6b4a7058b4568
                                        question: >-
                                          Describa en caso de haber seleccionado
                                          "Otro"
                                        question_translations:
                                          es: >-
                                            Describa en caso de haber seleccionado
                                            "Otro"
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: >-
                                            Describa en caso de haber seleccionado
                                            "Otro"
                                          en_AU: ''
                                        tags:
                                          - name: movilidad
                                            id: movilidad
                                        archived: false
                                      required: false
                                      default_value: ''
                                  id: 5f2042aedcb6b4a2058b4571
                                  name: Tlj_Movilidad_Concatenada_Describe
                                  use_cases:
                                    - type: linked_list
                                      id: 66ed366037c0c32c020b5372
                          required: false
                          default_value: ''
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: datetime
                            active: true
                            code: fecha_1
                            help_text: ''
                            help_text_translations:
                              es: ''
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 64544f73bae992b0c7064c03
                            question: Selecciona la fecha
                            question_translations:
                              es: Selecciona la fecha
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: Selecciona la fecha
                              en_AU: ''
                            tags: []
                            archived: false
                          required: false
                          default_value: ''
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: hash
                            active: true
                            code: HASHPR
                            help_text: un hash
                            help_text_translations:
                              es: ''
                              en: un hash
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 68e5212e84271c2e2708037a
                            question: HASH?
                            question_translations:
                              es: ''
                              en: HASH?
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            tags: []
                            archived: false
                            regex: /.*/
                          required: false
                          default_value: ''
                      id: 68d1448262a9d00ccb0f6d19
                      name: Bateria_de_pruebas
                      use_cases: []
                      description: Batería de pruebas
                    social: true
                    evaluation: true
                    color: '#FBC02D'
                    hideEstimatedDate: false
                    mandatory_description: true
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: false
                      - field: last_name
                        message: ''
                        required: false
                      - field: phone
                        message: ''
                        required: false
                      - field: email
                        message: ''
                        required: true
                      - field: twitter_nickname
                        message: ''
                        required: true
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                    max_upload_files: 5
                    max_upload_medias: 5
                    public: true
                    public_requests: false
                    public_requests_internal: false
                    allow_changing_request_privacy: false
                    service_code: '2'
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png
                    sponsoring_info:
                      display: false
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    with_informant: true
                    with_internal_informant: true
                    with_authorized_internal_users: false
                  service_request_id: ALC44082
                  status_node:
                    status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 5850dca2e22c6d9f51b00c59
                    visible_name: Nuevo
                    id: 5850dd1ee22c6d9f51b0157b
                    order: 1
                    planned: false
                  supporting: false
                  tags: []
                  token: 68dd36f6dc531d0482022469
                  user:
                    hasPassword: false
                    nickname: user_cf6b655f8bdc6b8ce17c
                    avatar: >-
                      https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600
                    channels: []
                    id: 68b064f122eb8e9dcf08aad6
                    notification_channels: []
                    last_geofences: []
                    jurisdiction_element_channels: []
                  media_url: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/68dd36f7c08cf025276131.png
                - deleted: false
                  jurisdiction_name: Alcobendas
                  service_id: 5627630d6aa918d3008b456a
                  service_code: '5'
                  service_name: Farolas
                  requested_datetime: '2025-10-30T12:25:34+00:00'
                  supporting_count: 0
                  following_count: 1
                  evaluations_count: 0
                  address: C. Valportillo Segunda, 8, 28108 Alcobendas, Madrid, Spain
                  updated_datetime: '2025-10-30T12:25:41+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.alcobendas
                  status_node_type: initial_node
                  files:
                    - created_at: '2025-10-30T12:25:41+00:00'
                      public: false
                      type: '1'
                      url: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/690359453ea04969969297.pdf
                      description: >-
                        [PGICS]_202405_Parque María Luisa-
                        MVS_(Presentado)_v01.00 (1).pdf
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  current_status_assignments: []
                  public_visibility: false
                  accepted: false
                  additional_data: []
                  backoffice_user:
                    jurisdiction_element_channels: []
                  comments_count: 0
                  complaining: false
                  current_node_estimated_final_datetime: '2025-11-01T12:24:27+00:00'
                  current_node_estimated_start_datetime: '2025-10-30T12:24:27+00:00'
                  description: prueba daniel
                  estimated_final_datetime: '2025-11-12T12:24:27+00:00'
                  estimated_start_datetime: '2025-10-30T12:24:27+00:00'
                  evaluation: 0
                  following:
                    isFollowing: true
                    channels:
                      email: false
                      push: false
                  medias:
                    - created_at: '2025-10-30T12:25:38+00:00'
                      id: 69035943361db0675807db99
                      public: true
                      type: image/jpeg
                      media_url: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/69035942e90c5913010149.jpg
                      created_datetime: '2025-10-30T12:25:38+00:00'
                      deleted: false
                      media_code: 69035943361db0675807db99
                      check_distance: no_data
                      check_time: no_data
                      media_metadata:
                        location_additional_data: []
                        created: '2025-10-30T12:25:39+00:00'
                      tags: []
                  address_string: C. Valportillo Segunda, 8, 28108 Alcobendas, Madrid, Spain
                  lat: 40.530848177852
                  long: -3.6552292016614
                  location_additional_data:
                    - type: text
                      value: Empresarial
                      question:
                        type: text
                        active: true
                        code: distrito_T
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 5de929ca0007544c098b4578
                        question: oij
                        question_translations:
                          es: Distrito
                          en: oij
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: distrito
                            color: '#000000'
                            id: distrito
                          - name: localización
                            color: '#000000'
                            id: localización
                        archived: false
                    - type: text
                      value: Poligono Industrial
                      question:
                        type: text
                        active: true
                        code: barrio_es_t
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 5ea6af91eaa11bba058b45d5
                        question: Barrio
                        question_translations:
                          es: Barrio
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: barrio
                            color: '#000000'
                            id: barrio
                          - name: localización
                            color: '#000000'
                            id: localización
                        archived: false
                  priority:
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                  public: false
                  seen: false
                  service:
                    deleted: false
                    parent_service_name: Alumbrado público
                    group: 5620e9176aa91815008b4567
                    visible_name: Farolas (Aviso)
                    mandatory_medias: false
                    mandatory_files: false
                    id: 5627630d6aa918d3008b456a
                    additionalData:
                      requiredVariables:
                        - 5de929ca0007544c098b4578
                      configurable_questions:
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: label
                            active: true
                            code: Titulo_ordenanzalegal
                            help_text: >-
                              _Conjunto de normas aprobadas por el Ayuntamiento
                              de Sevilla para regular el funcionamiento, uso del
                              espacio público y la convivencia durante el
                              evento._
                            help_text_translations:
                              es: >-
                                _Conjunto de normas aprobadas por el
                                Ayuntamiento de Sevilla para regular el
                                funcionamiento, uso del espacio público y la
                                convivencia durante el evento._
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 67a4d41d3074f177c00b3f40
                            question: '## Ordenanza legal'
                            question_translations:
                              es: '## Ordenanza legal'
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            tags: []
                            archived: false
                          required: false
                          default_value: ''
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: label
                            active: true
                            code: Permiso_e_Inspecci__n
                            help_text: ''
                            help_text_translations:
                              es: ''
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 67a4d8998f526466540bd6f4
                            question: '## 📝 Permiso e Inspección'
                            question_translations:
                              es: '## 📝 Permiso e Inspección'
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            tags: []
                            archived: false
                          required: false
                          default_value: ''
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: singleValueList
                            active: true
                            code: montaje_caseta1
                            help_text: >-
                              _Artículo 2: Define que las licencias de casetas
                              son concesiones administrativas temporales,
                              otorgadas para la instalación y explotación de
                              casetas en el recinto ferial. Estas licencias
                              están sujetas al cumplimiento de las normativas
                              municipales y su finalidad es garantizar el uso
                              adecuado de los espacios durante la Feria._
                            help_text_translations:
                              es: >-
                                _Artículo 2: Define que las licencias de casetas
                                son concesiones administrativas temporales,
                                otorgadas para la instalación y explotación de
                                casetas en el recinto ferial. Estas licencias
                                están sujetas al cumplimiento de las normativas
                                municipales y su finalidad es garantizar el uso
                                adecuado de los espacios durante la Feria._
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 67a4d346368ebfa05405809c
                            question: Autorización de montaje
                            question_translations:
                              es: Autorización de montaje
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            tags: []
                            archived: false
                            possible_answers:
                              - value: Sí
                                value_translations:
                                  es: Sí
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                                next_question_list:
                                  requiredVariables: []
                                  configurable_questions:
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: label
                                        active: true
                                        code: Funcionamiento_feria
                                        help_text: ''
                                        help_text_translations:
                                          es: ''
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a4922f368ebfa054058094
                                        question: '## 📋 Funcionamiento del formulario'
                                        question_translations:
                                          es: '## 📋 Funcionamiento del formulario'
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: label
                                        active: true
                                        code: funcion_feria
                                        help_text: ''
                                        help_text_translations:
                                          es: ''
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a4ab0853533cfb5605fcb5
                                        question: >-
                                          Este formulario permite registrar
                                          únicamente los incumplimientos
                                          detectados durante la inspección. Cada
                                          apartado debe marcarse solo si la norma
                                          no se cumple; de lo contrario, se
                                          considerará conforme.  


                                          En caso de incumplimiento, el inspector
                                          deberá:  


                                          *   Describir las razones en el campo de
                                          texto libre.  

                                          *   Adjuntar evidencias gráficas o
                                          archivos que respalden la observación.  


                                          Este proceso garantiza una supervisión
                                          eficiente y una documentación clara de
                                          las incidencias.
                                        question_translations:
                                          es: >-
                                            Este formulario permite registrar
                                            únicamente los incumplimientos
                                            detectados durante la inspección. Cada
                                            apartado debe marcarse solo si la norma
                                            no se cumple; de lo contrario, se
                                            considerará conforme.  


                                            En caso de incumplimiento, el inspector
                                            deberá:  


                                            *   Describir las razones en el campo de
                                            texto libre.  

                                            *   Adjuntar evidencias gráficas o
                                            archivos que respalden la observación.  


                                            Este proceso garantiza una supervisión
                                            eficiente y una documentación clara de
                                            las incidencias.
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: label
                                        active: true
                                        code: titulo_feria
                                        help_text: ''
                                        help_text_translations:
                                          es: ''
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a4ab2f22f65863190e13d7
                                        question: >-
                                          ## 📏 Dimensiones y estructura de las
                                          casetas
                                        question_translations:
                                          es: >-
                                            ## 📏 Dimensiones y estructura de las
                                            casetas
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: singleValueList
                                        active: true
                                        code: prueba_feria01
                                        help_text: >-
                                          _Artículo 64 - Módulos de las casetas:
                                          El módulo es la unidad de medida básica
                                          de las casetas en la Feria de Sevilla.
                                          Cada módulo tiene una anchura estándar
                                          de 4 metros y una profundidad mínima de
                                          6 metros, sobre la cual se levanta la
                                          estructura base de la caseta._
                                        help_text_translations:
                                          es: >-
                                            _Artículo 64 - Módulos de las casetas:
                                            El módulo es la unidad de medida básica
                                            de las casetas en la Feria de Sevilla.
                                            Cada módulo tiene una anchura estándar
                                            de 4 metros y una profundidad mínima de
                                            6 metros, sobre la cual se levanta la
                                            estructura base de la caseta._
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a48efd3074f177c00b3f34
                                        question: '**Documento de dimensiones**'
                                        question_translations:
                                          es: '**Documento de dimensiones**'
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: >-
                                              El documento en el que se reflejan las
                                              dimensiones no está disponible o
                                              presenta irregularidades.
                                            value_translations:
                                              es: >-
                                                El documento en el que se reflejan las
                                                dimensiones no está disponible o
                                                presenta irregularidades.
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: texto_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a240f25a7fd323a5026116
                                                    question: 'Indique las razones del incumplimiento:'
                                                    question_translations:
                                                      es: 'Indique las razones del incumplimiento:'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: image
                                                    active: true
                                                    code: imagen_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a241511adde9311d0f1835
                                                    question: >-
                                                      Adjunte las evidencias gráficas del
                                                      incumplimiento:
                                                    question_translations:
                                                      es: >-
                                                        Adjunte las evidencias gráficas del
                                                        incumplimiento:
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 67a2415c8f62e72c70034f23
                                              name: encadenadas_feria1
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                              description: Encadenadas
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: singleValueList
                                        active: true
                                        code: feria1
                                        help_text: >-
                                          _Artículo 65 - Estabilidad de las
                                          estructuras: Las casetas deben contar
                                          con un certificado de seguridad y
                                          solidez emitido por un técnico
                                          cualificado y visado por el Colegio
                                          Oficial, garantizando la estabilidad de
                                          sus estructuras. Este documento debe
                                          obtenerse antes del inicio del festejo y
                                          estar disponible para los Servicios
                                          Técnicos Municipales._
                                        help_text_translations:
                                          es: >-
                                            _Artículo 65 - Estabilidad de las
                                            estructuras: Las casetas deben contar
                                            con un certificado de seguridad y
                                            solidez emitido por un técnico
                                            cualificado y visado por el Colegio
                                            Oficial, garantizando la estabilidad de
                                            sus estructuras. Este documento debe
                                            obtenerse antes del inicio del festejo y
                                            estar disponible para los Servicios
                                            Técnicos Municipales._
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a23e881a0f77255607a493
                                        question: '**Certificado de seguridad y solidez**'
                                        question_translations:
                                          es: '**Certificado de seguridad y solidez**'
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: >-
                                              El certificado de seguridad y solidez
                                              emitido por un técnico cualificado no ha
                                              sido presentado o es inválido
                                            value_translations:
                                              es: >-
                                                El certificado de seguridad y solidez
                                                emitido por un técnico cualificado no ha
                                                sido presentado o es inválido
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: texto_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a240f25a7fd323a5026116
                                                    question: 'Indique las razones del incumplimiento:'
                                                    question_translations:
                                                      es: 'Indique las razones del incumplimiento:'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: image
                                                    active: true
                                                    code: imagen_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a241511adde9311d0f1835
                                                    question: >-
                                                      Adjunte las evidencias gráficas del
                                                      incumplimiento:
                                                    question_translations:
                                                      es: >-
                                                        Adjunte las evidencias gráficas del
                                                        incumplimiento:
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 67a2415c8f62e72c70034f23
                                              name: encadenadas_feria1
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                              description: Encadenadas
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: singleValueList
                                        active: true
                                        code: prueba_feria2
                                        help_text: >-
                                          _Artículo 78 - Vías de evacuación: Desde
                                          el fondo de la caseta, en el que
                                          habitualmente se localizan los servicios
                                          evacuatorios, hasta cada una de las
                                          salidas exigibles en la línea de
                                          fachada, deberán mantenerse pasillos
                                          considerados vías de evacuación, que
                                          deben permanecer libres de obstáculos,
                                          con una anchura mínima de 1,20 metros._
                                        help_text_translations:
                                          es: >-
                                            _Artículo 78 - Vías de evacuación: Desde
                                            el fondo de la caseta, en el que
                                            habitualmente se localizan los servicios
                                            evacuatorios, hasta cada una de las
                                            salidas exigibles en la línea de
                                            fachada, deberán mantenerse pasillos
                                            considerados vías de evacuación, que
                                            deben permanecer libres de obstáculos,
                                            con una anchura mínima de 1,20 metros._
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a48f53bddb8f0fa301e5f4
                                        question: '**Medidas inadecuadas de la caseta**'
                                        question_translations:
                                          es: '**Medidas inadecuadas de la caseta**'
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: >-
                                              Las medidas de la caseta no cumplen con
                                              la normativa establecida.
                                            value_translations:
                                              es: >-
                                                Las medidas de la caseta no cumplen con
                                                la normativa establecida.
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: texto_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a240f25a7fd323a5026116
                                                    question: 'Indique las razones del incumplimiento:'
                                                    question_translations:
                                                      es: 'Indique las razones del incumplimiento:'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: image
                                                    active: true
                                                    code: imagen_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a241511adde9311d0f1835
                                                    question: >-
                                                      Adjunte las evidencias gráficas del
                                                      incumplimiento:
                                                    question_translations:
                                                      es: >-
                                                        Adjunte las evidencias gráficas del
                                                        incumplimiento:
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 67a2415c8f62e72c70034f23
                                              name: encadenadas_feria1
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                              description: Encadenadas
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: singleValueList
                                        active: true
                                        code: prueba_feria3
                                        help_text: >-
                                          _Artículo 79 - Aseos: En la zona de
                                          trastienda, para la delimitación de
                                          aseos, se debe emplear módulos
                                          prefabricados o de chapa o material
                                          incombustible, los cuales deben ser
                                          retirados dentro de los quince días
                                          siguientes a la finalización del
                                          festejo_
                                        help_text_translations:
                                          es: >-
                                            _Artículo 79 - Aseos: En la zona de
                                            trastienda, para la delimitación de
                                            aseos, se debe emplear módulos
                                            prefabricados o de chapa o material
                                            incombustible, los cuales deben ser
                                            retirados dentro de los quince días
                                            siguientes a la finalización del
                                            festejo_
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a48f833074f177c00b3f36
                                        question: >-
                                          **Material no autorizado en módulos de
                                          casetas**
                                        question_translations:
                                          es: >-
                                            **Material no autorizado en módulos de
                                            casetas**
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: >-
                                              El módulo prefabricado o de chapa no
                                              cumple con los requisitos de material
                                              incombustible.
                                            value_translations:
                                              es: >-
                                                El módulo prefabricado o de chapa no
                                                cumple con los requisitos de material
                                                incombustible.
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: texto_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a240f25a7fd323a5026116
                                                    question: 'Indique las razones del incumplimiento:'
                                                    question_translations:
                                                      es: 'Indique las razones del incumplimiento:'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: image
                                                    active: true
                                                    code: imagen_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a241511adde9311d0f1835
                                                    question: >-
                                                      Adjunte las evidencias gráficas del
                                                      incumplimiento:
                                                    question_translations:
                                                      es: >-
                                                        Adjunte las evidencias gráficas del
                                                        incumplimiento:
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 67a2415c8f62e72c70034f23
                                              name: encadenadas_feria1
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                              description: Encadenadas
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: false
                                      hidden_in_open010_form: false
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: singleValueList
                                        active: true
                                        code: prueba_feria4
                                        help_text: >-
                                          _Artículo 66 - Cubierta: La cubrición de
                                          cada caseta debe ser a dos aguas, con
                                          una altura de tres metros y un pendolón
                                          de entre 1,50 y 2 metros._
                                        help_text_translations:
                                          es: >-
                                            _Artículo 66 - Cubierta: La cubrición de
                                            cada caseta debe ser a dos aguas, con
                                            una altura de tres metros y un pendolón
                                            de entre 1,50 y 2 metros._
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a48fb322f65863190e13d5
                                        question: >-
                                          **Dimensiones incorrectas en la
                                          cubierta**
                                        question_translations:
                                          es: >-
                                            **Dimensiones incorrectas en la
                                            cubierta**
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                        possible_answers:
                                          - value: >-
                                              Las medidas de la cubierta no cumplen
                                              con la normativa establecida.
                                            value_translations:
                                              es: >-
                                                Las medidas de la cubierta no cumplen
                                                con la normativa establecida.
                                              en: ''
                                              ca: ''
                                              eu: ''
                                              fr: ''
                                              es_MX: ''
                                              en_AU: ''
                                            archived: false
                                            next_question_list:
                                              requiredVariables: []
                                              configurable_questions:
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: text
                                                    active: true
                                                    code: texto_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a240f25a7fd323a5026116
                                                    question: 'Indique las razones del incumplimiento:'
                                                    question_translations:
                                                      es: 'Indique las razones del incumplimiento:'
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                                - editable: true
                                                  hidden_in_detail: false
                                                  hidden_in_form: false
                                                  hidden_in_open010_detail: true
                                                  hidden_in_open010_form: true
                                                  show_collapsed: false
                                                  default_collapsed: false
                                                  question:
                                                    type: image
                                                    active: true
                                                    code: imagen_feria
                                                    help_text: ''
                                                    help_text_translations:
                                                      es: ''
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    id: 67a241511adde9311d0f1835
                                                    question: >-
                                                      Adjunte las evidencias gráficas del
                                                      incumplimiento:
                                                    question_translations:
                                                      es: >-
                                                        Adjunte las evidencias gráficas del
                                                        incumplimiento:
                                                      en: ''
                                                      ca: ''
                                                      eu: ''
                                                      fr: ''
                                                      es_MX: ''
                                                      en_AU: ''
                                                    tags: []
                                                    archived: false
                                                  required: false
                                                  default_value: ''
                                              id: 67a2415c8f62e72c70034f23
                                              name: encadenadas_feria1
                                              use_cases:
                                                - type: linked_list
                                                  id: 66ed366037c0c32c020b5372
                                              description: Encadenadas
                                      required: false
                                      default_value: ''
                                  id: 67a23e97568815817600a1b3
                                  name: prueba_feria1
                                  use_cases:
                                    - type: linked_list
                                      id: 66ed366037c0c32c020b5372
                                  description: Certificado de seguridad y solidez
                              - value: 'No'
                                value_translations:
                                  es: 'No'
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                                next_question_list:
                                  requiredVariables: []
                                  configurable_questions:
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: true
                                      hidden_in_open010_form: true
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: text
                                        active: true
                                        code: texto_feria
                                        help_text: ''
                                        help_text_translations:
                                          es: ''
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a240f25a7fd323a5026116
                                        question: 'Indique las razones del incumplimiento:'
                                        question_translations:
                                          es: 'Indique las razones del incumplimiento:'
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                      required: false
                                      default_value: ''
                                    - editable: true
                                      hidden_in_detail: false
                                      hidden_in_form: false
                                      hidden_in_open010_detail: true
                                      hidden_in_open010_form: true
                                      show_collapsed: false
                                      default_collapsed: false
                                      question:
                                        type: image
                                        active: true
                                        code: imagen_feria
                                        help_text: ''
                                        help_text_translations:
                                          es: ''
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        id: 67a241511adde9311d0f1835
                                        question: >-
                                          Adjunte las evidencias gráficas del
                                          incumplimiento:
                                        question_translations:
                                          es: >-
                                            Adjunte las evidencias gráficas del
                                            incumplimiento:
                                          en: ''
                                          ca: ''
                                          eu: ''
                                          fr: ''
                                          es_MX: ''
                                          en_AU: ''
                                        tags: []
                                        archived: false
                                      required: false
                                      default_value: ''
                                  id: 67a2415c8f62e72c70034f23
                                  name: encadenadas_feria1
                                  use_cases:
                                    - type: linked_list
                                      id: 66ed366037c0c32c020b5372
                                  description: Encadenadas
                          required: false
                          response_attribute: MONTAJEAUT_CASETA
                          default_value: ''
                      endpoint: >-
                        https://feria.free.beeceptor.com/todos?distrito=%5de929ca0007544c098b4578%
                      id: 67a4d351a35d066cff07c6e8
                      name: encadenada_caseta
                      use_cases: []
                      description: Autorización de montaje
                    social: true
                    evaluation: true
                    color: '#FBC02D'
                    hideEstimatedDate: true
                    mandatory_description: true
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: false
                      - field: last_name
                        message: ''
                        required: false
                      - field: phone
                        message: Me dice Belén que lo quiere
                        required: false
                      - field: email
                        message: ''
                        required: true
                      - field: twitter_nickname
                        message: ''
                        required: false
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                    max_upload_files: 1
                    max_upload_medias: 2
                    public: true
                    public_requests: false
                    public_requests_internal: false
                    allow_changing_request_privacy: false
                    service_code: '5'
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db19490928b3.png
                    sponsoring_info:
                      display: false
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    with_informant: true
                    with_internal_informant: false
                    with_authorized_internal_users: false
                  service_request_id: ALC44136
                  status_node:
                    status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 5850dca2e22c6d9f51b00c59
                    visible_name: Nuevo
                    id: 5850dd1fe22c6d9f51b0158d
                    order: 1
                    planned: false
                  supporting: false
                  tags: []
                  token: 6903593f73f453bfa103bbb9
                  user:
                    hasPassword: false
                    nickname: user_cf6b655f8bdc6b8ce17c
                    avatar: >-
                      https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600
                    channels: []
                    id: 68b064f122eb8e9dcf08aad6
                    notification_channels: []
                    last_geofences: []
                    jurisdiction_element_channels: []
                  media_url: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/69035942e90c5913010149.jpg
                - deleted: false
                  jurisdiction_name: Alcobendas
                  service_id: 6786c96fddce2c23de0fd7bf
                  service_code: '122'
                  service_name: Farolas_2
                  requested_datetime: '2025-10-31T18:40:10+00:00'
                  supporting_count: 0
                  following_count: 0
                  evaluations_count: 0
                  address: >-
                    P.º del Conde de los Gaitanes, 22, 28109 Alcobendas, Madrid,
                    Spain
                  updated_datetime: '2025-10-31T18:40:10+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.alcobendas
                  status_node_type: initial_node
                  files: []
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  current_status_assignments: []
                  public_visibility: false
                  accepted: false
                  additional_data: []
                  comments_count: 0
                  complaining: false
                  current_node_estimated_final_datetime: '2025-11-02T18:40:10+00:00'
                  current_node_estimated_start_datetime: '2025-10-31T18:40:10+00:00'
                  description: cd
                  estimated_final_datetime: '2025-11-13T18:40:10+00:00'
                  estimated_start_datetime: '2025-10-31T18:40:10+00:00'
                  evaluation: 0
                  following:
                    isFollowing: false
                  medias: []
                  address_string: >-
                    P.º del Conde de los Gaitanes, 22, 28109 Alcobendas, Madrid,
                    Spain
                  lat: 40.550330732028
                  long: -3.6591339111328
                  location_additional_data:
                    - type: text
                      value: Urbanizaciones
                      question:
                        type: text
                        active: true
                        code: distrito_T
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 5de929ca0007544c098b4578
                        question: oij
                        question_translations:
                          es: Distrito
                          en: oij
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: distrito
                            color: '#000000'
                            id: distrito
                          - name: localización
                            color: '#000000'
                            id: localización
                        archived: false
                  priority:
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                  public: false
                  seen: false
                  service:
                    deleted: false
                    parent_service_name: Alumbrado público
                    group: 5620e9176aa91815008b4567
                    visible_name: Farolas_2 (Aviso)
                    mandatory_medias: false
                    mandatory_files: false
                    id: 6786c96fddce2c23de0fd7bf
                    social: true
                    evaluation: true
                    color: '#000000'
                    hideEstimatedDate: false
                    mandatory_description: false
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: false
                      - field: last_name
                        message: ''
                        required: false
                      - field: phone
                        message: ''
                        required: false
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: email
                        message: ''
                        required: false
                      - field: twitter_nickname
                        message: ''
                        required: false
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                    max_upload_files: 5
                    max_upload_medias: 5
                    public: true
                    public_requests: false
                    public_requests_internal: false
                    allow_changing_request_privacy: false
                    service_code: '122'
                    sponsoring_info:
                      display: false
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    with_informant: false
                    with_internal_informant: false
                    with_authorized_internal_users: false
                  service_request_id: ALC44140
                  status_node:
                    status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 5850dca2e22c6d9f51b00c59
                    visible_name: Nuevo
                    id: 6786c96fddce2c23de0fd7b0
                    order: 1
                    planned: false
                  supporting: false
                  tags: []
                  token: 6905028a9651a932ed0b677e
                  user:
                    hasPassword: false
                    nickname: user_cf6b655f8bdc6b8ce17c
                    avatar: >-
                      https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600
                    channels: []
                    id: 68b064f122eb8e9dcf08aad6
                    notification_channels: []
                    last_geofences: []
                    jurisdiction_element_channels: []
                - deleted: false
                  jurisdiction_name: Alcobendas
                  service_id: 570b55b26aa918db008b4567
                  service_code: '60'
                  service_name: Ascensor calle Granada
                  requested_datetime: '2025-11-04T16:02:51+00:00'
                  supporting_count: 0
                  following_count: 1
                  evaluations_count: 0
                  address: P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain
                  updated_datetime: '2025-11-04T16:02:53+00:00'
                  evaluations_avg: -1
                  reiterations_count: 0
                  complaints_count: 0
                  jurisdiction_id: org.alcobendas
                  status_node_type: initial_node
                  files: []
                  is_evaluable: false
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  current_status_assignments: []
                  public_visibility: false
                  accepted: false
                  additional_data: []
                  comments_count: 0
                  complaining: false
                  current_node_estimated_final_datetime: '2025-11-06T16:02:52+00:00'
                  current_node_estimated_start_datetime: '2025-11-04T16:02:52+00:00'
                  description: prueba
                  estimated_final_datetime: '2025-11-17T16:02:52+00:00'
                  estimated_start_datetime: '2025-11-04T16:02:52+00:00'
                  evaluation: 0
                  following:
                    isFollowing: true
                    channels:
                      email: false
                      push: false
                  medias: []
                  address_string: P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain
                  lat: 40.54628714504
                  long: -3.6569023132324
                  location_additional_data:
                    - type: text
                      value: Norte
                      question:
                        type: text
                        active: true
                        code: distrito_T
                        help_text: ''
                        help_text_translations:
                          es: ''
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 5de929ca0007544c098b4578
                        question: oij
                        question_translations:
                          es: Distrito
                          en: oij
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: distrito
                            color: '#000000'
                            id: distrito
                          - name: localización
                            color: '#000000'
                            id: localización
                        archived: false
                  priority:
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                  public: true
                  seen: false
                  service:
                    deleted: false
                    parent_service_name: Ascensores en vía pública
                    group: 570b50756aa918d6008b4567
                    visible_name: Ascensor calle Granada (Aviso)
                    mandatory_medias: false
                    mandatory_files: false
                    id: 570b55b26aa918db008b4567
                    additionalData:
                      requiredVariables: []
                      configurable_questions:
                        - editable: true
                          hidden_in_detail: false
                          hidden_in_form: false
                          hidden_in_open010_detail: false
                          hidden_in_open010_form: false
                          show_collapsed: false
                          default_collapsed: false
                          question:
                            type: singleValueList
                            active: true
                            code: Alc_ascensorcallegranada_cualeselproblema_ls
                            help_text: ''
                            help_text_translations:
                              es: ''
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            id: 604a1ade1d6cc0f7028b45a2
                            question: ¿Cuál es el problema?
                            question_translations:
                              es: ¿Cuál es el problema?
                              en: ''
                              ca: ''
                              eu: ''
                              fr: ''
                              es_MX: ''
                              en_AU: ''
                            tags:
                              - name: Acobendas
                                color: '#000000'
                                id: Acobendas
                              - name: ascensor
                                color: '#000000'
                                id: ascensor
                            archived: false
                            possible_answers:
                              - value: No funciona/parado
                                value_translations:
                                  es: No funciona/parado
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                              - value: Vandalizado
                                value_translations:
                                  es: Vandalizado
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                              - value: Rotura del pulsador
                                value_translations:
                                  es: Rotura del pulsador
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                              - value: Otro
                                value_translations:
                                  es: Otro
                                  en: ''
                                  ca: ''
                                  eu: ''
                                  fr: ''
                                  es_MX: ''
                                  en_AU: ''
                                archived: false
                          required: false
                          default_value: ''
                      id: 604a1ae47c89ecbc028b45b7
                      name: Alc_ascensorenlaviapublica_ascensorcallegranada
                      use_cases: []
                    social: true
                    evaluation: true
                    color: '#bfba3d'
                    hideEstimatedDate: false
                    mandatory_description: true
                    mandatory_informant_config:
                      - field: first_name
                        message: ''
                        required: true
                      - field: last_name
                        message: ''
                        required: true
                      - field: phone
                        message: ''
                        required: true
                      - field: email
                        message: ''
                        required: false
                      - field: twitter_nickname
                        message: ''
                        required: false
                      - field: id_document
                        message: ''
                        required: false
                      - field: addresses
                        message: ''
                        required: false
                      - field: gender
                        message: ''
                        required: false
                      - field: secondary_phone
                        message: ''
                        required: false
                      - field: birthday
                        message: ''
                        required: false
                      - field: user_location_area
                        message: ''
                        required: false
                      - field: address
                        message: ''
                        required: false
                    max_upload_files: 5
                    max_upload_medias: 5
                    public: true
                    public_requests: true
                    public_requests_internal: true
                    allow_changing_request_privacy: true
                    service_code: '60'
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png
                    sponsoring_info:
                      display: false
                    status_node: []
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    with_informant: true
                    with_internal_informant: true
                  service_request_id: ALC44145
                  status_node:
                    status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 5850dca2e22c6d9f51b00c59
                    visible_name: Nuevo
                    id: 5850dd34e22c6d9f51b016ef
                    order: 1
                    planned: false
                  supporting: false
                  tags: []
                  token: 690a23ac4e4e725ed4022cf5
                  user:
                    hasPassword: false
                    nickname: user_cf6b655f8bdc6b8ce17c
                    avatar: >-
                      https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600
                    channels: []
                    id: 68b064f122eb8e9dcf08aad6
                    notification_channels: []
                    last_geofences: []
                    jurisdiction_element_channels: []
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 403
                  description: user was not found
  /requests_follows:
    get:
      tags:
        - Request > Request
      summary: Requests Follows
      operationId: requestsFollows
      description: >-
        **Description**


        Obtiene la lista de peticiones (requests) que el usuario autenticado
        está siguiendo.
      security:
        - bearerAuth: []
      parameters:
        - name: app_key
          in: query
          schema:
            type: integer
          description: >-
            String. [optional]. Identificador único numérico de la aplicación
            cliente. Determina las jurisdicciones disponibles para filtrar las
            solicitudes. Si no se proporciona o no es válido, devuelve una lista
            vacía.
          example: '1'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Response Ok Requests Follows
                  value:
                    deleted: false
                    jurisdiction_name: Alcobendas
                    service_id: 570b55b26aa918db008b4567
                    service_code: '60'
                    service_name: Ascensor calle Granada
                    requested_datetime: '2025-11-04T16:02:51+00:00'
                    supporting_count: 0
                    following_count: 1
                    evaluations_count: 0
                    address: P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain
                    updated_datetime: '2025-12-12T21:25:53+00:00'
                    evaluations_avg: -1
                    reiterations_count: 0
                    complaints_count: 0
                    jurisdiction_id: org.alcobendas
                    status_node_type: initial_node
                    files: []
                    is_evaluable: false
                    typology:
                      hasLocation: true
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      name: Aviso
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: true
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    current_status_assignments: []
                    public_visibility: false
                    accepted: false
                    additional_data: []
                    comments_count: 0
                    complaining: false
                    current_node_estimated_final_datetime: '2025-11-06T16:02:52+00:00'
                    current_node_estimated_start_datetime: '2025-11-04T16:02:52+00:00'
                    description: prueba
                    estimated_final_datetime: '2025-11-17T16:02:52+00:00'
                    estimated_start_datetime: '2025-11-04T16:02:52+00:00'
                    evaluation: 0
                    following:
                      isFollowing: true
                      channels:
                        email: false
                        push: false
                    medias: []
                    address_string: P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain
                    lat: 40.54628714504
                    long: -3.6569023132324
                    priority:
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                    public: true
                    seen: false
                    service:
                      deleted: false
                      parent_service_name: Ascensores en vía pública
                      group: 570b50756aa918d6008b4567
                      visible_name: Ascensor calle Granada (Aviso)
                      id: 570b55b26aa918db008b4567
                      service_code: '60'
                      service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png
                    service_request_id: ALC44145
                    status_node:
                      status_node_type: initial_node
                      name: Nuevo
                      color: '#f1c40f'
                      typology_node_id: 5850dca2e22c6d9f51b00c59
                      visible_name: Nuevo
                      id: 5850dd34e22c6d9f51b016ef
                      order: 1
                      planned: false
                    supporting: false
                    tags: []
                    token: 690a23ac4e4e725ed4022cf5
                    user:
                      hasPassword: false
                      nickname: user_cf6b655f8bdc6b8ce17c
                      avatar: >-
                        https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600
                      id: 68b064f122eb8e9dcf08aad6
                example-1:
                  summary: Not app_key Requests Follows
                  value: []
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 403
                  description: user was not found
    post:
      tags:
        - Request > Request
      summary: Requests follows
      operationId: requestsFollows
      description: >-
        **Description**


        Registra al usuario autenticado como seguidor de la solicitud
        identificada por service_request_id dentro de la jurisdicción
        especificada, permitiendo configurar los canales de notificación
        deseados.
      requestBody:
        content: {}
      security:
        - bearerAuth: []
      parameters:
        - name: Authorization
          in: header
          schema:
            type: string
          example: >-
            Bearer
            YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg
        - name: Cookie
          in: header
          schema:
            type: string
          example: lunetics_locale=es
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Identificador de la jurisdicción a la que pertenece la
            solicitud
          example: '{{jurisdiction_id}}'
        - name: service_request_id
          in: query
          schema:
            type: string
          required: true
          description: String.. Identificador de la solicitud que se desea seguir
          example: ALC44145
        - name: email_notification
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Activar notificaciones por email (default:
            false)
          example: 'true'
        - name: push_notification
          in: query
          schema:
            type: boolean
          description: 'Boolean. [optional]. Activar notificaciones push (default: false)'
          example: 'true'
        - name: sms_notification
          in: query
          schema:
            type: boolean
          description: 'Boolean. [optional]. Activar notificaciones SMS (default: false)'
          example: 'true'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                deleted: false
                jurisdiction_name: Alcobendas
                service_id: 570b55b26aa918db008b4567
                service_code: '60'
                service_name: Ascensor calle Granada
                requested_datetime: '2025-11-04T16:02:51+00:00'
                supporting_count: 0
                following_count: 1
                evaluations_count: 0
                address: P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain
                updated_datetime: '2025-12-12T21:46:23+00:00'
                evaluations_avg: -1
                reiterations_count: 0
                complaints_count: 0
                jurisdiction_id: org.alcobendas
                status_node_type: initial_node
                files: []
                is_evaluable: false
                typology:
                  hasLocation: true
                  id: 5850dca2e22c6d9f51b00c0f
                  color: '#ebc113'
                  description_legend: 'Ej: farola fundida'
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                  location_type: geolocation
                  name: Aviso
                  order: 1
                  public: true
                  typology_description: Tengo un problema con un elemento en la calle
                  visible_name: Aviso
                  with_authorized_users: true
                  with_description: true
                  with_files: true
                  with_geolocation_data: true
                  with_medias: true
                  with_temporality_data: true
                current_status_assignments: []
                public_visibility: false
                accepted: false
                additional_data: []
                comments_count: 0
                complaining: false
                current_node_estimated_final_datetime: '2025-11-06T16:02:52+00:00'
                current_node_estimated_start_datetime: '2025-11-04T16:02:52+00:00'
                description: prueba
                estimated_final_datetime: '2025-11-17T16:02:52+00:00'
                estimated_start_datetime: '2025-11-04T16:02:52+00:00'
                evaluation: 0
                following:
                  isFollowing: true
                  channels:
                    email: false
                    push: false
                medias: []
                address_string: P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain
                lat: 40.54628714504
                long: -3.6569023132324
                location_additional_data:
                  - type: text
                    value: Norte
                    question:
                      type: text
                      active: true
                      code: distrito_T
                      help_text: ''
                      help_text_translations:
                        es: ''
                        en: ''
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                      id: 5de929ca0007544c098b4578
                      question: Distrito
                      question_translations:
                        es: Distrito
                        en: oij
                        ca: ''
                        eu: ''
                        fr: ''
                        es_MX: ''
                        en_AU: ''
                      tags:
                        - name: distrito
                          color: '#000000'
                          id: distrito
                        - name: localización
                          color: '#000000'
                          id: localización
                      archived: false
                priority:
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png
                public: true
                seen: false
                service:
                  deleted: false
                  parent_service_name: Ascensores en vía pública
                  group: 570b50756aa918d6008b4567
                  visible_name: Ascensor calle Granada (Aviso)
                  mandatory_medias: false
                  mandatory_files: false
                  id: 570b55b26aa918db008b4567
                  additionalData:
                    requiredVariables: []
                    configurable_questions:
                      - editable: true
                        hidden_in_detail: false
                        hidden_in_form: false
                        hidden_in_open010_detail: false
                        hidden_in_open010_form: false
                        show_collapsed: false
                        default_collapsed: false
                        question:
                          type: singleValueList
                          active: true
                          code: Alc_ascensorcallegranada_cualeselproblema_ls
                          help_text: ''
                          help_text_translations:
                            es: ''
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          id: 604a1ade1d6cc0f7028b45a2
                          question: ¿Cuál es el problema?
                          question_translations:
                            es: ¿Cuál es el problema?
                            en: ''
                            ca: ''
                            eu: ''
                            fr: ''
                            es_MX: ''
                            en_AU: ''
                          tags:
                            - name: Acobendas
                              color: '#000000'
                              id: Acobendas
                            - name: ascensor
                              color: '#000000'
                              id: ascensor
                          archived: false
                          possible_answers:
                            - value: No funciona/parado
                              value_translations:
                                es: No funciona/parado
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              archived: false
                            - value: Vandalizado
                              value_translations:
                                es: Vandalizado
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              archived: false
                            - value: Rotura del pulsador
                              value_translations:
                                es: Rotura del pulsador
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              archived: false
                            - value: Otro
                              value_translations:
                                es: Otro
                                en: ''
                                ca: ''
                                eu: ''
                                fr: ''
                                es_MX: ''
                                en_AU: ''
                              archived: false
                        required: false
                        default_value: ''
                    id: 604a1ae47c89ecbc028b45b7
                    name: Alc_ascensorenlaviapublica_ascensorcallegranada
                    use_cases: []
                  social: true
                  evaluation: true
                  color: '#bfba3d'
                  hideEstimatedDate: false
                  mandatory_description: true
                  mandatory_informant_config:
                    - field: first_name
                      message: ''
                      required: true
                    - field: last_name
                      message: ''
                      required: true
                    - field: phone
                      message: ''
                      required: true
                    - field: email
                      message: ''
                      required: false
                    - field: twitter_nickname
                      message: ''
                      required: false
                    - field: id_document
                      message: ''
                      required: false
                    - field: addresses
                      message: ''
                      required: false
                    - field: gender
                      message: ''
                      required: false
                    - field: secondary_phone
                      message: ''
                      required: false
                    - field: birthday
                      message: ''
                      required: false
                    - field: user_location_area
                      message: ''
                      required: false
                    - field: address
                      message: ''
                      required: false
                  max_upload_files: 5
                  max_upload_medias: 5
                  public: true
                  public_requests: true
                  public_requests_internal: true
                  allow_changing_request_privacy: true
                  service_code: '60'
                  service_icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png
                  sponsoring_info:
                    display: false
                  status_node: []
                  typology:
                    hasLocation: true
                    id: 5850dca2e22c6d9f51b00c0f
                    color: '#ebc113'
                    description_legend: 'Ej: farola fundida'
                    icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                    location_type: geolocation
                    name: Aviso
                    order: 1
                    public: true
                    typology_description: Tengo un problema con un elemento en la calle
                    visible_name: Aviso
                    with_authorized_users: true
                    with_description: true
                    with_files: true
                    with_geolocation_data: true
                    with_medias: true
                    with_temporality_data: true
                  with_informant: true
                  with_internal_informant: true
                service_request_id: ALC44145
                status_node:
                  status_node_type: initial_node
                  name: Nuevo
                  color: '#f1c40f'
                  typology_node_id: 5850dca2e22c6d9f51b00c59
                  visible_name: Nuevo
                  id: 5850dd34e22c6d9f51b016ef
                  order: 1
                  planned: false
                supporting: false
                tags: []
                token: 690a23ac4e4e725ed4022cf5
                user:
                  hasPassword: false
                  nickname: user_cf6b655f8bdc6b8ce17c
                  avatar: >-
                    https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600
                  channels: []
                  id: 68b064f122eb8e9dcf08aad6
                  notification_channels: []
                  last_geofences: []
                  jurisdiction_element_channels: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: service_request_id was not provided
  /requests_medias:
    post:
      tags:
        - Request > Request
      summary: Create Request Media
      operationId: createRequestMedia
      description: >-
        Este endpoint permite adjuntar archivos multimedia (como imágenes) a una
        solicitud, los cuales pueden ser utilizados para verificar la atención o
        resolución de un ticket. La carga de archivos está sujeta a un límite
        máximo de medios por solicitud y a restricciones de formato para
        garantizar la compatibilidad y seguridad del sistema.
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - media
              properties:
                media:
                  type: string
                  description: >-
                    . File. Aquí se recibe el elemento multimedia que se quiere
                    adjuntar al ticket o aviso. Formatos permitidos 'png',
                    'jpg', 'jpeg', 'gif', 'wav', 'mp3', 'mp4', 'srt'
                  format: binary
                type:
                  type: integer
                  description: >-
                    [optional]. String. Permite establecer el tipo de elemento
                    multimedia a adjuntar en el aviso (FILE_TYPE = 1)
                  example: '1'
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. (org.alcobendas) Identificador de jurisdicción que permite
            filtrar la búsqueda del aviso a su jurisdicción asociada
          example: '{{jurisdiction_id}}'
        - name: token
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. (6564b1d0e00dc8a92a0d3597) Identificador del aviso o ticket
            al cual se le va a ajuntar el archivo multimedia.
          example: '{{token}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                type: '1'
                media_url: >-
                  https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/67d0b73dcaeda232574653.png
                created_datetime: '2025-03-11T22:20:45+00:00'
                media_code: 67d0b73fc78ebbfae40bb1b2
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: token was not provided
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                description: Media format js not allowed
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                description: token was not found
  /requests-list:
    post:
      tags:
        - Request > Request
      summary: Search Request By Query
      operationId: searchRequestByQuery
      description: >-
        Este endpoint permite la búsqueda de solicitudes o avisos mediante
        diversos criterios de filtrado. Lo que facilita la localización de
        tickets o avisos específicos dentro de un conjunto de datos.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_element_ids | Array | \[Opcional\]. Permite filtrar la
        búsqueda de avisos o tickets utilizando el ID o el nombre del
        subproyecto asociado. Si se desean incluir múltiples valores, estos
        deben separarse por comas. |

        | service_ids | Array | \[Opcional\]. Permite filtrar la búsqueda de
        avisos o tickets utilizando el iID o el nombre de la categoria asociado.
        Si se desean incluir múltiples valores, estos deben separarse por comas.
        |

        | status | Array | \[Opcional\]. Permite filtrar la búsqueda de avisos o
        tickets utilizando el iID o el nombre del status asociado. Si se desean
        incluir múltiples valores, estos deben separarse por comas. |

        | typologies | Array | \[Opcional\]. Permite filtrar la búsqueda de
        avisos o tickets utilizando el iID o el nombre del tipologia asociado.
        Si se desean incluir múltiples valores, estos deben separarse por comas.
        |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                jurisdiction_element_ids:
                  - '{{jurisdictionId}}'
                service_ids:
                  - Arquetas de alumbrado
                  - Cableado aéreo de alumbrado público
                status:
                  - Nuevo
                typologies:
                  - Reporte
                  - Aviso
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Search Request By ServiceName
                  value:
                    service_id: 5620ed7e6aa918b1008b456e
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                    service_name: Cableado aéreo de alumbrado público
                    requested_datetime: '2025-03-05T12:41:48+00:00'
                    reiterations_count: 0
                    complaints_count: 0
                    jurisdiction_id: es.madrid
                    status_node_type: initial_node
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    public_visibility: true
                    address: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    comments_count: 2
                    complaining: false
                    current_node_estimated_final_datetime: '2025-03-08T12:40:22+00:00'
                    current_node_estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    description: Prueba
                    estimated_final_datetime: '2025-03-18T12:40:22+00:00'
                    estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    evaluation: 0
                    jurisdiction_element:
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7bcde2efef4018b4569
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      extent:
                        - -3.70038574
                        - 40.50117283
                        - -3.55027416
                        - 40.58886137
                      guided_module: false
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                      id: 5c9b55579650e67d42985e80
                      location_additional_data: {}
                      name: es.madrid
                      type: city
                      visible_name: madrid
                      is_main: false
                    address_string: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    lat: 40.518565156005
                    long: -3.6294673401779
                    service_request_id: ALC43677
                    status_node:
                      typology_node_id: 5850dca2e22c6d9f51b00c59
                      visible_name: Nuevo
                      id: 5850dd1ee22c6d9f51b0157b
                      order: 1
                      planned: false
                    supporting: false
                    tags: []
                    token: 67c8468d2c6336655f0044f7
                    worknotes_count: 1
                example-1:
                  summary: Search Request By Status Name
                  value:
                    service_id: 5620ed7e6aa918b1008b456e
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                    service_name: Cableado aéreo de alumbrado público
                    requested_datetime: '2025-03-05T12:41:48+00:00'
                    reiterations_count: 0
                    complaints_count: 0
                    jurisdiction_id: es.madrid
                    status_node_type: initial_node
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    public_visibility: true
                    address: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    comments_count: 2
                    complaining: false
                    current_node_estimated_final_datetime: '2025-03-08T12:40:22+00:00'
                    current_node_estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    description: Prueba
                    estimated_final_datetime: '2025-03-18T12:40:22+00:00'
                    estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    evaluation: 0
                    jurisdiction_element:
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7bcde2efef4018b4569
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      extent:
                        - -3.70038574
                        - 40.50117283
                        - -3.55027416
                        - 40.58886137
                      guided_module: false
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                      id: 5c9b55579650e67d42985e80
                      location_additional_data: {}
                      name: es.madrid
                      type: city
                      visible_name: madrid
                      is_main: false
                    address_string: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    lat: 40.518565156005
                    long: -3.6294673401779
                    service_request_id: ALC43677
                    status_node:
                      typology_node_id: 5850dca2e22c6d9f51b00c59
                      visible_name: Nuevo
                      id: 5850dd1ee22c6d9f51b0157b
                      order: 1
                      planned: false
                    supporting: false
                    tags: []
                    token: 67c8468d2c6336655f0044f7
                    worknotes_count: 1
                example-2:
                  summary: Search Request By Jurisdiction Element Name
                  value:
                    service_id: 5620ed7e6aa918b1008b456e
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                    service_name: Cableado aéreo de alumbrado público
                    requested_datetime: '2025-03-05T12:41:48+00:00'
                    reiterations_count: 0
                    complaints_count: 0
                    jurisdiction_id: es.madrid
                    status_node_type: initial_node
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    public_visibility: true
                    address: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    comments_count: 2
                    complaining: false
                    current_node_estimated_final_datetime: '2025-03-08T12:40:22+00:00'
                    current_node_estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    description: Prueba
                    estimated_final_datetime: '2025-03-18T12:40:22+00:00'
                    estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    evaluation: 0
                    jurisdiction_element:
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7bcde2efef4018b4569
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      extent:
                        - -3.70038574
                        - 40.50117283
                        - -3.55027416
                        - 40.58886137
                      guided_module: false
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                      id: 5c9b55579650e67d42985e80
                      location_additional_data: {}
                      name: es.madrid
                      type: city
                      visible_name: madrid
                      is_main: false
                    address_string: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    lat: 40.518565156005
                    long: -3.6294673401779
                    service_request_id: ALC43677
                    status_node:
                      typology_node_id: 5850dca2e22c6d9f51b00c59
                      visible_name: Nuevo
                      id: 5850dd1ee22c6d9f51b0157b
                      order: 1
                      planned: false
                    supporting: false
                    tags: []
                    token: 67c8468d2c6336655f0044f7
                    worknotes_count: 1
                example-3:
                  summary: Search Request By Typology Name
                  value:
                    service_id: 5620ed7e6aa918b1008b456e
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png
                    service_name: Cableado aéreo de alumbrado público
                    requested_datetime: '2025-03-05T12:41:48+00:00'
                    reiterations_count: 0
                    complaints_count: 0
                    jurisdiction_id: es.madrid
                    status_node_type: initial_node
                    typology:
                      id: 5850dca2e22c6d9f51b00c0f
                      color: '#ebc113'
                      description_legend: 'Ej: farola fundida'
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png
                      location_type: geolocation
                      order: 1
                      public: true
                      typology_description: Tengo un problema con un elemento en la calle
                      visible_name: Aviso
                      with_authorized_users: false
                      with_description: true
                      with_files: true
                      with_geolocation_data: true
                      with_medias: true
                      with_temporality_data: true
                    public_visibility: true
                    address: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    comments_count: 2
                    complaining: false
                    current_node_estimated_final_datetime: '2025-03-08T12:40:22+00:00'
                    current_node_estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    description: Prueba
                    estimated_final_datetime: '2025-03-18T12:40:22+00:00'
                    estimated_start_datetime: '2025-03-05T12:40:22+00:00'
                    evaluation: 0
                    jurisdiction_element:
                      map_layers:
                        - backend: OWS
                          endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                          id: 5d9ee7bcde2efef4018b4569
                          is_default: false
                          color: '#000000'
                          internal_name: zones_prod:Alc_Distritos
                          name: Distritos
                          description: Distritos
                          preset: false
                          public: true
                          tags: []
                          token: 489780ae-39e0-40bf-93e3-57565431454a
                          type: ADMINISTRATIVE
                      extent:
                        - -3.70038574
                        - 40.50117283
                        - -3.55027416
                        - 40.58886137
                      guided_module: false
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png
                      id: 5c9b55579650e67d42985e80
                      location_additional_data: {}
                      name: es.madrid
                      type: city
                      visible_name: madrid
                      is_main: false
                    address_string: Calle Alcala, 200 A, Salamanca, Fuente Del Berro
                    lat: 40.518565156005
                    long: -3.6294673401779
                    service_request_id: ALC43677
                    status_node:
                      typology_node_id: 5850dca2e22c6d9f51b00c59
                      visible_name: Nuevo
                      id: 5850dd1ee22c6d9f51b0157b
                      order: 1
                      planned: false
                    supporting: false
                    tags: []
                    token: 67c8468d2c6336655f0044f7
                    worknotes_count: 1
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                message: lat or long was not found
  /requests_supports:
    post:
      tags:
        - Request > Request
      summary: Support Request
      operationId: supportRequest
      description: >-
        Este endpoint permite apoyar un ticket (aviso) utilizando los datos del
        usuario logeado. Una vez se apoya el ticket reportado se recibirán las
        notificaciones y novedades del mismo hasta su resolución.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_id | String | \[required\]. Identificador de la
        jurisdicción a la que pertenece. |

        | service_request_id | String | \[required\] Identificador del aviso al
        que se dará aṕoyo. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                jurisdiction_id: '{{jurisdictionId}}'
                service_request_id: ALC12345
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                deleted: false
                jurisdiction_name: Madrid
                service_id: 69332238e19f01098f0d0668
                service_code: '1'
                service_name: Limpieza y Residuos
                requested_datetime: '2025-11-13T18:19:58+00:00'
                supporting_count: 1
                following_count: 0
                evaluations_count: 0
                address: Dirección de prueba72
                updated_datetime: '2025-12-05T18:20:22+00:00'
                evaluations_avg: -1
                reiterations_count: 0
                complaints_count: 0
                jurisdiction_id: es.madrid
                status_node_type: initial_node
                files: []
                is_evaluable: true
                typology:
                  hasLocation: true
                  id: 69332230e19f01098f0d0631
                  color: '#337ab7'
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png
                  location_type: geolocation
                  name: avisos
                  order: 0
                  public: true
                  visible_name: Avisos
                  with_description: true
                  with_files: true
                  with_geolocation_data: false
                  with_medias: true
                  with_temporality_data: false
                current_status_assignments: []
                public_visibility: false
                accepted: false
                additional_data: []
                comments_count: 0
                complaining: false
                current_node_estimated_final_datetime: '2025-12-05T19:19:58+00:00'
                current_node_estimated_start_datetime: '2025-12-05T18:19:58+00:00'
                description: 0 - 0 - Madrid - Limpieza y Residuos
                estimated_final_datetime: '2025-12-05T19:19:58+00:00'
                estimated_start_datetime: '2025-12-05T18:19:58+00:00'
                evaluation: 0
                following:
                  isFollowing: false
                medias:
                  - created_at: '2025-12-05T18:19:58+00:00'
                    id: 6933224ee19f01098f0d0777
                    public: true
                    type: image/jpeg
                    media_url: >-
                      https://mtc.vdeveloper.lan/uploads/local/open010/6933224e4c4e6621672460.jpg
                    created_datetime: '2025-12-05T18:19:58+00:00'
                    deleted: false
                    media_code: 6933224ee19f01098f0d0777
                    check_distance: no_data
                    check_time: no_data
                    media_metadata:
                      location_additional_data: []
                      created: '2025-12-05T18:20:01+00:00'
                    tags: []
                address_string: Dirección de prueba72
                lat: 40.38
                long: -3.631
                location_additional_data: []
                priority:
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab796235896.png
                public: true
                seen: false
                service:
                  deleted: false
                  parent_service_name: ''
                  group: ''
                  visible_name: Limpieza y Residuos (Avisos)
                  mandatory_medias: false
                  mandatory_files: false
                  id: 69332238e19f01098f0d0668
                  social: true
                  evaluation: true
                  color: '#0B99A6'
                  hideEstimatedDate: false
                  mandatory_description: true
                  mandatory_informant_config:
                    - field: first_name
                      required: false
                    - field: last_name
                      required: false
                    - field: phone
                      required: false
                    - field: secondary_phone
                      required: false
                    - field: email
                      required: false
                    - field: twitter_nickname
                      required: false
                    - field: id_document
                      required: false
                    - field: id_documents
                      required: false
                    - field: addresses
                      required: false
                    - field: address
                      required: false
                    - field: gender
                      required: false
                    - field: birthday
                      required: false
                    - field: user_location_area
                      required: false
                  max_upload_files: 3
                  max_upload_medias: 3
                  public: true
                  public_requests: true
                  public_requests_internal: true
                  allow_changing_request_privacy: true
                  service_code: '1'
                  service_icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png
                  status_node: []
                  typology:
                    hasLocation: true
                    id: 69332230e19f01098f0d0631
                    color: '#337ab7'
                    icon: >-
                      https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png
                    location_type: geolocation
                    name: avisos
                    order: 0
                    public: true
                    visible_name: Avisos
                    with_description: true
                    with_files: true
                    with_geolocation_data: false
                    with_medias: true
                    with_temporality_data: false
                  with_informant: true
                service_request_id: MAD1001
                status_node:
                  status_node_type: initial_node
                  name: nuevo
                  color: '#7da038'
                  typology_node_id: 69332230e19f01098f0d0632
                  visible_name: Nuevo
                  id: 69332238e19f01098f0d0661
                  order: 1
                  planned: false
                supporting: false
                tags: []
                token: 6933224ee19f01098f0d0778
                user:
                  hasPassword: true
                  nickname: hely.suarez
                  channels:
                    - external: true
                      id: 6933222fe19f01098f0d0620
                      name: PruebaNotes
                  id: 6933222fe19f01098f0d062b
                  notification_channels:
                    - external: true
                      id: 6933222fe19f01098f0d0620
                      name: PruebaNotes
                  last_geofences: []
                  jurisdiction_element_channels: []
                media_url: >-
                  https://mtc.vdeveloper.lan/uploads/local/open010/6933224e4c4e6621672460.jpg
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Support Request without service_request_id
                  value:
                    - code: 400
                      description: service_request_id was not provided
                example-1:
                  summary: Support Request already
                  value:
                    - code: 400
                      description: Already supported request
  /requests_complaints:
    post:
      tags:
        - Request > Request
      summary: Complaint Request
      operationId: complaintRequest
      description: >-
        Este endpoint permite instaurar quejas por parte del usuario hacía un
        aviso (ticket) específico.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_id | String | \[required\]. Identificador de la
        jurisdicción a la que pertenece. |

        | service_request_id | String | \[required\] Identificador del aviso al
        que se le asignará la queja. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                jurisdiction_id: '{{jurisdictionId}}'
                service_request_id: ALC12345
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                deleted: false
                jurisdiction_name: Madrid
                service_id: 69332a4331a53edef30755e8
                service_code: '1'
                service_name: Limpieza y Residuos
                created_date: 27/11/2025
                requested_datetime: '2025-11-27T18:54:19+00:00'
                created_time: '19:54'
                supporting_count: 0
                following_count: 0
                repeated: false
                evaluations_count: 0
                address: Dirección de prueba48
                updated_datetime: '2025-12-05T18:54:43+00:00'
                evaluations_avg: -1
                reiterations_count: 0
                complaints_count: 0
                jurisdiction_id: es.madrid
                status_node_type: initial_node
                typology:
                  id: 69332a3a31a53edef30755b1
                  color: '#337ab7'
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png
                  name: avisos
                  visible_name: Avisos
                accepted: false
                comments_count: 0
                complaining: false
                current_node_estimated_final_datetime: '2025-12-05T19:54:19+00:00'
                current_node_estimated_start_datetime: '2025-12-05T18:54:19+00:00'
                description: 0 - 0 - Madrid - Limpieza y Residuos
                estimated_final_datetime: '2025-12-05T19:54:19+00:00'
                estimated_start_datetime: '2025-12-05T18:54:19+00:00'
                evaluation: 0
                following: false
                address_string: Dirección de prueba48
                lat: 40.371
                long: -3.643
                priority:
                  icon: >-
                    https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab796235896.png
                public: true
                seen: false
                service_request_id: MAD1001
                status_node:
                  name: nuevo
                  color: '#7da038'
                  typology_node_id: 69332a3a31a53edef30755b2
                  visible_name: Nuevo
                  id: 69332a4331a53edef30755e1
                  manual_actions:
                    - assign
                    - reassign
                    - auto_assign
                    - comment
                    - change_status
                    - mark_as_duplicated
                    - reiterate
                    - complaint
                    - generate_work_order
                    - edit
                    - pause_resume
                    - evaluate
                  medias_config:
                    arrival:
                      comment:
                        image: false
                      note_internal:
                        image: false
                    exit:
                      comment:
                        image: false
                      note_internal:
                        image: false
                  order: 1
                  planned: false
                  status_data_config:
                    answer: false
                    cancellation_reason: false
                  status_options_config: {}
                  worklog_configuration: {}
                supporting: false
                token: 69332a5b31a53edef30756f8
                user:
                  nickname: hely.suarez
                  id: 69332a3a31a53edef30755ab
                media_url: >-
                  https://mtc.vdeveloper.lan/uploads/local/open010/69332a5b1b13b565139824.jpg
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Complaint Request without service_request_id
                  value:
                    - code: 400
                      description: service_request_id was not provided
                example-1:
                  summary: Complaint Request with existent complaint
                  value:
                    - code: 400
                      description: Already complainted request
  /request/detail/{jurisdiction_id}/{service_request_id}:
    get:
      tags:
        - Request
      summary: Get Request Detail
      operationId: getRequestDetail
      description: >-
        ## Descripción\n\nObtiene los detalles completos de una solicitud
        específica por jurisdicción y service_request_id. Este endpoint permite
        consultar información completa de una solicitud utilizando su
        identificador Open010.\n\n## Request Params\n\n| Campo | Descripción
        |\n|-------|-------------|\n| `{jurisdiction_id}` | (string) [required].
        ID de la jurisdicción en formato Open010 (ej: es.madrid) |\n|
        `{service_request_id}` | (string) [required]. ID de la solicitud en
        formato Open010 (ej: REQ-2024-001) |\n\n**Nota**: El endpoint retorna un
        objeto Request con serialization groups `['view',
        'statusAssignment010']`.
      parameters:
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          description: Identificador del cliente. Requerido.
          example: '{{clientId}}'
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID de la jurisdicción en formato Open010
          example: es.madrid
        - name: service_request_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID de la solicitud en formato Open010
          example: REQ-2024-001
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                service_request_id: REQ-2024-001
                status: submitted
                service_code: LIMPIEZA
                service_name: Limpieza de vía pública
                description: Basura acumulada en la acera
                address: Calle Mayor 1, Madrid
                lat: 40.4168
                long: -3.7038
                requested_datetime: '2024-01-15T10:30:00+01:00'
                updated_datetime: '2024-01-15T11:00:00+01:00'
                media_url: https://example.com/media/image.jpg
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 403
                  description: You can not get a private request anonymously
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Request was not found
  /requests/{jurisdiction_id}/{service_request_id}:
    get:
      tags:
        - Request
      summary: Get Request (Legacy)
      operationId: getRequestLegacy
      description: >-
        ## Descripción\n\nRuta alternativa (legacy) para obtener los detalles de
        una solicitud. Funciona de forma idéntica a `/request/detail/`.\n\n##
        Request Params\n\n| Campo | Descripción |\n|-------|-------------|\n|
        `{jurisdiction_id}` | (string) [required]. ID de la jurisdicción en
        formato Open010 (ej: es.madrid) |\n| `{service_request_id}` | (string)
        [required]. ID de la solicitud en formato Open010 (ej: REQ-2024-001)
        |\n\n**Nota**: Esta es una ruta legacy. Se recomienda usar
        `/request/detail/` para nuevas implementaciones.
      parameters:
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          description: Identificador del cliente. Requerido.
          example: '{{clientId}}'
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID de la jurisdicción en formato Open010
          example: es.madrid
        - name: service_request_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID de la solicitud en formato Open010
          example: REQ-2024-001
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                service_request_id: REQ-2024-001
                status: submitted
                service_code: LIMPIEZA
                service_name: Limpieza de vía pública
                description: Basura acumulada en la acera
                address: Calle Mayor 1, Madrid
                lat: 40.4168
                long: -3.7038
                requested_datetime: '2024-01-15T10:30:00+01:00'
                updated_datetime: '2024-01-15T11:00:00+01:00'
                media_url: https://example.com/media/image.jpg
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 403
                  description: You can not get a private request anonymously
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: Request was not found
  /requests_evaluations/{token}:
    get:
      tags:
        - Request > Request Evaluation
      summary: Get Request Evaluations
      operationId: getRequestEvaluations
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | ID de la request sobre la cual se desea
        consultar. |


        Este endpoint devuelve todas las **evaluaciones** asociadas a un
        _Request_ específico, identificado por su `token`, respetando los
        permisos de acceso del módulo de evaluaciones.
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - evaluation: 3
                  id: 6930a3be811b8ea85f061fc7
                  user:
                    nickname: user_16806e2ff266a479e61f
                    id: 672a1a9a12c5ab351b07c644
  /requests_evaluations:
    post:
      tags:
        - Request > Request Evaluation
      summary: Post Request Evaluations
      operationId: postRequestEvaluations
      description: >-
        **Body**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | evaluation | Int | \[required\] Valor de la evaluación asignada a la
        solicitud. |

        | token | String | \[required\] Token único que identifica la solicitud
        (request) a evaluar. |


        **Description**


        Este endpoint permite **registrar una evaluación sobre una solicitud
        existente**, asociándola al usuario autenticado que es autor de la
        solicitud, la evaluación se guarda siempre que la solicitud exista, sea
        evaluable, pertenezca al usuario y no haya sido evaluada previamente por
        él.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                token: '{{objectId}}'
                evaluation: 3
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                evaluation: '3'
                id: 694465cec869708db10c5cf3
                user:
                  hasPassword: true
                  nickname: user_ea05d696b1e00926d803
                  avatar: >-
                    https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/avatars/686dded53b0a9.jpg
                  channels:
                    - external: true
                      id: 673c50e7f9de27ecb80e5cc2
                      name: Test
                  id: 685efd3de403e56420059cb8
                  notification_channels:
                    - external: true
                      id: 673c50e7f9de27ecb80e5cc2
                      name: Test
                  last_geofences: []
                  jurisdiction_element_channels: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: token was not provided
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Post Request Evaluations Request Evaluated
                  value:
                    - code: 403
                      description: Request has already been evaluated
                example-1:
                  summary: Post Request Evaluations Not Provided
                  value:
                    - code: 403
                      description: Request has already been evaluated
  /request/{token}/files:
    get:
      tags:
        - Request > Request File
      summary: Get Request Files
      operationId: getRequestFiles
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | ID de la request sobre la cual se desea
        consultar los archivos asociados. (Ej. 690368126e14fe090900d728) |


        Este endpoint permite obtener una lista ordenada de los archivos
        asociados a una solicitud específica, identificada por el
        `request_token`. Antes de acceder a los archivos, el sistema verifica si
        el usuario tiene los permisos adecuados para visualizar dicha
        información. Si el usuario cuenta con los permisos necesarios, se
        devuelve la lista completa de archivos relacionados con la petición,
        organizada de manera estructurada.
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                created_at: '2023-11-24T13:35:16+00:00'
                id: 6560a694fb3a56c096076992
                public: false
                type: '1'
                url: >-
                  https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf
                description: documento de prueba.pdf
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                message: REQUESTS_ACCESS_MODULE not active
    post:
      tags:
        - Request > Request File
      summary: Add Request File
      operationId: addRequestFile
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | Es el ID que se utiliza para identificar una
        solicitud específica en el sistema. |


        Este endpoint permite adjuntar uno o varios archivos a una solicitud
        específica. Por cada archivo proporciona una descripción, se usa el
        nombre original del archivo. Antes de guardar los archivos, el sistema
        verifica que sean de un tipo permitido para garantizar la seguridad.
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                files[0]:
                  type: string
                  description: Array. [optional].  Archivos adjuntos a la nota.
                  format: binary
                descriptions[0]:
                  type: string
                  description: >-
                    String. [optional] (CURSO Y MANUAL RGPD.pdf). Texto que
                    describe el archivo.
                  example: CURSO Y MANUAL RGPD.pdf
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                created_at: '2024-11-13T15:30:54+00:00'
                id: 6734c62ebe78a901cb04b655
                public: false
                type: '1'
                url: >-
                  https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf
                description: CURSO Y MANUAL RGPD.pdf
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: An error ocurred while uploading the files
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                description: File format not allowed
  /request/{token}/files/{file_id}/edit:
    patch:
      tags:
        - Request > Request File
      summary: Edit Request File
      operationId: editRequestFile
      description: "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| file_id | String | Es el ID del archivo que se desea eliminar. Se utiliza para localizar un archivo específico asociado a una solicitud en el sistema. |\n| public | Bool | \\[required\\]. Es el campo encargado de asignar como publico el archivo asociado a la request. |\n| request_id | String | Es el ID de Request que se utiliza para identificar una solicitud en el sistema. |\n\nEste endpoint permite a los usuarios modificar el estado de un archivo que ya está\_adjunto a una solicitud. El sistema primero verifica que tienes permiso, luego\_busca el archivo que quieres modificar, guarda las modificaciones. Si algo sale mal, el sistema lo\_hace saber con un mensaje de error."
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                public: true
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso request token.
        - name: file_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso file id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                created_at: '2024-11-13T16:00:22+00:00'
                id: 6734cd167933b741750f8794
                public: true
                type: '1'
                url: >-
                  https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf
                description: CURSO Y MANUAL RGPD.pdf
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: Error to edit RequestFile
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                description: File format not allowed
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                description: File not found
  /request/{token}/files/{file_id}:
    delete:
      tags:
        - Request > Request File
      summary: Delete Request File
      operationId: deleteRequestFile
      description: "| Campo | Tipo | Descripcion |\n| --- | --- | --- |\n| file_id | String | Es el ID del archivo que se desea eliminar. Se utiliza para localizar un archivo específico asociado a una solicitud en el sistema. |\n| request_id | String | Es el ID de Request que se utiliza para identificar una solicitud en el sistema. |\n\nEste\_endpoint permite eliminar un archivo que\_fue previamente adjuntado a una solicitud específica. Para poder realizar\_esta acción, el usuario debe tener los\_permisos necesarios para editar la solicitud. Si el archivo existe y se elimina correctamente, el sistema confirmará la eliminación. En caso de que el archivo no se\_encuentre o haya algún problema durante el proceso de\_eliminación, el sistema notificará el error correspondiente al\_usuario."
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso token.
        - name: file_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso file id.
      responses:
        '204':
          description: No Content
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: {}
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: File could not be deleted
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Delete Request File Not Found
                  value:
                    code: 404
                    description: File not found
                example-1:
                  summary: Delete Request File Media Not Found
                  value:
                    code: 404
                    description: File not found
  /request/{token}/reiterations:
    get:
      tags:
        - Request > Request Reiteration
      summary: Get Request Reiterations
      operationId: getRequestReiterations
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | ID de la request sobre la cual se desea
        consultar. |


        Este endpoint devuelve todas las **reiteraciones** asociadas a un
        _Request_ específico, identificado por su `token`, este endpoint permite
        consultar ese historial de reiteraciones para mostrar seguimiento,
        actividad o evolución del aviso.
      security:
        - bearerAuth: []
      parameters:
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso request token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - datetime: '2025-11-30T17:52:26+00:00'
                  id: 692c845a9d906168ea03cd4b
                  source:
                    alias: Workapp (Android)
                    id: 5850de88e22c6d9f51b17718
  /request/{token}/reiteration:
    post:
      tags:
        - Request > Request Reiteration
      summary: Request Reiteration
      operationId: requestReiteration
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | description | string | [optional]  <br>Descripción o comentario
        adicional para la reiteración. |

        | email_notification | boolean | [optional]  <br>Indica si el usuario
        desea recibir notificaciones por email. |

        | follow_request | boolean | [optional]  <br>Indica si el usuario desea
        seguir el aviso. |

        | push_notification | boolean | [optional]  <br>Indica si el usuario
        desea recibir notificaciones push. |

        | sms_notification | boolean | [optional]  <br>Indica si el usuario
        desea recibir notificaciones por SMS. |

        | source | string | [optional]  <br>ID de la fuente desde donde se
        realiza la reiteración. |


        Este endpoint permite al usuario realizar una reiteración de un ticket
        existente, facilitando la actualización o seguimiento de la solicitud
        sin generar duplicados en el sistema. La reiteración asegura que los
        informes relacionados con el mismo problema se gestionen de manera
        eficiente y sin redundancias.


        | Campo | **Tipo** | **Descripción** |

        | --- | --- | --- |

        | description | String | \[required\] Mensaje descriptivo sobre el
        aviso. |

        | email_notification | Bool | \[required\] Indica si se enviará una
        notificación por correo electrónico. |

        | follow_request | Bool | \[required\] Indica si se debe realizar una
        solicitud de seguimiento. |

        | push_notification | Bool | \[required\] Indica si se enviará una
        notificación push al usuario. |

        | sms_notification | Bool | \[required\] Indica si se enviará una
        notificación por SMS. |

        | source | String | \[required\] Identificador de la fuente (dispositivo
        de origen) que apoya el aviso. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                description: Muy buen aviso
                email_notification: 'true'
                follow_request: 'true'
                push_notification: 'true'
                sms_notification: 'true'
                source: '{{objectId}}'
      security:
        - bearerAuth: []
      parameters:
        - name: User-Agent
          in: header
          schema:
            type: string
          example: >-
            Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101
            Firefox/136.0
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: Accept-Language
          in: header
          schema:
            type: string
          example: es
        - name: Accept-Encoding
          in: header
          schema:
            type: string
          example: gzip, deflate, br, zstd
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
        - name: X-Client-Id
          in: header
          schema:
            type: string
          example: '{{clientId}}'
        - name: Authorization
          in: header
          schema:
            type: string
          example: >-
            Bearer
            Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA
        - name: Origin
          in: header
          schema:
            type: string
          example: '{{mapaUrl}}'
        - name: Connection
          in: header
          schema:
            type: string
          example: keep-alive
        - name: Referer
          in: header
          schema:
            type: string
          example: '{{mapaUrl}}/'
        - name: Sec-Fetch-Dest
          in: header
          schema:
            type: string
          example: empty
        - name: Sec-Fetch-Mode
          in: header
          schema:
            type: string
          example: cors
        - name: Sec-Fetch-Site
          in: header
          schema:
            type: string
          example: same-site
        - name: Priority
          in: header
          schema:
            type: string
          example: u=0
        - name: TE
          in: header
          schema:
            type: string
          example: trailers
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso request id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                datetime: '2025-03-13T21:55:25+00:00'
                description: Muy buen aviso
                email: witijah950@erapk.com
                first_name: Pepito
                follow_request: 'true'
                id: 67d3544d4e10cee6cc011a3f
                last_name: Perez
                phone: '5551234'
                request:
                  following_count: 1
                  reiterations_count: 1
                  complaints_count: 0
                  token: 675854bccb214872520b3bfc
                source:
                  alias: Canal Web
                  id: 5850de88e22c6d9f51b17722
                user:
                  id: 67d2f56f887735a7be00f7bb
                  nickname: witijah950
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: |
                  ERROR: Este formulario no debería contener campos adicionales.
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                description: REQUESTS_ACCESS_MODULE not active
  /requests_comments/{token}:
    get:
      tags:
        - RequestComment > Comment
      summary: Requests Comments
      operationId: requestsComments
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | request_token | String | ID de la request sobre la cual se desea
        consultar. |


        Este endpoint devuelve todos los comentarios asociados a un _Request_
        específico, identificado por su `token`, permite obtener el historial
        completo de comentarios registrados en el aviso, respetando las reglas
        de acceso por jurisdicción y permisos del módulo de solicitudes.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Es el identificador de la jurisdicción que
            permitira filtrar las categorias por área geográfica.
          example: '{{jurisdiction_id}}'
        - name: token
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso token.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - created_datetime: '2025-12-02T15:01:56+00:00'
                  comment_code: 692eff645f8583139f0a1ea1
                  description: >-
                    ¡Hola Michael Santiago!  


                    El Ayuntamiento de Alcobendas ya ha recibido tu nuevo aviso
                    referente a Cableado aéreo de alumbrado público. Puedes
                    identificarlo como ALC54673 .


                    **Te iremos informando de todos los avances que vayamos
                    realizando con respecto al mismo.** Recuerda que puedes
                    darle seguimiento en tiempo real a través de la app móvil.  


                    _Gracias por mejorar Alcobendas_  


                    ¡Qué tengas un buen día!
                  medias_urls: []
  /search_engine/config:
    get:
      tags:
        - SearchEngine > SearchEngine
      summary: Config
      operationId: config
      description: >-
        Este endpoint devuelve la configuración dinámica del motor de búsqueda
        para el usuario autenticado, sirve para construir la interfaz del
        buscador: filtros, tipos disponibles, jurisdicciones permitidas,
        preferencias, etc.
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                available_types:
                  - backofficeUser
                  - release
                  - request
                  - service
                  - user
                  - predeterminedResponse
  /search_engine/search:
    get:
      tags:
        - SearchEngine > SearchEngine
      summary: Search
      operationId: search
      description: >-
        Este endpoint ejecuta una búsqueda general en el sistema, permite buscar
        _requests_, _services_ y _predetermined responses_ filtrando por texto,
        jurisdicciones, tipologías, paginación y si se desea limitar los
        resultados al usuario autenticado.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdictionIds[]
          in: query
          schema:
            type: string
          description: >-
            Array. [optional]. Permite realizar la búsqueda de avisos utilizando
            el jurisdiction_id de mongo de una o varias jurisdicciones
            asociadas. En caso de enviar múltiples jurisdicciones, estas deben
            ser separadas por comas.
          example: '{{jurisdiction_id}}'
        - name: limit
          in: query
          schema:
            type: string
          description: Integer. [optional]. Resultados por página.
          example: '{{limit}}'
        - name: own
          in: query
          schema:
            type: boolean
          description: Boolean. [optional]. Si va en true, filtra por usuario autenticado.
          example: 'false'
        - name: page
          in: query
          schema:
            type: string
          description: Integer. [optional]. Página.
          example: '{{page}}'
        - name: q
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Parámetro de búsqueda opcional utilizado para
            filtrar las rutas de POIs por una palabra clave o frase.
          example: '{{searchQuery}}'
        - name: types[]
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Especifica el tipo de configuracion
            personalizada de la consulta.
          example: request,service
        - name: typologyIds[]
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Permite realizar búsquedas de avisos a partir de
            la tipologia a la que pertenezcan.
          example: '{{typologyIds}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                services:
                  - service_id: 67157a0fedc96f822e06ce0d
                    description: Prueba
                    jurisdiction:
                      id: 561e04ed6aa918910c8b4592
                      name: Alcobendas
                      icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                    service_icon: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/67157ae8b5622248310935.png
                    service_name: Categoría A2
                    typology:
                      id: 67157912d6fb285be7042e43
                      visible_name: Tipología de pruebas
                requests:
                  - description: PRUEBA PAQUI
                    service:
                      service_id: 56fbc8296aa918ee008b4567
                      description: >-
                        Esta categoría es solamente para hacer encargos del
                        Departamento de Vías Públicas
                      jurisdiction:
                        id: 561e04ed6aa918910c8b4592
                        name: Alcobendas
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                      service_icon: >-
                        https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/5db2be2787fe3.png
                      service_name: Encargos a Seromal del Dpto. de Vías Públicas
                      typology:
                        id: 5850dca2e22c6d9f51b00c0f
                        visible_name: Aviso
                        icon: >-
                          https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png
                    service_request_id: ALC1510
                    token: 57d8f44c6aa918861b8b4c44
                users:
                  - full_name: 'pruebatestloginradmas '
                    avatar: >-
                      https://lh3.googleusercontent.com/a/ACg8ocL1pSnwuE-30ycqboOla78olRl3nZJ2GThgmNRoVkZZjZtR3w=s96-c?sz=600
                    email: pruebatestloginradmas@gmail.com
                    first_name: pruebatestloginradmas
                    id: 6745ed9ffaf87f5227001f83
                    last_name: ''
                    username: user_381cc6dedb41c804bdf1
                predeterminedResponses:
                  - enquiry:
                      company:
                        name: ALC_UPruebas01
                    id: 66e60e7103db7073be0996e9
                    body: Prueba qA 01
                    title: Prueba de respuesta predefinida
                backofficeUsers:
                  - id: 66f31aab3c74bf2587090267
                    full_name: Pruebas Permisos
                    first_name: Pruebas
                    last_name: Permisos
                    avatar: >-
                      https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png
                releases:
                  - company:
                      avatar_url: >-
                        https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/company/68639e2b6a1c88.56054492.png
                      name: ALC_ADDA_OPS
                    description: Prueba de comunicación
                    id: 692ca2d59d25f20f8602793f
                    name: Comunicado de prueba III
  /login/{jurisdiction_id}:
    post:
      tags:
        - Security > Security
      summary: Login Through External
      operationId: loginThroughExternal
      description: >-
        Este endpoint permite a un User realizar el ingreso a la plataforma bajo
        tres parámetros principales (client_id, username y password) como en el
        acceso común con la diferencia que aquí es necesaria definir una
        jurisdicción que permita accesos externos. Así mismo, permite realizar
        el registro de un dispositivo móvil en caso de que el login se realice
        desde el mismo y/o de un usuario nuevo.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | client_id | string | [required]  <br>Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client. |

        | legal_terms_accepted | boolean | [required]  <br>Permite identificar
        si el User a registrar ha aceptado los términos y condiciones para el
        uso de la plataforma. |

        | password | string | [required]  <br>Se debe ingresar la contraseña
        concerniente al User deseado o en caso de registro, asignar una
        contraseña. |

        | register | boolean | [required]  <br>Permite identificar si el User
        está realizando login o un registro nuevo. |

        | username | string | [required]  <br>Permite ingresar el email del User
        que desea realizar un login a la plataforma. |

        | device | object | [optional]  <br>Permite realizar el registro de un
        dispositivo móvil junto con el registro de un nuevo User. Esto facilita
        vincular los dispositivos con el usuario lo que permitirá un criterio
        adicional de seguridad. |

        | facebook_token | string | [optional]  <br>Es una cadena larga
        alfanumérica generada por Facebook para autenticar a los usuarios en
        aplicaciones que utilizan su servicio de login. Es único para cada
        sesión y aplicación, y puede variar en longitud. |

        | first_name | string | [optional]  <br>En caso de registro de User
        permite especificar el nombre que tendrá el mismo. |

        | google_token | string | [optional]  <br>Es una cadena alfanumérica
        generada por Google para autenticar a los usuarios en aplicaciones o
        servicios que utilizan Google Sign-In. Único para cada sesión. |

        | jurisdiction_id | string | [optional]  <br>Permite especificar la
        jurisdicción a la que pertenecerá el User. |

        | last_name | string | [optional]  <br>En caso de registro de User
        permite especificar el apellido que tendrá el mismo. |

        | origin_device | string | [optional]  <br>Sirve para identificar el
        dispositivo desde el cual se está realizando la solicitud de
        autenticación. |

        | user_id | string | [optional]  <br>Permite ingresar el identificador
        del User para logins externos. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                client_id: '{{clientId}}'
                facebook_token: >-
                  EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA
                first_name: Pepito
                google_token: >-
                  ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW
                jurisdiction_id: '{{jurisdictionId}}'
                last_name: Perez
                legal_terms_accepted: true
                origin_device: '{{objectId}}'
                password: Radmas*2025
                register: true
                user_id: '{{userId}}'
                username: '{{testEmail}}'
      security:
        - noauthAuth: []
      parameters:
        - name: jurisdiction_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Through External Session
                  value:
                    access_token: >-
                      NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ
                    expires_in: 2592000
                    token_type: bearer
                    scope: null
                    refresh_token: >-
                      N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ
                example-1:
                  summary: Login Through External User Register
                  value:
                    access_token: >-
                      MzZlZWU2ZDU0MjJkZDIzYTA3YjBhMTA4OTM4MzQ2ZDVkMTExMDJjOTA2ODNmMDljODBmZGQ0NGQ0OGNmNzM2Mg
                    expires_in: 2592000
                    token_type: bearer
                    scope: null
                    refresh_token: >-
                      MmUwYjBiZTk2NGExZDllNTkzY2RlNTMwNzg1OTZjMzY1ODA2MDI3MjM2MmM2MDE5YjU2NTk3NDBiZTAxOGY2ZA
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: Username or password are invalid
        '429':
          description: Too Many Requests
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 429
                description: error.login.blocked
  /login:
    post:
      tags:
        - Security > Security
      summary: Login
      operationId: login
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | device | Object | \[optional\]. Permite realizar login a un User
        mediante un dispositivo móvil |

        | facebook_token | String | \[optional\]. Es una cadena larga
        alfanumérica generada por Facebook para autenticar a los usuarios en
        aplicaciones que utilizan su servicio de login. Es único para cada
        sesión y aplicación, y puede variar en longitud. |

        | first_name | String | \[optional\]. En caso de registro de User
        permite especificar el nombre que tendrá el mismo |

        | google_token | String | \[optional\]. Es una cadena alfanumérica
        generada por Google para autenticar a los usuarios en aplicaciones o
        servicios que utilizan Google Sign-In. Unico para cada sesión |

        | jurisdiction_id | String | \[optional\]. Permite especificar la
        jurisdicción a la que pertenecerá el User |

        | last_name | String | \[optional\]. En caso de registro de User permite
        especificar el apellido que tendrá el mismo |

        | legal_terms_accepted | Boolean | \[required\]. Permite identificar si
        el User a registrar a aceptados los términos y condiciones para el uso
        de la plataforma |

        | origin_device | String | \[optional\]. Sirve para identificar el
        dispositivo desde el cual se está realizando la solicitud de
        autenticación |

        | password | String | \[required\]. Se debe ingresar la contraseña
        concerniente al User deseado o en caso de registro, asignar una
        contraseña |

        | register | Boolean | \[required\]. Permite identificar si el User está
        realizando login o un registro nuevo |

        | user_id | String | \[optional\]. Permite ingresar el identificador del
        User para logins externos |

        | username | String | \[required\]. Permite ingresar el email del User
        que desea realizar un login a la plataforma |


        Este endpoint permite a un User realizar el ingreso a la plataforma bajo
        tres parámetros principales (client_id, username y password) . Así
        mismo, permite realizar el registro de un usuario nuevo añadiendo unos
        campos básicos (first_name, last_name, username, password, etc) y un
        dispositivo que se vinculará al usuario.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                client_id: '{{clientId}}'
                facebook_token: >-
                  EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA
                google_token: >-
                  ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW
                jurisdiction_id: '{{jurisdictionId}}'
                legal_terms_accepted: true
                origin_device: '{{objectId}}'
                password: Radmas*2025
                register: true
                user_id: '{{userId}}'
                username: '{{testEmail}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login OK
                  value:
                    access_token: >-
                      NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ
                    expires_in: 2592000
                    token_type: bearer
                    scope: null
                    refresh_token: >-
                      N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ
                example-1:
                  summary: Login User Register
                  value:
                    access_token: >-
                      NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ
                    expires_in: 2592000
                    token_type: bearer
                    scope: null
                    refresh_token: >-
                      N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Register without LegalTerms accepted
                  value:
                    code: 400
                    description: >
                      ERROR: Este formulario no debería contener campos
                      adicionales.

                      username:
                          ERROR: Este valor no es una dirección de email válida.
                example-1:
                  summary: Login Bad Request
                  value:
                    code: 400
                    description: Username or password are invalid
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error: Two factor authentication disabled
        '429':
          description: Too Many Requests
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 429
                description: error.login.blocked
  /login_process:
    post:
      tags:
        - Security > Security
      summary: Login Process
      operationId: loginProcess
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | device | Object | \[optional\]. Permite realizar login a un User
        mediante un dispositivo móvil |

        | facebook_token | String | \[optional\]. Es una cadena larga
        alfanumérica generada por Facebook para autenticar a los usuarios en
        aplicaciones que utilizan su servicio de login. Es único para cada
        sesión y aplicación, y puede variar en longitud. |

        | first_name | String | \[optional\]. En caso de registro de User
        permite especificar el nombre que tendrá el mismo |

        | google_token | String | \[optional\]. Es una cadena alfanumérica
        generada por Google para autenticar a los usuarios en aplicaciones o
        servicios que utilizan Google Sign-In. Unico para cada sesión |

        | jurisdiction_id | String | \[optional\]. Permite especificar la
        jurisdicción a la que pertenecerá el User |

        | last_name | String | \[optional\]. En caso de registro de User permite
        especificar el apellido que tendrá el mismo |

        | legal_terms_accepted | Boolean | \[required\]. Permite identificar si
        el User a registrar a aceptados los términos y condiciones para el uso
        de la plataforma |

        | origin_device | String | \[optional\]. Sirve para identificar el
        dispositivo desde el cual se está realizando la solicitud de
        autenticación |

        | password | String | \[required\]. Se debe ingresar la contraseña
        concerniente al User deseado o en caso de registro, asignar una
        contraseña |

        | register | Boolean | \[required\]. Permite identificar si el User está
        realizando login o un registro nuevo |

        | user_id | String | \[optional\]. Permite ingresar el identificador del
        User para logins externos |

        | username | String | \[required\]. Permite ingresar el email del User
        que desea realizar un login a la plataforma |


        Este endpoint permite realizar el ingreso a la plataforma bajo tres
        parámetros principales (client_id, username y password), así mismo,
        permite realizar el registro de un usuario nuevo añadiendo unos campos
        básicos (first_name, last_name, username, password, etc) y un
        dispositivo que se vinculará al usuario.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                client_id: '{{clientId}}'
                facebook_token: >-
                  EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA
                google_token: >-
                  ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW
                jurisdiction_id: '{{jurisdictionId}}'
                legal_terms_accepted: true
                origin_device: '{{objectId}}'
                password: Radmas*2025
                register: true
                user_id: '{{userId}}'
                username: '{{testEmail}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Process OK
                  value:
                    access_token: >-
                      NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ
                    expires_in: 2592000
                    token_type: bearer
                    scope: null
                    refresh_token: >-
                      N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ
                example-1:
                  summary: Login Process User Register
                  value:
                    access_token: >-
                      NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ
                    expires_in: 2592000
                    token_type: bearer
                    scope: null
                    refresh_token: >-
                      N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Process Register without LegalTerms accepted
                  value:
                    code: 400
                    description: >
                      ERROR: Este formulario no debería contener campos
                      adicionales.

                      username:
                          ERROR: Este valor no es una dirección de email válida.
                example-1:
                  summary: Login Process Bad Request
                  value:
                    code: 400
                    description: Username or password are invalid
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error: Two factor authentication disabled
        '429':
          description: Too Many Requests
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 429
                description: error.login.blocked
  /security/2fa-confirmation:
    post:
      tags:
        - Security > Security
      summary: Two factor auth confirmation
      operationId: twoFactorAuthConfirmation
      description: >-
        Este endpoint permite acceder a la plataforma por medio del doble factor
        de autenticación. Para tener un ingreso exitoso es necesario que el
        usuario confirme el código de autenticación que llegará por el medio
        externo registrado.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los BackofficeUser son
        manager_client |

        | code | String | \[required\]. Número generado de manera aleatoria de
        longitud 4. Permite la comprobación junto con el hash de la fiabilidad
        del intento de login con doble factor. Este es recibido a través de
        correo electrónico |

        | hash | String | \[required\]. Código aleatorio de tipo md5 de una
        longitud de 32 caracteres que permite la verificación del intento de
        login con doble factor. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                code: '7333'
                client_id: '{{clientId}}'
                hash: '{{remember_me_hash}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  YTljZjkzZDU5ZjA2NmE3MjgxZWIwYzRlYzNiYTRhMjY3ODY1NmRjYmI0MmY3OTdhNjMzNjU2M2ZlN2Q0ODg1ZA
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  NmI0YzgwYjcwNzczMmNmNWFmODExMDg1MjI5ZjUyZjJjMjZhMGY5NDliZGY5YTcxOGI3ZmIxODE5ZDRkODUwNw
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Two factor auth confirmation invalid hash
                  value:
                    code: 401
                    message: Hash sent does not exists or has expired!
                example-1:
                  summary: Two factor auth confirmation invalid client id
                  value:
                    description: Client_id is invalid
                    error_code: 1058
                example-2:
                  summary: Two factor auth confirmation
                  value:
                    description: >-
                      Code sent does not match. You ran out of retries. You must
                      restart the whole login process
                    error_code: 1200
        '409':
          description: Conflict
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                description: Code sent does not match. Recheck your email
                error_code: 1201
  /logout:
    post:
      tags:
        - Security > Security
      summary: Logout
      operationId: logout
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | Int | \[required\]. Permite identificar la validez de la
        solicitud controlando que el dispositivo que cierra sesión se encuentre
        dentro de los autorizados |

        | device_id | String | \[optional\]. Permite identificar los inicios de
        sesión que posee el dispositivo en diferentes navegadores. Además,
        permite vincular el dispositivo con un User. |


        Este endpoint permite al usuario loggeado salir de la aplicación de
        manera segura. Una vez realizado el llamado de este endpoint, el usuario
        tendrá que loggearse nuevamente si desea acceder a la plataforma.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                app_key: 2
                device_id: '{{objectId}}'
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 200
                description: successfully logged out
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: logout failed
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: No API token provided
  /login_google:
    post:
      tags:
        - Security > Security
      summary: Login Google
      operationId: loginGoogle
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | Int | \[optional\]. Permite identificar la validez de la
        solicitud controlando que el dispositivo que cierra sesión se encuentre
        dentro de los autorizados |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | google_token | String | \[required\]. Es una cadena alfanumérica
        generada por Google para autenticar a los usuarios en aplicaciones o
        servicios que utilizan Google Sign-In. Unico para cada sesión |

        | jurisdiction_id | String | \[optional\]. Permite especificar la
        jurisdicción a la que pertenecerá el User |

        | remote_access_token | String | \[optional\]. Token que se enviará a
        Google para validarlo (mismo valor de google_token). |

        | user_id | String | \[optional\]. Permite ingresar el identificador del
        User para logins externos |


        Este endpoint permite realizar el acceso a la plataforma a través de una
        cuenta de Google previamente registrada en dicha plataforma.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                app_key: 2
                client_id: '{{clientId}}'
                google_token: >-
                  eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ
                jurisdiction_id: '{{jurisdictionId}}'
                remote_access_token: >-
                  eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ
                user_id: '{{userId}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: |
                  remote_access_token:
                      ERROR: remote access token was not provided
  /login_google_process:
    post:
      tags:
        - Security > Security
      summary: Login Google Process
      operationId: loginGoogleProcess
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | Int | \[optional\]. Permite identificar la validez de la
        solicitud controlando que el dispositivo que cierra sesión se encuentre
        dentro de los autorizados |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | google_token | String | \[required\]. Es una cadena alfanumérica
        generada por Google para autenticar a los usuarios en aplicaciones o
        servicios que utilizan Google Sign-In. Unico para cada sesión |

        | jurisdiction_id | String | \[optional\]. Permite especificar la
        jurisdicción a la que pertenecerá el User |

        | remote_access_token | String | \[optional\]. Token que se enviará a
        Google para validarlo (mismo valor de google_token). |

        | user_id | String | \[optional\]. Permite ingresar el identificador del
        User para logins externos |


        Este endpoint permite **iniciar sesión usando Google OAuth**, procesando
        el `id_token` enviado por el cliente.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                app_key: 2
                client_id: '{{clientId}}'
                google_token: >-
                  eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ
                jurisdiction_id: '{{jurisdictionId}}'
                remote_access_token: >-
                  eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ
                user_id: '{{userId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: |
                  remote_access_token:
                      ERROR: remote access token was not provided
  /login_apple:
    post:
      tags:
        - Security > Security
      summary: Login Apple
      operationId: loginApple
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | avatar | String | \[optional\]. Tiene la función de almacenar o
        mostrar la imagen de perfil del usuario que proviene del proveedor
        externo de autenticación |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | origin_device | String | \[optional\]. Sirve para identificar el
        dispositivo desde el cual se está realizando la solicitud de
        autenticación |

        | remote_access_token | String | \[required\]. Es emitido por Apple
        cuando un usuario inicia sesión en una aplicación que utiliza "Sign in
        with Apple". Estos tokens son utilizados para autenticar al usuario y
        validar su sesión |

        | username | String | \[optional\]. Permite ingresar el username o email
        del User que desea realizar un login a la plataforma |


        Este endpoint permite realizar el acceso a la plataforma a través de una
        cuenta de Apple previamente registrada en dicha plataforma.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                avatar: http://moock_images.com/123456.jpg
                client_id: '{{clientId}}'
                origin_device: '{{objectId}}'
                remote_access_token: '{{apple_identity_token}}'
                username: '{{testEmail}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Apple Bad Request
                  value:
                    code: 400
                    description: |
                      remote_access_token:
                          ERROR: remote access token was not provided
                example-1:
                  summary: Login Apple Not Logged
                  value:
                    code: 400
                    description: not logged
  /login_facebook:
    post:
      tags:
        - Security > Security
      summary: Login Facebook
      operationId: loginFacebook
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | String | \[optional\]. Permite identificar la validez de la
        solicitud controlando que el dispositivo que cierra sesión se encuentre
        dentro de los autorizados |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | jurisdiction_id | String | \[optional\]. Permite especificar la
        jurisdicción a la que pertenecerá el User |

        | remote_access_token | String | \[required\]. Es una cadena larga
        alfanumérica generada por Facebook para autenticar a los usuarios en
        aplicaciones que utilizan su servicio de login. Es único para cada
        sesión y aplicación, y puede variar en longitud. |

        | user_id | String | \[optional\]. Permite ingresar el identificador del
        User para logins externos |


        Este endpoint permite realizar el acceso a la plataforma a través de una
        cuenta de Facebook previamente registrada en dicha plataforma.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                app_key: 2
                client_id: '{{clientId}}'
                jurisdiction_id: '{{jurisdictionId}}'
                remote_access_token: >-
                  EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA
                user_id: '{{userId}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Facebook Bad Request
                  value:
                    code: 400
                    description: facebook does not provide email
                example-1:
                  summary: Login Facebook Request Error
                  value:
                    code: 400
                    description: Request error
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                description: facebook credentials not provided
  /login-jwt:
    post:
      tags:
        - Security > Security
      summary: Login JWT
      operationId: loginJwt
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | token | String | \[required\]. Al iniciar sesión, el servidor genera
        un token que incluye la información del usuario y lo envía al cliente.
        El cliente almacena este token y lo envía con cada solicitud subsecuente
        para acceder a recursos protegidos |


        Este endpoint permite realizar un login o registro de un nuevo usuario a
        partir de un bot autorizado para tal fin. Los datos del usuario son
        encriptados mediante un hash JWT.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                client_id: '{{clientId}}'
                token: '{{jwt_token}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login JWT Client Id null
                  value:
                    code: 400
                    description: client_id required
                example-1:
                  summary: Login JWT Token null
                  value:
                    code: 400
                    description: Request error
  /reset_password:
    post:
      tags:
        - Security > Security
      summary: Reset Password
      operationId: resetPassword
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | String | \[optional\]. Permite identificar la validez de la
        solicitud controlando que el dispositivo que cierra sesión se encuentre
        dentro de los autorizados |

        | jurisdiction_id | String | \[optional\]. Permite especificar la
        jurisdicción a la que pertenecerá el User |

        | username | String | \[required\]. Permite ingresar el username o email
        del User que desea realizar un login a la plataforma |


        Este endpoint permite al usuario restaurar la contraseña de su cuenta.
        El proceso requiere el username registrado de la cuenta y si el valor es
        válido llegará un correo de recuperación a la cuenta respectiva si
        existe un correo registrado.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                app_key: '{{jurisdictionId}}'
                jurisdiction_id: '{{jurisdictionId}}'
                username: '{{testEmail}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 200
                description: E-mail sent to user
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: |
                  ERROR: This form should not contain extra fields.
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                description: User mock@correo.com was not found
        '422':
          description: Unprocessable Content
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 422
                description: >-
                  Cant send an email to User mock_user since he/she has no
                  email!
  /recover_password:
    post:
      tags:
        - Security > Security
      summary: Recover Password
      operationId: recoverPassword
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | String | \[optional\]. Permite identificar la validez de la
        solicitud controlando que el dispositivo que cierra sesión se encuentre
        dentro de los autorizados |

        | jurisdiction_id | String | \[optional\]. Permite especificar la
        jurisdicción a la que pertenecerá el User |

        | username | String | \[required\]. Permite ingresar el username o email
        del User que desea realizar un login a la plataforma |


        Este endpoint permite **iniciar el proceso de recuperación de
        contraseña** de un usuario, recibe el ID del usuario y, opcionalmente,
        el `app_key` y `jurisdiction_id`.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                app_key: '{{jurisdictionId}}'
                jurisdiction_id: '{{jurisdictionId}}'
                username: '{{testEmail}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 200
                description: E-mail sent to user
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: >
                    ERROR: Este formulario no debería contener campos
                    adicionales.
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Recover Password user not found
                  value:
                    - code: 404
                      description: User mock@correo.com was not found
                example-1:
                  summary: Recover Password email not send
                  value:
                    - code: 404
                      description: User mock_user was not found
  /accept_terms:
    post:
      tags:
        - Security > Security
      summary: LegalTerms
      operationId: legalTerms
      description: >-
        Este endpoint permite realizar el registro de la aceptación de términos
        legales de un User previamente registrado. La aceptación de estos
        términos permitirá al usuario hacer uso de la plataforma. En caso
        negativo, no se permitirá el uso de la misma.
      requestBody:
        content: {}
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                description: Legal Terms Accepted
                code: 200
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: There was an error accepting the legal terms
  /generate-biotoken:
    post:
      tags:
        - Security > Security
      summary: Generate Biotoken
      operationId: generateBiotoken
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | device_id | String | \[required\]. Valor del identificador del
        dispositivo vinculado a un User |


        Este endpoint permite generar un biotoken a partir de los accesos
        mediante dispositivos móviles, el mismo se genera basado en datos
        biométricos autorizados por el usuario.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                device_id: '{{device_id}}'
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                biotoken: >-
                  a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada
                greeting: 'Pepito '
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: Request error
  /login-biotoken:
    post:
      tags:
        - Security > Security
      summary: Login Biotoken
      operationId: loginBiotoken
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | biotoken | String | \[required\]. Token de autenticación o
        identificación que está relacionado con datos biométricos, como huellas
        dactilares, reconocimiento facial, reconocimiento de voz, o cualquier
        otra forma de identificación basada en características físicas o de
        comportamiento única |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | device_id | String | \[required\]. Valor del identificador del
        dispositivo vinculado a un User |


        Este endpoint permite realizar un acceso o login a la aplicación
        mediante datos biométricos autorizados por el usuario. Lo anterior
        quiere decir que debe existir un dispositivo vinculado al usuario y que
        permita realizar la toma de datos biométricos.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                biotoken: '{{biotoken}}'
                client_id: '{{clientId}}'
                device_id: '{{device_id}}'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                oauth:
                  access_token: >-
                    MjE4M2I5YTdiNzhhZmU0ZjZmNDY1MGYxNWNkZTIzNGYzNjM3YzYzMjhmMGFkMGFkMzI2Y2NiNTA1NTAzMjdhMA
                  expires_in: 2592000
                  token_type: bearer
                  scope: null
                  refresh_token: >-
                    OGFmYTExM2JhMTM3YTBiNjBiNTAwYjQzMDEzOWU3ZjY0M2RmN2NkOGFkMzY0N2NiYjdmZjk2Yjk4Y2Y0Mzg3Mw
                bioauth:
                  biotoken: >-
                    ffb3cfef97dfdb38f7aa0ad09f1f0c35da50c1bfd90a444a2f80b5853d8e612cc8f8ab2a2b88bf4ce95cb71ffd26d80c070b81cb501a9c70e05effff82e3d790
                  greeting: 'Pepito '
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Biotoken Bad Request
                  value:
                    code: 400
                    description: ''
                example-1:
                  summary: Login Biotoken Invalid DeviceID
                  value:
                    code: 400
                    description: ''
  /login-anonymous:
    post:
      tags:
        - Security > Security
      summary: Login Anonymous
      operationId: loginAnonymous
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | device_id | String | \[required\]. Valor del identificador del
        dispositivo vinculado a un User |


        Permite a un usuario realizar una autenticación anonimizada si la misma
        es permitida. Así mismo permite realizar la autenticación si el usuario
        no se encuentra registrado, generando el nuevo registro que poseerá como
        username el device id del dispositivo donde realiza el login.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                client_id: '{{clientId}}'
                device_id: '{{device_id}}1'
      security:
        - noauthAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  OGNlOWIyMzI5OWNmMzlmMzA2YjVkODgxNzdjNGIyNWIzN2FiNDYwMjVhYjgxZDBlMmI2NWNmYzYwOWE2MTQ3OQ
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  MjcxMzdlOWJhZDBhZjQwODY1YTE3MGE5NTU4OGVmODE2M2I5ZGUzOWY0MDk3MGRlMzA5ZWY2ZWIyMzdhYTMxNg
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: |
                  ERROR: Este formulario no debería contener campos adicionales.
  /login-open-id:
    post:
      tags:
        - Security > Security
      summary: Login Open ID Action
      operationId: loginOpenIdAction
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | client_id | String | \[required\]. Se debe ingresar el valor
        estipulado por el tipo de cliente. En este caso los User son
        open010_client |

        | clientKey | string | [optional]  <br>Clave del cliente para
        autenticación. |

        | clientKey | string | [optional]  <br>Clave del cliente para
        autenticación. |

        | code | String | \[required\]. String aleatorio y criptográficamente
        seguro que se genera en la aplicación cliente antes de iniciar el
        proceso de autorización |

        | code_verifier | String | \[required\]. Código de autorización que se
        devuelve a la aplicación cliente por el servidor de autorización después
        de que el usuario ha iniciado sesión y ha autorizado el acceso |

        | redirect_uri | String | \[required\]. URL a la que la aplicación
        redirige al usuario para que inicie sesión y otorgue permisos. Esta URL
        pertenece al proveedor de identidad (IDP) que está manejando la
        autenticación |


        Este endpoint permite una autenticación federada. Esto significa que
        permite a los usuarios autenticarse en múltiples sitios web usando una
        única cuenta de un proveedor de autenticación confiable (Ej: Google,
        Microsoft, etc).
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                client_id: '{{clientId}}'
                code: CODE_RECEIVED&
                code_verifier: CODE_VERIFIER
                redirect_uri: >-
                  https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token
                clientKey: sedfwe
      security:
        - noauthAuth: []
      parameters:
        - name: client_key
          in: query
          schema:
            type: string
          required: true
          description: String.. Clave del cliente para autenticación OAuth.
          example: mockid
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Login Open ID Action Bad Request
                  value:
                    code: 400
                    description: "AADB2C90090: The provided JWE is not a valid 5 segment token.\r\nCorrelation ID: 4b6ec555-1bb3-4c00-ab76-9a7c5c7fb691\r\nTimestamp: 2024-10-03 14:01:35Z\r\n"
                example-1:
                  summary: Login Open ID Action Invalid Form
                  value:
                    code: 400
                    description: >
                      ERROR: Este formulario no debería contener campos
                      adicionales.
  /oauth/v2/token:
    post:
      tags:
        - Security > Security
      summary: OAuth2 Refresh Token
      operationId: oAuth2RefreshToken
      description: >-
        ## Descripción

         Este endpoint permite renovar tokens de acceso OAuth2 utilizando un refresh_token válido. Es utilizado por las aplicaciones cliente de la Public API para obtener nuevos tokens de acceso sin requerir que el usuario vuelva a autenticarse. Adicionalmente, si el usuario inició sesión mediante un proveedor OpenID Connect externo, este endpoint también renueva el token externo y lo incluye en la respuesta.

        ## Body Params


        | Campo | Tipo | Descripción |

        |-------|------|-------------|

        | client_id | String | [required]. ID del cliente Open010. Debe ser
        válido y de tipo API_PUBLIC_OPEN010 |

        | grant_type | String | [required]. Debe ser exactamente `refresh_token`
        |

        | refresh_token | String | [required]. Token de refresco obtenido en
        login previo. No debe estar expirado |
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
                - client_id
                - grant_type
                - client_id
                - refresh_token
              properties:
                client_id:
                  type: string
                  description: >-
                    (string). Identificador del cliente Open010. Debe ser válido
                    y de tipo API_PUBLIC_OPEN010
                  example: '{{clientId}}'
                grant_type:
                  type: string
                  description: (string). Tipo de grant OAuth2. Debe ser 'refresh_token'
                  example: refresh_token
                refresh_token:
                  type: string
                  description: >-
                    (string). Token de refresco válido y no expirado obtenido en
                    login previo
                  example: '{{refreshToken}}'
      security:
        - noauthAuth: []
      parameters:
        - name: Content-Type
          in: header
          schema:
            type: string
          description: Formato requerido para OAuth2 token endpoint
          example: application/x-www-form-urlencoded
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                access_token: >-
                  NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ
                expires_in: 2592000
                token_type: bearer
                scope: null
                refresh_token: >-
                  N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: 400 Bad Request - invalid_grant (token expirado)
                  value:
                    error: invalid_grant
                    error_description: The refresh token is invalid.
                example-1:
                  summary: 400 Bad Request - invalid_client
                  value:
                    error: invalid_client
                    error_description: The client credentials are invalid.
                example-2:
                  summary: 400 Bad Request - invalid_request (falta parámetro)
                  value:
                    error: invalid_request
                    error_description: The request is missing a required parameter.
  /services:
    get:
      tags:
        - Service > Service
      summary: List Service
      operationId: listService
      description: >-
        Este Endpoint permite obtener una lista de servicios según ciertos
        parámetros de consulta, como jurisdiction_ids (para filtrar por
        jurisdicciones específicas con validación personalizada), lng y lat
        (para definir coordenadas geográficas), y typology_ids (para filtrar por
        tipologías con validación específica).
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. (org.alcobendas). Son los identificadores de la
            jurisdicción que permitiran filtrar las categorias por área
            geográfica.
          example: '{{jurisdiction_id}}'
        - name: lat
          in: query
          schema:
            type: string
          description: >-
            Float. [optional] (40.5334137). Permite estableces coordenadas
            geográficas (latitud) para un filtrado más exacto de los resultados
            (formato decimal).
          example: '{{latitude}}'
        - name: lng
          in: query
          schema:
            type: string
          description: >-
            Float. [optional] (-3.6480234). Permite estableces coordenadas
            geográficas (longitud) para un filtrado más exacto de los resultados
            (formato decimal).
          example: '{{longitude}}'
        - name: typology_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. (5850dca2e22c6d9f51b00c0f). Son los
            identificadores de tipología que permiten filtrar las categorías
            según su tipo.
          example: '{{typology_ids}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                parent_service_name: ''
                group: ''
                jurisdiction_id: es.madrid
                visible_name: Alumbrado público (Aviso)
                id: 5620e9176aa91815008b4567
                social: true
                evaluation: true
                color: '#FBC02D'
                description: ''
                keywords: ''
                mandatory_description: true
                mandatory_files: false
                mandatory_medias: false
                max_upload_files: 5
                max_upload_medias: 5
                public: true
                public_requests: false
                service_icon: >-
                  https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/66b265542dadc277946226.png
                service_name: Alumbrado público
                typology:
                  id: 5850dca2e22c6d9f51b00c0f
                  color: '#ebc113'
                  description_legend: 'Ej: farola fundida'
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png
                  location_type: geolocation
                  order: 1
                  public: true
                  typology_description: Tengo un problema con un elemento en la calle
                  visible_name: Aviso
                  with_authorized_users: true
                  with_description: true
                  with_files: true
                  with_geolocation_data: false
                  with_medias: true
                  with_temporality_data: false
                with_informant: false
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Error Jurisdiction Not Valid Lists Services
                  value:
                    code: 400
                    description: >-
                      Parameter "jurisdiction_ids" of value "es.madri" violated
                      a constraint "Jurisdiction ids not valid"
                example-1:
                  summary: Error Typology Not Valid Lists Services
                  value:
                    code: 400
                    description: >-
                      Parameter "typology_ids" of value "5850dca2e22c" violated
                      a constraint "Ids are not valid"
  /services/{service_id}:
    get:
      tags:
        - Service > Service
      summary: Service Detail
      operationId: serviceDetail
      description: >-
        **Request param**


        | **Campo** | Tipo | **Descripción** |

        | --- | --- | --- |

        | service_id | String | \[required\](5620e9176aa91815008b4567). ID de
        mongo del que se quiere obtener el detalle. |


        Este endpoint permite obtener los detalles de un servicio específico
        utilizando su `service_id` (identificador Mongo) y la jurisdicción
        asociada. Proporciona información completa sobre el servicio,
        verificando su configuración y cargando los datos relacionados con su
        tipología y flujo de trabajo.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Son los identificadores de la jurisdicción que permitiran
            filtrar las categorias por área geográfica
          example: '{{jurisdiction_id}}'
        - name: service_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso service id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                deleted: false
                parent_service_name: Animales y plagas
                group: 59bfbe07566d72ab018b458d
                jurisdiction_id: es.madrid
                visible_name: Categoría QA (Aviso)
                id: 64fa7c4cf978d8061c03e151
                additionalData:
                  requiredVariables: []
                  configurable_questions:
                    - editable: true
                      hidden_in_detail: false
                      hidden_in_form: false
                      hidden_in_open010_detail: false
                      hidden_in_open010_form: false
                      question:
                        type: datetime
                        active: true
                        code: QA_f
                        help_text: Texto de ayuda pregunta tipo fecha
                        help_text_translations:
                          es: Texto de ayuda pregunta tipo fecha
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        id: 64f7e45bfe43122312033d52
                        question: Pregunta tipo fecha
                        question_translations:
                          es: Pregunta tipo fecha
                          en: ''
                          ca: ''
                          eu: ''
                          fr: ''
                          es_MX: ''
                          en_AU: ''
                        tags:
                          - name: QA Manual Testing
                            color: '#000000'
                            id: QA Manual Testing
                      required: false
                      default_value: ''
                  id: 64f7e6575c89c81f1a04b223
                  name: QA_Preguntas
                  use_cases: []
                social: false
                evaluation: false
                color: '#000000'
                description: Categoría de prueba para QA
                hideEstimatedDate: false
                keywords: ''
                mandatory_description: false
                mandatory_files: false
                mandatory_informant_config:
                  - field: first_name
                    message: ''
                    required: false
                mandatory_medias: false
                max_upload_files: 5
                max_upload_medias: 5
                public: true
                public_requests: true
                service_code: '250'
                service_icon: >-
                  https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/64fa7ca10dd0b818754593.png
                service_name: Categoría QA
                sponsoring_info:
                  display: false
                status_node:
                  - status_node_type: initial_node
                    name: Nuevo
                    color: '#f1c40f'
                    typology_node_id: 59bfaf21d2bf39b8018b457d
                    visible_name: Nuevo
                    id: 64fa7c4cf978d8061c03e142
                    order: 0
                    planned: false
                typology:
                  hasLocation: true
                  id: 59bfadfe566d72b8018b45c6
                  color: '#ebc113'
                  description_legend: 'Ej: farola fundida'
                  icon: >-
                    https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png
                  location_type: geolocation
                  name: Aviso
                  order: 1
                  public: true
                  typology_description: Tengo un problema con un elemento en la calle
                  visible_name: Aviso
                  with_authorized_users: false
                  with_description: true
                  with_files: true
                  with_geolocation_data: true
                  with_medias: true
                  with_temporality_data: true
                with_informant: true
                with_internal_informant: true
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 404
                description: 'service_id was not found '
  /twitter-timeline/{account}:
    get:
      tags:
        - SocialMedia > SocialMedia
      summary: Get Twitter Timeline
      operationId: getTwitterTimeline
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | account | String | \[required\] nombre de la cuenta a solicitar |


        Este endpoint permite obtener lel timeline de una cuenta concreta de
        twitter
      parameters:
        - name: account
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso acount.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - created_at: '2025-12-17T07:40:53+00:00'
                  id_str: '2001195884697043340'
                  screen_name: ComunidadMadrid
                  text: >-
                    RT @Madridonasangre: 👉 Maratón de donación en el Hospital
                    de Getafe.


                    ⏰ 8.30h a 21.00h


                    ❤ Al #donarsangre se extraen 450 ml de sangre que s…
                - created_at: '2025-12-17T07:40:27+00:00'
                  id_str: '2001195774550396941'
                  screen_name: ComunidadMadrid
                  text: >-
                    RT @012CMadrid: 🚍 El Servicio de Oficinas Móviles de
                    Atención al Ciudadano de la Comunidad de Madrid llega a
                    todos los municipios de menos…
                - created_at: '2025-12-17T06:13:08+00:00'
                  id_str: '2001173800394662193'
                  screen_name: ComunidadMadrid
                  text: >-
                    📆 Agenda del Gobierno de la Comunidad de Madrid para este
                    17 de diciembre. #FelizMiércoles 


                    📲 https://t.co/7BnQY3O16a https://t.co/afaXgJYpoC
                - created_at: '2025-12-16T20:29:37+00:00'
                  id_str: '2001026951817887795'
                  screen_name: ComunidadMadrid
                  text: >-
                    RT @112cmadrid: 🐾 #BomberosCM han rescatado esta tarde a un
                    perro teckel, de nombre Brownie, que se había quedado
                    atrapado en un desagüe a…
                - created_at: '2025-12-16T19:43:07+00:00'
                  id_str: '2001015250108473496'
                  media_url: https://pbs.twimg.com/media/G8UIrxjW4AUi1hj.jpg
                  screen_name: ComunidadMadrid
                  text: >-
                    🎶 La Comunidad de Madrid celebra la Navidad con el
                    concierto de coros escolares en la Catedral de Santa María
                    la Real de la Almudena.


                    🎄 Un total de 200 voces han interpretado un variado
                    repertorio de villancicos navideños.


                    #NavidadEnMadrid


                    +Info: https://t.co/Frr8XM2wvs https://t.co/K0aLHQHpkV
                - created_at: '2025-12-16T19:42:22+00:00'
                  id_str: '2001015062996422947'
                  screen_name: ComunidadMadrid
                  text: >-
                    RT @AdoptaCMadrid: 🐶 Goofy no lleva mucho en el centro pero
                    es bastante cariñoso y en cuanto nos ve nos pide unos
                    cuantos mimos.


                    😢 Nos gus…
                - created_at: '2025-12-16T19:42:19+00:00'
                  id_str: '2001015050799370245'
                  screen_name: ComunidadMadrid
                  text: >-
                    RT @metro_madrid: 👏 ¡Un día menos para la reapertura de L6!


                    🚇 Así hemos reforzado los andenes para las futuras puertas
                    de andén. 


                    🔊 RECUE…
                - created_at: '2025-12-16T19:01:11+00:00'
                  id_str: '2001004697675870234'
                  media_url: https://pbs.twimg.com/media/G8T_F5fWkAAQJhP.jpg
                  screen_name: ComunidadMadrid
                  text: >-
                    🏡 La Comunidad de Madrid participa en la entrega de 39
                    viviendas asequibles promovidas por el Ayuntamiento de
                    #Alcobendas.


                    👉 El consejero @MA_GarciaMartin ha visitado junto a los
                    nuevos inquilinos esta promoción, ubicada en la calle
                    Velarde.


                    +Info: https://t.co/Ob6etgyL3o https://t.co/X0O0CewMd2
                - created_at: '2025-12-16T19:00:14+00:00'
                  id_str: '2001004457077977393'
                  screen_name: ComunidadMadrid
                  text: >-
                    RT @Transportes_CM: 🚇 La tuneladora Mayrit ha llegado desde
                    Alemania a la @ComunidadMadrid para unirse a los trabajos de
                    ampliación de la L…
                - created_at: '2025-12-16T19:00:10+00:00'
                  id_str: '2001004442678915413'
                  screen_name: ComunidadMadrid
                  text: >-
                    RT @VisitMadrid_es: ✨ Disfruta de la #NavidadenSol con el
                    Bosque de los Deseos y una experiencia dedicada al agua.


                    📆 Hasta el 6 de enero,…
  /twitter-users/{accounts}:
    get:
      tags:
        - SocialMedia > SocialMedia
      summary: Get Twitter Users
      operationId: getTwitterUsers
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | account | String | \[required\] nombre de la cuenta a solicitar |


        Este endpoint permite obtener la información de una cuenta concreta de
        twitter
      parameters:
        - name: accounts
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso acount.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - name: Comunidad de Madrid
                  profile_banner_url: >-
                    https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs.jpg
                  profile_image_url: >-
                    https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs_normal.jpg
                  screen_name: ComunidadMadrid
  /youtube/videos/{account}:
    get:
      tags:
        - SocialMedia > SocialMedia
      summary: Get Youtube Videos
      operationId: getYoutubeVideos
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | account | String | \[required\] nombre de la cuenta a solicitar |


        Este endpoint permite obtener los videos disponibles de una cuenta
        concreta de youtube
      parameters:
        - name: account
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso acount.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - account_name: el7desol
                  channel: UCTS_hF6ho1Vsjz7266Qik2w
                  date: '2025-12-16T07:24:12Z'
                  duration: '1:20:16'
                  id: y30M5f4Pyio
                  likesCount: 0
                  previewImage: https://i.ytimg.com/vi/y30M5f4Pyio/mqdefault.jpg
                  title: >-
                    Díaz Ayuso: Madrid es una región en la que cada persona
                    cuenta y defendemos su desarrollo
                  videoUrl: https://www.youtube.com/watch?v=y30M5f4Pyio
                  viewsCount: 502
                - account_name: el7desol
                  channel: UCTS_hF6ho1Vsjz7266Qik2w
                  date: '2025-12-12T22:04:51Z'
                  duration: '21:47'
                  id: 6gjlgBHigZ4
                  likesCount: 0
                  previewImage: https://i.ytimg.com/vi/6gjlgBHigZ4/mqdefault.jpg
                  title: >-
                    Díaz Ayuso: La Comunidad de Madrid es el lugar perfecto para
                    invertir en rodajes
                  videoUrl: https://www.youtube.com/watch?v=6gjlgBHigZ4
                  viewsCount: 408
                - account_name: el7desol
                  channel: UCTS_hF6ho1Vsjz7266Qik2w
                  date: '2025-12-12T00:46:38Z'
                  duration: '13:42'
                  id: bjeOmhGt7B4
                  likesCount: 0
                  previewImage: https://i.ytimg.com/vi/bjeOmhGt7B4/mqdefault.jpg
                  title: >-
                    Díaz Ayuso: Celebramos 10 años de éxitos y de un modelo de
                    convivencia basado en la libertad
                  videoUrl: https://www.youtube.com/watch?v=bjeOmhGt7B4
                  viewsCount: 610
                - account_name: el7desol
                  channel: UCTS_hF6ho1Vsjz7266Qik2w
                  date: '2025-12-11T00:37:49Z'
                  duration: '41:02'
                  id: rp-sOnKQ4_Y
                  likesCount: 0
                  previewImage: https://i.ytimg.com/vi/rp-sOnKQ4_Y/mqdefault.jpg
                  title: Consejo de Gobierno. Miércoles 10 de diciembre
                  videoUrl: https://www.youtube.com/watch?v=rp-sOnKQ4_Y
                  viewsCount: 452
                - account_name: el7desol
                  channel: UCTS_hF6ho1Vsjz7266Qik2w
                  date: '2025-12-10T06:50:45Z'
                  duration: '45:24'
                  id: RZd3SNwlKUY
                  likesCount: 0
                  previewImage: https://i.ytimg.com/vi/RZd3SNwlKUY/mqdefault.jpg
                  title: Inauguración del Centro de Educación Superior Alma Mater
                  videoUrl: https://www.youtube.com/watch?v=RZd3SNwlKUY
                  viewsCount: 840
  /youtube/channels/{accounts}:
    get:
      tags:
        - SocialMedia > SocialMedia
      summary: Get Youtube Channels
      operationId: getYoutubeChannels
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | account | String | \[required\] nombre de la cuenta a solicitar |


        Este endpoint permite obtener la información de una cuenta concreta de
        youtube
      parameters:
        - name: accounts
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso acount.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - account_name: el7desol
                  icon: >-
                    https://yt3.ggpht.com/ytc/AIdro_mQseSgBEjDjDFM2yNpaw51hr1G-VboXzEkbesKdcoc-cA=s88-c-k-c0x00ffffff-no-rj
                  id: UCTS_hF6ho1Vsjz7266Qik2w
                  title: Comunidad de Madrid
  /translate:
    get:
      tags:
        - Translations > Translate
      summary: Translate
      operationId: translate
      description: |-
        Traduce una frase al idioma del usuario autenticado.

        ## Query Params

        | Key | Value (ejemplo) | Description |
        | --- | --- | --- |
        | sentence | Hola mundo | (string) [required]. Texto a traducir. |
      security:
        - bearerAuth: []
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          required: true
          description: (string). Identificador del cliente.
          example: '{{clientId}}'
        - name: sentence
          in: query
          schema:
            type: string
          required: true
          description: String.. Texto a traducir.
          example: Hola mundo
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                translation: Hola mundo
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: 'Translation error: ...'
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: No API token provided
  /typologies:
    get:
      tags:
        - Typology > Typology
      summary: Typologies
      operationId: typologies
      description: >-
        Este endpoint permite obtener las tipologías asociadas a categorías
        públicas, filtradas según los criterios definidos en los parámetros de
        la petición. Las tipologías se obtienen a partir de los servicios
        vinculados a las categorías correspondientes y se devuelven en un
        formato paginado.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_element_id
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. permite obtener los servicios vinculados a ese
            elemento, y en consecuencia las tipologías asociadas a esos
            servicios
          example: '{{jurisdiction_element_id}}'
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. permite devolver las tipologías asociadas a
            servicios que pertenezcan a alguna de las jurisdicciones indicadas.
            lista separada por comas
          example: '{{jurisdiction_id}}'
        - name: lat
          in: query
          schema:
            type: string
          description: Float. [optional]. Coordenada de latitud geográfica.
          example: '{{latitude}}'
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir el limite de cada página de
            resultados. Por defecto es 90
          example: '{{limit}}'
        - name: lng
          in: query
          schema:
            type: string
          description: Float. [optional]. Coordenada de longitud geográfica.
          example: '{{longitude}}'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados. Por
            defecto el valor es 1
          example: '{{page}}'
        - name: typology_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. permite devolver las tipologías asociadas a
            servicios cuya tipología coincida con alguno de los IDs indicados.
          example: '{{typologyId}}, {{typologyId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                related_typologies:
                  - id: 5a8e9d664e4ea8bf018b4567
                    visible_name: Aviso
                  - id: 66ee2414967b5ac8010cfaa3
                    visible_name: Infraestructuras
                recategorizable_typologies:
                  - id: 66ee2414967b5ac8010cfaa3
                    visible_name: Infraestructuras
                  - id: 5a8e9d664e4ea8bf018b4567
                    visible_name: Aviso
                id: 5a8e9d664e4ea8bf018b4567
                color: '#ecb113'
                description_legend: >-
                  Por ejemplo: una farola fundida, un bache en la acera, una
                  rama caída…
                icon: >-
                  https://core-pgics.sevilla.org/uploads/sevilla_pro/typology_icons/5b30a87b38e70.png
                location_type: geolocation
                name: aviso
                order: 1
                public: true
                typology_description: Tengo un problema con un elemento de la ciudad
                visible_name: Aviso
                with_authorized_users: false
                with_description: true
                with_files: true
                with_geolocation_data: true
                with_medias: true
                with_temporality_data: true
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Typologies Invalid Form
                  value:
                    code: 400
                    message: Invalid form
                example-1:
                  summary: Typologies Zones Not Fount
                  value:
                    - code: 400
                      description: No zones found for provided coordinates
  /me/typologies:
    get:
      tags:
        - Typology > Typology
      summary: Me Typologies
      operationId: meTypologies
      description: >-
        Permite obtener las tipologías que pertenecen a categorías públicas,
        siempre que esas categorías estén asociadas a grupos filtrados según los
        criterios definidos en los parámetros de la petición.


        Es un alias de**:** [GET
        /typologies](#tag/Typology-greater-Typology/operation/getTypologies)  

        Ambos endpoints comparten la misma lógica interna y comportamiento, por
        lo que pueden usarse de forma intercambiable.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_element_id
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. permite obtener los servicios vinculados a ese
            elemento, y en consecuencia las tipologías asociadas a esos
            servicios
          example: '{{jurisdiction_element_id}}'
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. permite devolver las tipologías asociadas a
            servicios que pertenezcan a alguna de las jurisdicciones indicadas.
            lista separada por comas
          example: '{{jurisdiction_id}}'
        - name: lat
          in: query
          schema:
            type: string
          description: Float. [optional]. Coordenada de latitud geográfica.
          example: '{{latitude}}'
        - name: limit
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir el limite de cada página de
            resultados. Por defecto es 90
          example: '{{limit}}'
        - name: lng
          in: query
          schema:
            type: string
          description: Float. [optional]. Coordenada de longitud geográfica.
          example: '{{longitude}}'
        - name: page
          in: query
          schema:
            type: string
          description: >-
            Integer. [optional]. Permite definir la página de los resultados
            encontrados según la cantidad de los resultados encontrados. Por
            defecto el valor es 1
          example: '{{page}}'
        - name: typology_ids
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. permite devolver las tipologías asociadas a
            servicios cuya tipología coincida con alguno de los IDs indicados.
          example: '{{typologyId}}, {{typologyId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                related_typologies:
                  - id: 5a8e9d664e4ea8bf018b4567
                    visible_name: Aviso
                  - id: 66ee2414967b5ac8010cfaa3
                    visible_name: Infraestructuras
                recategorizable_typologies:
                  - id: 66ee2414967b5ac8010cfaa3
                    visible_name: Infraestructuras
                  - id: 5a8e9d664e4ea8bf018b4567
                    visible_name: Aviso
                id: 5a8e9d664e4ea8bf018b4567
                color: '#ecb113'
                description_legend: >-
                  Por ejemplo: una farola fundida, un bache en la acera, una
                  rama caída…
                icon: >-
                  https://core-pgics.sevilla.org/uploads/sevilla_pro/typology_icons/5b30a87b38e70.png
                location_type: geolocation
                name: aviso
                order: 1
                public: true
                typology_description: Tengo un problema con un elemento de la ciudad
                visible_name: Aviso
                with_authorized_users: false
                with_description: true
                with_files: true
                with_geolocation_data: true
                with_medias: true
                with_temporality_data: true
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                message: Invalid form
  /me:
    get:
      tags:
        - User > User
      summary: Get Profile Me
      operationId: getProfileMe
      description: >-
        Este endpoint permite **obtener el perfil del usuario autenticado**. Es
        un alias de `/profile` y retorna la misma información del usuario
        actual.


        **Autenticación requerida:** Bearer token (ROLE_USER)
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 507f1f77bcf86cd799439011
                username: john.doe
                nickname: john.doe
                email: john.doe@example.com
                first_name: John
                last_name: Doe
                gender: male
                birthday: '1990-05-15T00:00:00+00:00'
                phone: '+34612345678'
                locale: es
                avatar: https://example.com/avatars/user123.jpg
                idDocument: 12345678A
                idDocuments:
                  - type: NIF
                    number: 12345678A
                main_address:
                  street: Calle Mayor
                  number: '10'
                  city: Madrid
                  postal_code: '28001'
                  country: ES
                address: Calle Mayor 10, Madrid 28001
                addresses: []
                registeredAddress: null
                channels: []
                notificationChannels: []
                devices: []
                appEvaluations: []
                configuration:
                  notifications_enabled: true
                twitter_nickname: null
                telegram_id: null
                anonymous: false
                stronglyIdentified: false
                hasPassword: true
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 401
                message: Access Denied
  /me/topics:
    get:
      tags:
        - User > User
      summary: listMySubscribedTopics
      operationId: listMySubscribedTopics
      description: >-
        Este endpoint permite **listar los topics suscritos** del usuario
        autenticado.


        Ruta: `GET /public-api/me/topics`.


        Autenticación requerida: `Authorization: Bearer {{token_public}}` y
        `X-CLIENT-ID: {{clientId}}`.


        No requiere parámetros de path, query ni body.
      security:
        - bearerAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          required: true
          description: >-
            . String -  Se debe ingresar el valor estipulado por el tipo de
            cliente. En este caso los User son open010_client
          example: '{{clientId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - topic_global
                - topic_jurisdiction_123
                - topic_channel_456
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 401
                message: Access Denied
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                message: Access Denied
  /profile:
    get:
      tags:
        - User > User
      summary: Get Profile
      operationId: getProfile
      description: >-
        Este endpoint permite obtener el perfil completo del usuario
        autenticado. Devuelve toda la información del usuario incluyendo datos
        personales, direcciones, dispositivos registrados, canales de
        notificación y jurisdicciones asociadas. GET /me - Ruta alternativa con
        la misma funcionalidad
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 507f1f77bcf86cd799439011
                username: usuario_ejemplo
                email: usuario@ejemplo.com
                first_name: Juan
                last_name: Pérez
                nickname: Juan P.
                phone: '+34612345678'
                avatar: https://s3.amazonaws.com/avatars/user123.jpg
                locale: es
                gender: male
                birthday: '1990-01-15'
                main_address:
                  street: Calle Principal 123
                  city: Madrid
                  postal_code: '28001'
                  country: España
                addresses:
                  - street: Calle Principal 123
                    city: Madrid
                    postal_code: '28001'
                channels: []
                notification_channels: []
                devices: []
                app_evaluations: []
                id_documents: []
                hasPassword: true
                gdpr_consent: true
                security_configuration: null
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Access Denied
    put:
      tags:
        - User > User
      summary: Update Profile
      operationId: updateProfile
      description: >-
        **Descripción**\n\nEndpoint para actualizar el perfil del usuario
        autenticado. Permite modificar información personal, credenciales y
        configuración del usuario.\n\n**Request Body
        (x-www-form-urlencoded)**\n\n| Campo | Tipo | Descripción |\n| --- | ---
        | --- |\n| first_name | String | \[optional\] Nombre del usuario. No
        editable si el usuario está fuertemente identificado. |\n| last_name |
        String | \[optional\] Apellido del usuario. No editable si el usuario
        está fuertemente identificado. |\n| email | String | \[optional\] Correo
        electrónico. |\n| username | String | \[optional\] Nombre de usuario.
        |\n| phone | String | \[optional\] Teléfono principal. |\n|
        secondary_phone | String | \[optional\] Teléfono secundario. |\n|
        birthday | String | \[optional\] Fecha de nacimiento en formato ISO
        (YYYY-MM-DD). |\n| gender | String | \[optional\] Género: male, female,
        other. |\n| locale | String | \[optional\] Idioma preferido (es, en, ca,
        eu, gl). |\n| old_password | String | \[conditional\] Contraseña actual.
        Requerido para cambiar contraseña. |\n| new_password | String |
        \[conditional\] Nueva contraseña. Mínimo 8 caracteres. Requerido junto
        con old_password. |\n| avatar | String | \[optional\] URL de la imagen
        de avatar. |\n| twitterNickname | String | \[optional\] Nombre de
        usuario en Twitter/X. |\n\n**Notas sobre cambio de contraseña:**\n-
        Ambos campos `old_password` y `new_password` son requeridos para cambiar
        la contraseña.\n- La nueva contraseña debe ser diferente de la
        anterior.\n- La contraseña actual debe ser válida.\n\n**Notas sobre
        usuarios fuertemente identificados:**\n- Los campos `first_name`,
        `last_name` e `id_document` no son editables si el usuario está
        fuertemente identificado (verificado por autoridad externa).
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                first_name:
                  type: string
                  description: String. [optional]. Nombre del usuario.
                  example: Juan
                last_name:
                  type: string
                  description: String. [optional]. Apellido del usuario.
                  example: Pérez García
                email:
                  type: string
                  description: String. [optional]. Correo electrónico.
                  example: usuario@ejemplo.com
                username:
                  type: string
                  description: String. [optional]. Nombre de usuario.
                  example: usuario_ejemplo
                phone:
                  type: number
                  description: String. [optional]. Teléfono principal.
                  example: '+34612345678'
                secondary_phone:
                  type: number
                  description: String. [optional]. Teléfono secundario.
                  example: '+34698765432'
                birthday:
                  type: string
                  description: >-
                    String. [optional]. Fecha de nacimiento en formato ISO
                    (YYYY-MM-DD).
                  example: '1990-01-15'
                gender:
                  type: string
                  description: >-
                    String. [optional]. Género del usuario. Valores: male,
                    female, other.
                  example: male
                locale:
                  type: string
                  description: String. [optional]. Idioma preferido (es, en, ca, eu, gl).
                  example: es
                old_password:
                  type: string
                  description: >-
                    String. [conditional]. Contraseña actual. Requerido para
                    cambiar contraseña.
                  example: CurrentPassword123
                new_password:
                  type: string
                  description: >-
                    String. [conditional]. Nueva contraseña. Requerido junto con
                    old_password.
                  example: NewPassword456
                avatar:
                  type: string
                  description: String. [optional]. URL de la imagen de avatar.
                  example: https://example.com/avatar.jpg
                twitterNickname:
                  type: string
                  description: String. [optional]. Nombre de usuario en Twitter/X.
                  example: '@usuario_ejemplo'
      security:
        - bearerAuth: []
      parameters:
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/x-www-form-urlencoded
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 507f1f77bcf86cd799439011
                username: usuario_ejemplo
                email: usuario@ejemplo.com
                first_name: Juan
                last_name: Pérez García
                phone: '+34612345678'
                locale: es
                gender: male
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Update Profile Bad Request - Invalid Data
                  value:
                    code: 400
                    message: Missing parameters
                    errors:
                      children:
                        email:
                          errors:
                            - This value is not a valid email address.
                example-1:
                  summary: Update Profile Bad Request - Invalid Password
                  value:
                    code: 400
                    message: Missing parameters
                    errors:
                      - Old password is invalid
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error: access_denied
                error_description: OAuth2 authentication required
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                message: Access Denied
  /me/favorite-poi:
    post:
      tags:
        - User > User
      summary: Add Favorite POI
      operationId: addFavoritePoi
      description: >-
        Añade un punto de interés (POI) a la lista de favoritos del usuario
        autenticado.


        # Query Params


        | Key | Value (ejemplo) | Description |

        | --- | --- | --- |

        | layerId | layer-123 | String. [required]. ID de la capa (MapLayer) de
        tipo POI. |

        | poiId | poi-456 | String. [required]. ID del POI dentro de la capa. |
      requestBody:
        content: {}
      security:
        - bearerAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          required: true
          description: String.. Client ID de tipo open010_client.
          example: '{{clientId}}'
        - name: layerId
          in: query
          schema:
            type: string
          required: true
          description: String.. ID de la capa (MapLayer) de tipo POI.
          example: layer-123
        - name: poiId
          in: query
          schema:
            type: string
          required: true
          description: String.. ID del POI dentro de la capa.
          example: poi-456
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: {}
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Authentication Required
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Add Favorite POI 404 MapLayer Not Found
                  value:
                    - code: 404
                      description: No POI MapLayer found
                example-1:
                  summary: Add Favorite POI 404 POI Not Found
                  value:
                    - code: 404
                      description: POI not found.
    delete:
      tags:
        - User > User
      summary: Delete Favorite POI
      operationId: deleteFavoritePoi
      description: >-
        Elimina un punto de interés (POI) de la lista de favoritos del usuario
        autenticado.


        # Query Params


        | Key | Value (ejemplo) | Description |

        | --- | --- | --- |

        | layerId | layer-123 | String. [required]. ID de la capa (MapLayer). |

        | poiId | poi-456 | String. [required]. ID del POI. |
      security:
        - bearerAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          required: true
          description: String.. Client ID de tipo open010_client.
          example: '{{clientId}}'
        - name: layerId
          in: query
          schema:
            type: string
          required: true
          description: String.. ID de la capa (MapLayer).
          example: layer-123
        - name: poiId
          in: query
          schema:
            type: string
          required: true
          description: String.. ID del POI.
          example: poi-456
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: {}
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Authentication Required
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Not Found - No POI MapLayer found
                  value:
                    - code: 404
                      description: No POI MapLayer found
                example-1:
                  summary: Not Found - POI not found
                  value:
                    - code: 404
                      description: POI not found.
  /user/jurisdiction-element-channels/{jurisdiction_element_id}:
    get:
      tags:
        - User > User
      summary: Get Jurisdiction Element Channels User
      operationId: getJurisdictionElementChannelsUser
      description: >-
        **Request Params**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_element_id | String | \[required\] Este campo corresponde
        al ID de MongoDB del jurisdictionElement del cual se desean obtener los
        canales. |


        Este Endpoint devuelve el listado de canales asociados a un
        `jurisdictionElement` específico para el usuario autenticado. En cada
        canal se incluirá el campo `is_notification`, cuyo valor `true` indicará
        aquellos canales que el usuario tiene activos para recibir
        notificaciones.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_element_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction element id.
      responses:
        '200':
          description: OK
          headers:
            Server:
              schema:
                type: string
                example: nginx/1.16.1
            Content-Type:
              schema:
                type: string
                example: application/json
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Connection:
              schema:
                type: string
                example: keep-alive
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Date:
              schema:
                type: string
                example: Tue, 01 Oct 2024 08:23:06 GMT
            X-Cache-Debug:
              schema:
                type: integer
                example: '1'
            Access-Control-Expose-Headers:
              schema:
                type: string
                example: Link, X-Last-Page, X-Total-Items, X-Count
            Link:
              schema:
                type: string
                example: ''
            X-Last-Page:
              schema:
                type: string
                example: ''
            X-Total-Items:
              schema:
                type: string
                example: ''
            Vary:
              schema:
                type: string
                example: Accept-Language
            X-Debug-Token:
              schema:
                type: string
                example: 8c3088
            X-Debug-Token-Link:
              schema:
                type: string
                example: http://mtc.vadiaz.lan/_profiler/8c3088
            X-Robots-Tag:
              schema:
                type: string
                example: noindex
          content:
            application/json:
              schema:
                type: object
              example:
                channel:
                  category: interest
                  external: true
                  id: 670cc9fbbdb73a4bfca75607
                  jurisdictions:
                    - {}
                  name: Canal1 Publico
                  order: 0
                  self_assignable: false
                  visible: false
                is_notification: true
        '404':
          description: OK
          headers:
            Server:
              schema:
                type: string
                example: nginx/1.16.1
            Content-Type:
              schema:
                type: string
                example: application/json
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Connection:
              schema:
                type: string
                example: keep-alive
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Date:
              schema:
                type: string
                example: Tue, 01 Oct 2024 08:23:06 GMT
            X-Cache-Debug:
              schema:
                type: integer
                example: '1'
            Access-Control-Expose-Headers:
              schema:
                type: string
                example: Link, X-Last-Page, X-Total-Items, X-Count
            Link:
              schema:
                type: string
                example: ''
            X-Last-Page:
              schema:
                type: string
                example: ''
            X-Total-Items:
              schema:
                type: string
                example: ''
            Vary:
              schema:
                type: string
                example: Accept-Language
            X-Debug-Token:
              schema:
                type: string
                example: 8c3088
            X-Debug-Token-Link:
              schema:
                type: string
                example: http://mtc.vadiaz.lan/_profiler/8c3088
            X-Robots-Tag:
              schema:
                type: string
                example: noindex
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 404
                error_msg: Object not found
  /me/jurisdiction-element-channels/{jurisdiction_element_id}:
    get:
      tags:
        - User > User
      summary: Get Jurisdiction Element Channels Me
      operationId: getJurisdictionElementChannelsMe
      description: >-
        **Request Params**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_element_id | String | \[required\] Este campo corresponde
        al ID de MongoDB del jurisdictionElement del cual se desean obtener los
        canales. |


        Este Endpoint devuelve el listado de canales asociados a un
        `jurisdictionElement` específico para el usuario autenticado. En cada
        canal se incluirá el campo `is_notification`, cuyo valor `true` indicará
        aquellos canales que el usuario tiene activos para recibir
        notificaciones.


        Es un alias de**:** [GET
        /user/jurisdiction-element-channels/{{jurisdiction_element_id}}](#tag/User-greater-User/operation/getUserJurisdictionElementChannels)  

        Ambos endpoints comparten la misma lógica interna y comportamiento, por
        lo que pueden usarse de forma intercambiable. Este alias está pensado
        para facilitar las operaciones centradas en el propio usuario (`/me`).
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_element_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso jurisdiction element id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                channel:
                  category: interest
                  external: true
                  id: 670cc9fbbdb73a4bfca75607
                  jurisdictions:
                    - {}
                  name: Canal1 Publico
                  order: 0
                  self_assignable: false
                  visible: false
                is_notification: true
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 404
                error_msg: Object not found
  /user/channels:
    get:
      tags:
        - User > User
      summary: List User Channels
      operationId: listUserChannels
      description: >-
        Este endpoint retorna la lista de canales disponibles para el usuario
        autenticado con su estado de selección y notificación. Requiere
        autenticación mediante Bearer token.
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - channel:
                    id: 507f1f77bcf86cd799439011
                    name: Medio Ambiente
                    description: Canal de notificaciones ambientales
                    visible: true
                    self_assignable: true
                  is_notification: true
                  selected: true
                - channel:
                    id: 507f1f77bcf86cd799439012
                    name: Seguridad Ciudadana
                    description: Canal de alertas de seguridad
                    visible: true
                    self_assignable: true
                  is_notification: false
                  selected: true
                - channel:
                    id: 507f1f77bcf86cd799439013
                    name: Movilidad
                    description: Canal de tráfico y transporte
                    visible: true
                    self_assignable: true
                  is_notification: true
                  selected: false
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Authentication Required
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 403
                error_msg: Access Denied
    patch:
      tags:
        - User > User
      summary: Edit User Channels
      operationId: editUserChannels
      description: >-
        Permite a un usuario autenticado modificar sus canales de suscripción y
        canales de notificación.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | channelIds | array | [optional] Array de IDs de canales para suscribir
        al usuario. Si se omite, no se modifican los canales actuales. |

        | notification_channel_ids | array | [optional] Array de IDs de canales
        para recibir notificaciones. Si se omite, no se modifican los canales de
        notificación actuales. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                channelIds:
                  - '{{channelId1}}'
                  - '{{channelId2}}'
                notification_channel_ids:
                  - '{{channelId1}}'
      security:
        - bearerAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          required: true
          description: (string)Client identifier for API access
          example: '{{clientId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - channel:
                    id: 670cc9fbbdb73a4bfca75607
                    name: Canal Público 1
                    description: Descripción del canal
                  is_notification: true
                  selected: true
                - channel:
                    id: 670ccbc4bdb73a4bfca75608
                    name: Canal Público 2
                    description: Descripción del canal 2
                  is_notification: false
                  selected: true
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: Error save user
  /me/device/{device_id}/ping:
    get:
      tags:
        - User > User
      summary: Ping Device
      operationId: pingDevice
      description: >-
        **Request Params**


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | device_id | String | \[required\] ID del dispositivo a pingear. |


        Este endpoint permite **enviar un “ping” a un dispositivo asociado al
        usuario autenticado**, con el fin de verificar su disponibilidad o
        generar una notificación push, validando que el dispositivo exista,
        pertenezca al usuario y opcionalmente esté asociado a una aplicación
        específica.
      security:
        - bearerAuth: []
      parameters:
        - name: app_key
          in: query
          schema:
            type: integer
          description: Integer. [optional]. Clave de la aplicación asociada al dispositivo.
          example: '1001'
        - name: haste
          in: query
          schema:
            type: boolean
          description: >-
            Boolean. [optional]. Indica si el ping debe ejecutarse con
            prioridad/urgencia; se transforma desde string a boolean.
          example: 'true'
        - name: tz
          in: query
          schema:
            type: string
          description: >-
            String. [optional]. Zona horaria del dispositivo o del usuario desde
            donde se realiza el ping.
          example: America%2FBogota
        - name: device_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso device id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 68a75a9abf426bbabd0644af
                hasPassword: true
                username: d.solicitante.pgiba
                nickname: Solicitante de PGIBA
                user_companies:
                  - alias: Agrupación Base Aérea
                    id: 68893d192e776a8e96017542
                    name: PGIBA-BACV-ABA
                preferences:
                  map_layer_list:
                    - active: false
                      map_layer:
                        backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67069e56c7ae6500d401b6bf
                        is_default: false
                        color: '#000000'
                        display_properties: '%description%'
                        editable_data: false
                        editable_geometry: false
                        internal_name: buildings:bacsi_bacv_GU_B_geocode
                        internally_visible: true
                        name: Complejo y edificios
                        description: Complejo y edificios
                        path_updated: false
                        preset: false
                        public: false
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: WORK
                is_admin: false
                origin_create: []
                additional_data: []
                first_name: Solicitante
                last_name: Prueba PGIBA
                locale: es
                avatar: >-
                  https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68a748d869aaa892718960.png
                user_groups:
                  - jurisdiction_id: es.bacsi
                    alias: Solicitantes Mesa
                    group_type: applicant
                    id: 68a75208bf426bbabd06449b
                    name: Grp_PGIBA-BACV-ABA_solicitantes_mesa
                permissions:
                  es.bacsi:
                    - REQUESTS_COMMENTS_ACCESS_MODULE
                    - REQUESTS_COMMENTS_CREATE
                    - REQUESTS_COMMENTS_MEDIAS
                    - COMMENTS_FREE_TEXT
                    - USER_EVALUATION_ACCESS_MODULE
                    - USER_EVALUATION_CREATE
                    - NOTIFICATIONS_ACCESS_MODULE
                    - REQUESTS_ACCESS_MODULE
                    - REQUESTS_CREATE
                    - REQUESTS_GENERATE_TICKET
                    - REQUESTS_EMAIL_TICKET
                    - REQUESTS_ADD_INTERNAL_INFORMANT
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: >-
                    Error pinging a Device from user whatsapp:+573228958456.
                    Device with device_id: 7a437be70f854a7d does NOT exist
  /me/app_evaluation:
    post:
      tags:
        - User > User
      summary: Add App Evaluation
      operationId: addAppEvaluation
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | String | \[required\]. ID de la app que se quiere evaluar. |

        | comment | String | \[required\]. Comentario del usuario sobre la app.
        |

        | rating | Integer | \[required\]. Calificación de la app, suele estar
        en una escala. |


        Este endpoint permite enviar una evaluación de una aplicación, la
        evaluación incluye un puntaje, un comentario, y el id de la aplicación
        evaluada.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                rating: 4
                comment: La app funciona muy bien
                app_key: '14'
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                rating: 4
                comment: La app funciona muy bien
                app_key: '14'
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                message: User was not found
  /profile/avatar:
    post:
      tags:
        - User > User
      summary: Update Avatar
      operationId: updateAvatar
      description: >-
        Este endpoint permite a un usuario subir una imagen para establecer o
        actualizar su avatar, la imagen se valida y luego se sube.
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - avatar_file
              properties:
                avatar_file:
                  type: string
                  description: . Archivo de imagen para usar como avatar.
                  format: binary
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
              example: |-
                {
                    "hasPassword": false,
                    "main_address": {},
                    "addresses": [],
                    "app_evaluations": [],
                    "avatar": "https://s3.eu-west-1.amazonaws.com/static.lab.open010.org/avatars/68c09867d54ed.png",
                    "channels": [
                        {}
                    ],
                    "configuration": {
                        "app_notification": {
                            "alerts": true,
                            "comments": true,
                            "follows": true,
                            "requests": true
                        },
                        "email_notification": {
                            "alerts": true,
                            "comments": true,
                            "follows": true,
                            "requests": true
                        }
                    },
                    "devices": [],
                    "email": "daniel.sanchez@gopenux.com",
                    "first_name": "Daniel Felipe",
                    "id": "68af282bcfba85a93c09a573",
                    "id_documents": [],
                    "last_name": "Sanchez Ortega",
                    "nickname": "daniel.sanchez",
                    "notification_channels": [],
                    "strongly_identified": false,
                    "username": "daniel.sanchez",
                    "anonymous": false,
                    "jurisdiction_element_channels": []
                }
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                message: Image file required
  /me/last-geofences/{device_id}:
    post:
      tags:
        - User > User
      summary: Last Geofences
      operationId: lastGeofences
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | last_geofences | array | [required]  <br>Array de identificadores de
        geofences visitadas por el usuario. |


        Permite setear las ultmas geofences en las que ha estado un usuario
        externo. Si en ese momento existe algún comunicado publicado para alguna
        de las geofences indicadas, se notificará automáticamente al dispositivo
        indicado en el campo **device_id**


        | **Campo** | **Descripción** |

        | --- | --- |

        | last_geofences | \[required\]  <br>Array con los geoserverId de las
        últimas geofences del usuario |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                last_geofences:
                  - my_layer.12
                  - my_layer.35
      security:
        - bearerAuth: []
      parameters:
        - name: device_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso device id.
      responses:
        '200':
          description: OK
          headers:
            Server:
              schema:
                type: string
                example: nginx/1.16.1
            Content-Type:
              schema:
                type: string
                example: application/json
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Connection:
              schema:
                type: string
                example: keep-alive
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Date:
              schema:
                type: string
                example: Tue, 01 Oct 2024 08:23:06 GMT
            X-Cache-Debug:
              schema:
                type: integer
                example: '1'
            Access-Control-Expose-Headers:
              schema:
                type: string
                example: Link, X-Last-Page, X-Total-Items, X-Count
            Link:
              schema:
                type: string
                example: ''
            X-Last-Page:
              schema:
                type: string
                example: ''
            X-Total-Items:
              schema:
                type: string
                example: ''
            Vary:
              schema:
                type: string
                example: Accept-Language
            X-Debug-Token:
              schema:
                type: string
                example: 8c3088
            X-Debug-Token-Link:
              schema:
                type: string
                example: http://mtc.vadiaz.lan/_profiler/8c3088
            X-Robots-Tag:
              schema:
                type: string
                example: noindex
          content:
            application/json:
              schema:
                type: object
              example:
                full_name: pepito perez
                additional_data: []
                email: pepito@mock.com
                first_name: pepito
                id: 6563767ac68c18fb4107a202
                last_name: perez
                nickname: 9rq865xbkb
                phone: '30112345678'
        '404':
          description: OK
          headers:
            Server:
              schema:
                type: string
                example: nginx/1.16.1
            Content-Type:
              schema:
                type: string
                example: application/json
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Connection:
              schema:
                type: string
                example: keep-alive
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Date:
              schema:
                type: string
                example: Tue, 01 Oct 2024 08:23:06 GMT
            X-Cache-Debug:
              schema:
                type: integer
                example: '1'
            Access-Control-Expose-Headers:
              schema:
                type: string
                example: Link, X-Last-Page, X-Total-Items, X-Count
            Link:
              schema:
                type: string
                example: ''
            X-Last-Page:
              schema:
                type: string
                example: ''
            X-Total-Items:
              schema:
                type: string
                example: ''
            Vary:
              schema:
                type: string
                example: Accept-Language
            X-Debug-Token:
              schema:
                type: string
                example: 8c3088
            X-Debug-Token-Link:
              schema:
                type: string
                example: http://mtc.vadiaz.lan/_profiler/8c3088
            X-Robots-Tag:
              schema:
                type: string
                example: noindex
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 404
                error_msg: Object not found
  /me/device:
    post:
      tags:
        - User > User
      summary: Add Device
      operationId: addDevice
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | String | \[required\]. Aplicación asociada al dispositivo. |

        | device_id | String | \[required\]. ID del dispositivo. |

        | registration_id | String | \[required\]. ID del registro asociada al
        dispositivo. |

        | type | Int | \[required\]. Tipo de dispositivo. |


        Este endpoint permite **registrar o actualizar un dispositivo asociado
        al usuario autenticado**, almacenando la información necesaria para
        identificarlo y habilitar funcionalidades como notificaciones push o
        gestión de dispositivos vinculados al perfil del usuario.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                device_id: '{{deviceUuid}}'
                type: ios
                registration_id: >-
                  ej5zEduBrEM-vdXGrdkJ-i:APA91bGAOC1l0xWDCNBhpydLztZYTLUvz9zduLkOTYsbZ74CUknsPB_1kmsUToSm3JXlgyiV7Ga8P3aZeYCUA9jUdkrfWPBx02Y7T-xX0ItBpRfRx8oF7Rw
                app_key: '{{app_key}}'
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 68a75a9abf426bbabd0644af
                hasPassword: true
                username: d.solicitante.pgiba
                nickname: Solicitante de PGIBA
                user_companies:
                  - alias: Agrupación Base Aérea
                    id: 68893d192e776a8e96017542
                    name: PGIBA-BACV-ABA
                preferences:
                  map_layer_list:
                    - active: false
                      map_layer:
                        backend: OWS
                        endpoint: https://gis-pre.mejoratuciudad.org/geoserver
                        id: 67069e56c7ae6500d401b6bf
                        is_default: false
                        color: '#000000'
                        display_properties: '%description%'
                        editable_data: false
                        editable_geometry: false
                        internal_name: buildings:bacsi_bacv_GU_B_geocode
                        internally_visible: true
                        name: Complejo y edificios
                        description: Complejo y edificios
                        path_updated: false
                        preset: false
                        public: false
                        tags: []
                        token: 489780ae-39e0-40bf-93e3-57565431454a
                        type: WORK
                is_admin: false
                origin_create: []
                additional_data: []
                first_name: Solicitante
                last_name: Prueba PGIBA
                locale: es
                avatar: >-
                  https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68a748d869aaa892718960.png
                user_groups:
                  - jurisdiction_id: es.bacsi
                    alias: Solicitantes Mesa
                    group_type: applicant
                    id: 68a75208bf426bbabd06449b
                    name: Grp_PGIBA-BACV-ABA_solicitantes_mesa
                permissions:
                  es.bacsi:
                    - REQUESTS_COMMENTS_ACCESS_MODULE
                    - REQUESTS_COMMENTS_CREATE
                    - REQUESTS_COMMENTS_MEDIAS
                    - COMMENTS_FREE_TEXT
                    - USER_EVALUATION_ACCESS_MODULE
                    - USER_EVALUATION_CREATE
                    - NOTIFICATIONS_ACCESS_MODULE
                    - REQUESTS_ACCESS_MODULE
                    - REQUESTS_CREATE
                    - REQUESTS_GENERATE_TICKET
                    - REQUESTS_EMAIL_TICKET
                    - REQUESTS_ADD_INTERNAL_INFORMANT
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Add Device Invalid Json
                  value:
                    error:
                      code: 400
                      message: Invalid json message received
                example-1:
                  summary: Add Device Failed
                  value:
                    error_code: 1001
                    error_msg: Attempting to add a new Device failed
                    extra_data:
                      message: >-
                        ->: A Device must have at least an Id, Registration,
                        Type and App_key:;    ->registration_id: Este valor no
                        debería estar vacío.:null;    ->app_key: application was
                        not provided:null;    
                      errors:
                        - field: ''
                          message: >-
                            A Device must have at least an Id, Registration,
                            Type and App_key
                          parameters: ''
                        - field: registration_id
                          message: Este valor no debería estar vacío.
                          parameters: 'null'
                        - field: app_key
                          message: application was not provided
                          parameters: 'null'
    delete:
      tags:
        - User > User
      summary: Remove Device
      operationId: removeDevice
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | app_key | String | \[required\]. Aplicación asociada al dispositivo. |

        | device_id | String | \[required\]. ID del dispositivo. |


        Este endpoint permite **eliminar un dispositivo previamente registrado y
        asociado al usuario autenticado**, identificándolo mediante su
        `device_id` y la `app_key`, de modo que deje de estar vinculado al
        perfil del usuario y no reciba más interacciones como notificaciones
        push.
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                hasPassword: true
                nickname: whatsapp:+573228958456
                main_address: {}
                addresses: []
                app_evaluations: []
                avatar: >-
                  https://lh3.googleusercontent.com/a/ACg8ocKjclGiC_0Bb7EaLTqQQ06wIzsT63h2wcxLXqgwqWEYRQiRsmM=s96-c?sz=600
                channels: []
                configuration:
                  app_notification:
                    alerts: true
                    comments: true
                    follows: true
                    requests: true
                  email_notification:
                    alerts: true
                    comments: true
                    follows: true
                    requests: true
                devices: []
                email: michael.martinez@gopenux.com
                first_name: Michael Santiago
                id: 68e6897873e517338e0305b2
                id_documents: []
                last_name: Martinez Lopez
                notification_channels: []
                phone: '3228958456'
                strongly_identified: false
                username: whatsapp:+573228958456
                telegram_id: '8465975270'
                anonymous: false
                jurisdiction_element_channels: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Remove Device Invalid Json
                  value:
                    error:
                      code: 400
                      message: Invalid json message received
                example-1:
                  summary: Remove Device Failed
                  value:
                    - code: 400
                      description: App_Key not provided
  /user/edit-jurisdiction-element-channels:
    patch:
      tags:
        - User > User
      summary: Edit User JurisdictionElement Channels
      operationId: editUserJurisdictionElementChannels
      description: >-
        Permite a un usuario externo modificar los canales que tiene activos
        para un jurisdictionElement concreto.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | channels | Object | Objeto cuyas claves son los ids o friendlyIds de
        jurisdictionElement, con valores en forma de array que pueden contener
        indistintamente ids o friendlyids de los canales a añadir para dicho
        jurisdictionElement |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                channels:
                  '{{objectId}}':
                    - Canal1 Publico
                    - Canal2 Publico
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                jurisdiction_element_channels:
                  5c9b5c80e13a48ed37bc0989:
                    670cc9fbbdb73a4bfca75607: true
                    670ccbc4bdb73a4bfca75608: true
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Error User Does Not Belong to JurisdictionElement
                  value:
                    code: 400
                    description: >-
                      Channel 670cc9fbbdb73a4bfca75607 is not in given
                      jurisdictionElement 5c9b5c80e13a48ed37bc0989
                example-1:
                  summary: Error User Not in Jurisdiction
                  value:
                    code: 400
                    description: User does not belong to jurisdictionElement's Jurisdiction
  /me/jurisdiction-element-channels/edit:
    patch:
      tags:
        - User > User
      summary: Edit User JurisdictionElement Channels 2
      operationId: editUserJurisdictionElementChannels2
      description: >-
        Este endpoint permite al usuario autenticado actualizar los canales
        asociados a sus elementos de jurisdicción.


        Es un alias de**:** [PATCH
        /user/edit-jurisdiction-element-channels](#tag/User-greater-User/operation/editUserJurisdictionElementChannels)  

        Ambos endpoints comparten la misma lógica interna y comportamiento, por
        lo que pueden usarse de forma intercambiable. Este alias está pensado
        para facilitar las operaciones centradas en el propio usuario (`/me`).
      requestBody:
        content: {}
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                60d5f9ae2f8e4e1a7c8b456d:
                  - email
                  - sms
                60d5f9ae2f8e4e1a7c8b456e:
                  - push
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                message: Error editing user jurisdiction element channels
  /create-profile:
    put:
      tags:
        - User > User
      summary: Create User Profile
      operationId: createUserProfile
      description: >-
        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | first_name | string | [required]  <br>Nombre del usuario. |

        | last_name | string | [required]  <br>Apellido del usuario. |

        | phone | integer | [optional]  <br>Número de teléfono del usuario. |


        Permite al usuario rellenar los datos de su perfil, y añadirlos a la
        request creada


        **Request Params**


        | **Campo** | **Descripción** |

        | --- | --- |

        | token | Este token (recibido por correo) contiene el correo del
        usuario y un request_id encriptados |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                first_name: User
                last_name: Prueba
                phone: 555123456
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
              example: '"User Profile created succesfully"'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                type: string
              example: '"Invalid Token"'
  /edit-profile:
    put:
      tags:
        - User > User
      summary: Edit User Profile
      operationId: editUserProfile
      description: >
        ## Descripción

        Actualiza el perfil del usuario asociado al token de edición recibido
        por correo. Valida expiración del token y existencia del usuario antes
        de aplicar los cambios.


        ## Request Params

        No aplica.


        ## Query Params

        | Key | Value (ejemplo) | Description |

        | --- | --- | --- |

        | token_id | {{profileToken}} | String. [required]. Token de edición de
        perfil (cifrado). |


        ## Body Params

        Todos los campos son opcionales, se actualizarán solo los enviados.


        | Campo | Tipo | Descripción |

        | --- | --- | --- |

        | additionalData | Array<AdditionalData> | (array<AdditionalData>)
        [optional]. Datos adicionales del usuario. Ver Documentos >
        AdditionalData. |

        | address | Address | (Address) [optional]. Dirección principal del
        usuario. Ver Documentos > Address. |

        | addresses | Array<Address> | (array<Address>) [optional]. Direcciones
        adicionales. Ver Documentos > Address. |

        | avatar | String (URL) | (string) [optional]. URL del avatar. Debe ser
        URL válida. |

        | birthday | Date (Y-m-d) | (string) [optional]. Fecha de nacimiento
        (Y-m-d). |

        | channels | Array<Channel ID> | (array<string>) [optional]. Canales
        asociados. |

        | configuration | SecurityAppConfiguration | (SecurityAppConfiguration)
        [optional]. Configuración de notificaciones. Ver Documentos >
        SecurityAppConfiguration. |

        | email | String | (string) [optional]. Email del usuario. |

        | first_name | String | (string) [optional]. Nombre del usuario (solo si
        no está strongly_identified). |

        | gender | String | (string) [optional]. Valores admitidos: female,
        male, other, not_specified. |

        | id_document | IdDocument | (IdDocument) [optional]. Documento de
        identidad principal. Ver Documentos > IdDocument. |

        | id_documents | Array<IdDocument> | (array<IdDocument>) [optional].
        Documentos de identidad adicionales. Ver Documentos > IdDocument. |

        | last_name | String | (string) [optional]. Apellido del usuario (solo
        si no está strongly_identified). |

        | locale | String | (string) [optional]. Locale del usuario (ej: es). |

        | notification_channels | Array<Channel ID> | (array<string>)
        [optional]. Canales de notificación. |

        | phone | Phone | (Phone) [optional]. Teléfono principal. Ver Documentos
        > Phone. |

        | phones | Array<Phone> | (array<Phone>) [optional]. Teléfonos
        adicionales. Ver Documentos > Phone. |

        | strongly_identified | Boolean | (boolean) [optional]. Indica
        identificación fuerte. |

        | telegram_id | String | (string) [optional]. Identificador de Telegram.
        |

        | twitterNickname | String | (string) [optional]. Usuario de Twitter. |

        | user_location_area | String | (string) [optional]. Zona/área del
        usuario. |

        | username | String | (string) [optional]. Username del usuario. |

        | whatsapp_id | String | (string) [optional]. Identificador de WhatsApp.
        |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                first_name: Juan
                last_name: Pérez
                phone:
                  number: '+34911111222'
                  label: mobile
                configuration:
                  app_notification:
                    alerts: true
                    comments: true
                    follows: true
                    requests: true
                  email_notification:
                    alerts: true
                    comments: true
                    follows: true
                    requests: true
      parameters:
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
        - name: token_id
          in: query
          schema:
            type: string
          required: true
          description: String.. Token de edición de perfil (cifrado).
          example: '{{profileToken}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            text/plain:
              schema:
                type: string
              example: '"User Profile edited successfully"'
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Invalid Token
                  value:
                    - code: 400
                      description: Invalid token
                example-1:
                  summary: Token Expired
                  value:
                    - code: 400
                      description: Token expired
                example-2:
                  summary: Invalid Form
                  value:
                    - code: 1133
                      description: Invalid form
            text/plain:
              schema:
                type: string
              example: '"An error occurred when saving user data"'
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: User not found
  /me/update/registered-address:
    post:
      tags:
        - User > User
      summary: Update Registered Address
      operationId: updateRegisteredAddress
      description: >-
        **Descripción**\n\nDispara la sincronización de la dirección registrada
        del usuario autenticado con los webhooks configurados en sus
        jurisdicciones. La petición no lleva cuerpo; basta con enviar un `POST`
        vacío con credenciales válidas.\n\n**Comportamiento adicional**\n- Se
        itera sobre cada jurisdicción del usuario y se lanza el webhook
        configurado (campo `registeredAddressWebHook`).\n- Si un webhook
        responde con un objeto que incluye `registered_address`, ese resultado
        se reenvía directamente al cliente. Si ninguno lo hace, se devuelve la
        primera respuesta disponible (por ejemplo: `"Asynchronous Event
        dispatched"`).\n- Si el usuario no está fuertemente identificado o no
        existen webhooks configurados, el endpoint responde un
        400.\n\n**Autenticación requerida:** Bearer token (ROLE_USER) + header
        `X-CLIENT-ID`.
      requestBody:
        content: {}
      security:
        - bearerAuth: []
      parameters:
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          required: true
          description: (string). Identificador del cliente Open010.
          example: '{{clientId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                registered_address:
                  street: Calle Mayor
                  number: '10'
                  city: Madrid
                  postal_code: '28001'
                  country: ES
                jurisdiction: madrid
                webhook_id: 507f1f77bcf86cd799439011
                processed_at: '2026-01-27T09:20:00+00:00'
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: No webhooks are configured in the user jurisdictions.
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Authentication Required
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 403
                description: Access Denied
  /me/custom_configuration/{app_element_id}:
    get:
      tags:
        - User > User Custom Configuration
      summary: Get User CustomConfiguration App Element Id
      operationId: getUserCustomConfigurationAppElementId
      description: >-
        ```

        https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id}}

         ```

        Este endpoint permite obtener la configuración personalizada de un
        usuario para un **elemento de la aplicación** específico (identificado
        por `app_element_id`). En la respuesta, se proporcionan detalles sobre
        las tarjetas activas pertenecientes a el id de la aplicación.


        | **Campo** | **Descripcion** |

        | --- | --- |

        | app_element_id | String. \[Require\]. Identificador unico del elemento
        de la aplicación. |
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Identificador único de la jurisdicción para la cual se
            obtendrá la configuración.
          example: '{{jurisdiction_id}}'
        - name: type
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Especifica el tipo de configuracion personalizada de la
            consulta.
          example: cityapp
        - name: app_element_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso app element id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                active_cards:
                  - app_element:
                      $ref: AppElement
                      $id:
                        $oid: 59774b1dfbcdf7da018b4590
                      $db: open010
                      type: requests_card
                    position:
                      $numberLong: '1'
                    selected: false
                    createdDatetime:
                      $date: '2018-03-12T01:43:09.083Z'
                    updatedDatetime:
                      $date: '2018-03-12T01:43:09.083Z'
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get User CustomConfiguration App Element Id Error Not Found
                  value:
                    error: Not Found
                    code: 404
                example-1:
                  summary: >-
                    Get User CustomConfiguration App Element Id Error
                    Jurisdiction_id Not Found
                  value:
                    - code: 404
                      description: jurisdiction_id was not found
                example-2:
                  summary: >-
                    Get User CustomConfiguration App Element Id Error
                    CustomConfigurations Not Found
                  value:
                    - code: 404
                      description: CustomConfigurations not found
    patch:
      tags:
        - User > User Custom Configuration
      summary: Patch User CustomConfiguration App Element Id
      operationId: patchUserCustomConfigurationAppElementId
      description: >-
        Este endpoint permite al usuario autenticado editar la configuración
        personalizada de un app element identificado por `app_element_id`.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | account_config | object | [required]. Configuración personalizada del
        elemento de aplicación. |


        | **Campo** | **Descripcion** |

        | --- | --- |

        | app_element_id | String. \[required\]. Identificador del elemento de
        la aplicación cuya configuración personalizada se edita. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                account_config:
                  collapsed: true
                  order: 1
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Identificador de la jurisdicción sobre la cual aplica la
            configuración.
          example: '{{jurisdiction_id}}'
        - name: type
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Define el tipo de configuración personalizada que se va a
            editar.
          example: cityapp
        - name: app_element_id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso app element id.
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
              example: '    '
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                code: 400
                description: UserCustomConfiguration params not valid
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Error User Not Found
                  value:
                    code: 404
                    description: User not found
                example-1:
                  summary: Error Aplication Was Not Found
                  value:
                    code: 404
                    description: Application was not found
                example-2:
                  summary: Error Not Found Active Card
                  value:
                    code: 404
                    description: Not found active card
  /me/custom_configuration:
    get:
      tags:
        - User > User Custom Configuration
      summary: Get User Custom Configuration
      operationId: getUserCustomConfiguration
      description: >-
        ```

        mtc.vdeveloper.lan/public-api/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp

         ```

        Este endpoint obtiene la configuración personalizada del usuario
        autenticado para un tipo de aplicación específico (`type`) dentro de una
        o varias jurisdicciones (`jurisdiction_ids`, separadas por comas). La
        respuesta devuelve únicamente las configuraciones existentes asociadas a
        aplicaciones de ese tipo en las jurisdicciones solicitadas; si no hay
        coincidencias, se responde con 404.
      security:
        - bearerAuth: []
      parameters:
        - name: Authorization
          in: header
          schema:
            type: string
          example: >-
            Bearer
            OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw
        - name: Cookie
          in: header
          schema:
            type: string
          example: lunetics_locale=es
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Identificador único de la jurisdicción para la cual se
            obtendrá la configuración.
          example: '{{jurisdiction_id}}'
        - name: type
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Tipo de aplicación para la cual se obtendrá la
            configuración personalizada del usuario en la(s) jurisdicción(es)
            indicada(s). Debe coincidir con el tipo registrado de la aplicación
          example: cityapp
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - jurisdiction_id: org.alcobendas
                  active_external_services: []
                  active_buttons: []
                  active_cards:
                    - app_element: 67e11f151e0ac394a0057abd
                      account_config: []
                      position: 0
                      selected: true
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: >-
                    Get User Custom Configuration  Error CustomConfiguration Not
                    Found
                  value:
                    - code: 404
                      description: UserCustomConfigurations not found
                example-1:
                  summary: Get User Custom Configuration  Error Jurisdiction
                  value:
                    - code: 404
                      description: No jurisdiction found in the specified coordinates
                example-2:
                  summary: Get User Custom Configuration Error User Not Fount
                  value:
                    - code: 404
                      description: User not found
    post:
      tags:
        - User > User Custom Configuration
      summary: Post User CustomConfiguration
      operationId: postUserCustomConfiguration
      description: >-
        Este endpoint crea o actualiza la configuración personalizada del
        usuario autenticado para una aplicación y jurisdicción dadas.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_ids | String | [required]. Identificador de la
        jurisdicción. |

        | type | String | [required]. Tipo de aplicación. |

        | active_buttons | Array<AppElementCustomConfiguration> | [optional].
        Configuración de botones activos. |

        | active_cards | Array<AppElementCustomConfiguration> | [optional].
        Configuración de tarjetas activas. |

        | active_external_services | Array<AppElementCustomConfiguration> |
        [optional]. Configuración de servicios externos activos. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                jurisdiction_ids: '{{jurisdictionId}}'
                type: cityapp
                active_buttons:
                  - app_element: '{{appElementId}}'
                    position: 1
                    selected: true
                    account_config: {}
                active_cards:
                  - app_element: '{{appElementId}}'
                    position: 1
                    selected: true
                    account_config: {}
                active_external_services:
                  - external_service: '{{externalServiceId}}'
                    position: 1
                    selected: true
                    account_config: {}
      security:
        - bearerAuth: []
      parameters:
        - name: Authorization
          in: header
          schema:
            type: string
          example: Bearer {{token_public}}
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          example: '{{clientId}}'
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: null
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Create User Custom Configuration Jurisdiction IDs Not Send
                  value:
                    code: 400
                    description: Jurisdiction_ids not send
                example-1:
                  summary: Create User Custom Configuration Type Not Send
                  value:
                    code: 400
                    description: Type not send
                example-2:
                  summary: Create User Custom Configuration Invalid Params
                  value:
                    code: 400
                    description: UserCustomConfiguration params not valid
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Authentication Required
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Create User Custom Configuration Jurisdiction Not Found
                  value:
                    code: 404
                    description: Jurisdiction not found
                example-1:
                  summary: Create User Custom Configuration Application Not Found
                  value:
                    code: 404
                    description: Application was not found
                example-2:
                  summary: Create User Custom Configuration User Not Found
                  value:
                    code: 404
                    description: User not found
  /usercustomconfiguration:
    get:
      tags:
        - User > User Custom Configuration
      summary: Get User Custom Configuration Deprecated
      operationId: getUserCustomConfigurationDeprecated
      description: >-
        Endpoint deprecado para obtener la configuracion personalizada del
        usuario por tipo de app y jurisdicciones. Ruta vigente recomendada:
        `/me/custom_configuration`.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_ids | string | [required]. Lista CSV de jurisdiction_id.
        |

        | type | string | [required]. Tipo de configuracion de aplicacion. |
      security:
        - bearerAuth: []
      parameters:
        - name: Authorization
          in: header
          schema:
            type: string
          example: Bearer {{token_public}}
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          example: '{{clientId}}'
        - name: jurisdiction_ids
          in: query
          schema:
            type: string
          required: true
          description: String.. Lista CSV de jurisdiction_id.
          example: '{{jurisdiction_id}}'
        - name: type
          in: query
          schema:
            type: string
          required: true
          description: String.. Tipo de configuracion de aplicacion.
          example: cityapp
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - jurisdiction_id: org.alcobendas
                  active_external_services: []
                  active_buttons: []
                  active_cards: []
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Get User Custom Configuration Deprecated Type Not Send
                  value:
                    - code: 400
                      description: Type not send
                example-1:
                  summary: >-
                    Get User Custom Configuration Deprecated Jurisdiction Ids
                    Not Send
                  value:
                    - code: 400
                      description: Jurisdiction_ids not send
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 403
                  description: User was not found
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: user_custom_configuration_not_found
    post:
      tags:
        - User > User Custom Configuration
      summary: Post User Custom Configuration Deprecated
      operationId: postUserCustomConfigurationDeprecated
      description: >-
        Endpoint deprecado para crear o actualizar la configuracion
        personalizada del usuario. Ruta vigente recomendada:
        `/me/custom_configuration`.


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | jurisdiction_ids | String | [required]. Identificador de la
        jurisdiccion. |

        | type | String | [required]. Tipo de aplicacion. |

        | active_buttons | Array<AppElementCustomConfiguration> | [optional].
        Configuracion de botones activos. |

        | active_cards | Array<AppElementCustomConfiguration> | [optional].
        Configuracion de tarjetas activas. |

        | active_external_services | Array<AppElementCustomConfiguration> |
        [optional]. Configuracion de servicios externos activos. |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                jurisdiction_ids: '{{jurisdictionId}}'
                type: cityapp
                active_buttons:
                  - app_element: '{{appElementId}}'
                    position: 1
                    selected: true
                    account_config: {}
                active_cards:
                  - app_element: '{{appElementId}}'
                    position: 1
                    selected: true
                    account_config: {}
                active_external_services:
                  - external_service: '{{externalServiceId}}'
                    position: 1
                    selected: true
                    account_config: {}
      security:
        - bearerAuth: []
      parameters:
        - name: Authorization
          in: header
          schema:
            type: string
          example: Bearer {{token_public}}
        - name: X-CLIENT-ID
          in: header
          schema:
            type: string
          example: '{{clientId}}'
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 65f1e0b6f6a2a8d1c1a9a555
                jurisdiction_id: org.alcobendas
                active_buttons:
                  - app_element: 65f1e0b6f6a2a8d1c1a9a101
                    position: 1
                    selected: true
                    account_config: {}
                active_cards:
                  - app_element: 65f1e0b6f6a2a8d1c1a9a202
                    position: 2
                    selected: false
                    account_config: {}
                active_external_services:
                  - external_service: 65f1e0b6f6a2a8d1c1a9a303
                    position: 1
                    selected: true
                    account_config: {}
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: >-
                    Create User Custom Configuration Deprecated Jurisdiction IDs
                    Not Send
                  value:
                    code: 400
                    description: Jurisdiction_ids not send
                example-1:
                  summary: Create User Custom Configuration Deprecated Type Not Send
                  value:
                    code: 400
                    description: Type not send
                example-2:
                  summary: Create User Custom Configuration Deprecated Invalid Params
                  value:
                    code: 400
                    description: UserCustomConfiguration params not valid
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: >-
                    Create User Custom Configuration Deprecated Jurisdiction Not
                    Found
                  value:
                    code: 404
                    description: Jurisdiction not found
                example-1:
                  summary: >-
                    Create User Custom Configuration Deprecated Application Not
                    Found
                  value:
                    code: 404
                    description: Application was not found
                example-2:
                  summary: Create User Custom Configuration Deprecated User Not Found
                  value:
                    code: 404
                    description: User not found
  /user/delete-user:
    post:
      tags:
        - User > User Public
      summary: Delete User
      operationId: deleteUser
      description: >-
        Con el token recibido, se saca el usuario a anonimizar y la
        jurisdicción, lanza los WebHooks cuyo evento sea
        webhook.event.type.disable_user que tenga la jurisidicción, anonimiza el
        usuario y manda un correo de éxito.
      requestBody:
        content: {}
      parameters:
        - name: token
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Token generado en el endpoint
            /user/send-delete-confirmation-mail. Va incrustado en una URL que
            contiene el correo que envía ese endpoint
          example: exampleToken
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                'Username changed to ': newUsername
                Requests reindexed successfully: true
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Missing token
                  value:
                    - code: 400
                      description: Token must be provided
                example-1:
                  summary: Invalid token
                  value:
                    - code: 400
                      description: Invalid token
  /user/send-delete-confirmation-mail:
    post:
      tags:
        - User > User Public
      summary: Send Delete Confirmation Mail
      operationId: sendDeleteConfirmationMail
      description: >-
        Envía un correo al email del usuario indicado con un enlace para
        confirmar la anonimización de los datos del usuario generando un token
        por seguridad.


        ### Body Params


        | Campo | Tipo | Descripcion |

        | --- | --- | --- |

        | email | string | \[required\] Email del usuario que se quiere
        anonimizar |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                email: jhon.doe@example.com
      parameters:
        - name: jurisdiction_id
          in: query
          schema:
            type: string
          required: true
          description: String.. Un jurisdiction_id válido
          example: '{{jurisdiction_id}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: Email sent to jhon.doe@example.com
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: There was an error generating a disableUserToken
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Invalid jurisdiction_id
                  value:
                    - code: 404
                      description: jurisdiction_id was not found
                example-1:
                  summary: User not found
                  value:
                    - code: 404
                      description: User not found
  /public-api/dispatch-event:
    post:
      tags:
        - WebHook
      summary: Dispatch Event
      operationId: dispatchEvent
      description: >-
        ## Descripción


        Dispara un evento webhook configurado para el usuario autenticado.


        ## Request Params


        | Campo | Descripción |

        |-------|-------------|

        | (sin params) | Este endpoint no utiliza path params |


        ## Query Params


        | Key | Value (ejemplo) | Description |

        |-----|-----------------|-------------|

        | event | webhook.event.type.updating_public_user_profile | String.
        [required]. Debe ser exactamente
        'webhook.event.type.updating_public_user_profile' |


        ## Body Params


        | Campo | Tipo | Descripción |

        |-------|------|-------------|

        | parameters | Object | [optional]. Parametros libres para el webhook |
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                parameters:
                  key: value
      parameters:
        - name: Content-Type
          in: header
          schema:
            type: string
          example: application/json
        - name: Authorization
          in: header
          schema:
            type: string
          description: Token de acceso (Public API). Requerido.
          example: Bearer {{token_public}}
        - name: event
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. Debe ser exactamente
            'webhook.event.type.updating_public_user_profile'
          example: webhook.event.type.updating_public_user_profile
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: Asynchronous Event dispatched
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: <error message>
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Authentication Required
        '403':
          description: Forbidden
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Access Denied.
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                message: Not Found
  /app-element/{id}/widgets:
    get:
      tags:
        - Widget > Widget
      summary: Get AppElement Widgets
      operationId: getAppElementWidgets
      description: >-
        **Request Params**


        | **Campo.** | **Descripción.** |

        | --- | --- |

        | id | Id del AppElement del cual se desean obtener los widgets
        asociados. |


        Este endpoint permite obtener los widgets asociados a un AppElement
        específico, donde `{id}` es el identificador único del AppElement. A
        partir de dicho identificador, el endpoint retorna los atributos de los
        widgets vinculados al AppElement.
      security:
        - bearerAuth: []
      parameters:
        - name: id
          in: path
          schema:
            type: string
          required: true
          description: String. [required]. ID del recurso id.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                id: 67730fa48f05e82987073fe8
                name: asdasd
                type: lines
                jurisdiction:
                  id: 561e04ed6aa918910c8b4592
                  jurisdiction_id: org.alcobendas
                  name: Alcobendas
                tags: []
        '401':
          description: Unauthorized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 401
                message: widgets_error_login
  /polygon-zones-by-service:
    get:
      tags:
        - Zone > Zone
      summary: Get Polygon Zones By Service
      operationId: getPolygonZonesByService
      description: >-
        Obtiene la configuración necesaria para renderizar las zonas poligonales
        de un servicio específico mediante WMS (Web Map Service).


        Este endpoint retorna la URL del servidor GeoServer junto con los
        parámetros WMS necesarios para solicitar las capas de mapa
        correspondientes a las zonas del servicio. Permite configurar el sistema
        de coordenadas de proyección para la visualización y para el extent del
        mapa.


        **Uso típico**: Integración con librerías de mapas (OpenLayers, Leaflet)
        para superponer capas de zonas geográficas en aplicaciones de
        visualización.
      security:
        - bearerAuth: []
      parameters:
        - name: jurisdiction_element_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. ID del elemento jurisdiccional que define el ámbito
            geográfico de las zonas.
          example: '{{jurisdiction_element_id}}'
        - name: service_id
          in: query
          schema:
            type: string
          required: true
          description: >-
            String.. ID del servicio para el cual se obtienen las zonas
            poligonales.
          example: '{{service_id}}'
        - name: extentProjection
          in: query
          schema:
            type: integer
          description: >-
            Int. [optional]. Sistema de coordenadas de referencia (SRID) para el
            extent de los polígonos. Por defecto 4326 (WGS84).
          example: '4326'
        - name: projection
          in: query
          schema:
            type: integer
          description: >-
            Int. [optional]. Sistema de coordenadas de referencia (SRID) para la
            proyección de los polígonos. Por defecto 3857 (Web Mercator).
          example: '3857'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                url: https://geoserver.mejoratuciudad.org/geoserver/mtx/wms
                params:
                  SERVICE: WMS
                  VERSION: 1.3.0
                  REQUEST: GetMap
                  FORMAT: image/png
                  layers: mtx:zones_layer
                  TRANSPARENT: true
                  CRS: EPSG:3857
                  token: geoserver_access_token
                  STYLES: ''
                  cql_filter: service_id='591b33494e4ea840018b462c'
                extent:
                  - -3.8887100219727
                  - 40.312347412109
                  - -3.5177917480469
                  - 40.643585205078
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                error_code: 404
                error_msg: Object not found
  /filemanagement:
    post:
      tags:
        - Default
      summary: Upload File
      operationId: uploadFile
      description: >-
        Este endpoint permite **subir archivos dentro del sistema**,
        asociándolos mediante una URI, para que posteriormente puedan ser
        vinculados a una solicitud.
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - file
                - uri
              properties:
                file:
                  type: string
                  description: File.. Archivo que se desea subir al sistema.
                  format: binary
                uri:
                  type: string
                  description: >-
                    String.. Identificador del contexto o módulo al que se
                    asociará el archivo.
                  example: request
      security:
        - bearerAuth: []
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example: >-
                https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/request/69456f45dd1b16.86679270.png
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: Upload File Invalid
                  value:
                    error_code: 1130
                    error_msg: Bad file to upload
                example-1:
                  summary: Upload File Required Parameter
                  value:
                    error:
                      code: 400
                      message: Required Parameter file
                example-2:
                  summary: Upload Uri Required Parameter Copy
                  value:
                    - code: 400
                      description: Required Parameter uri
  /collection:
    get:
      tags:
        - Default
      summary: Collections
      operationId: collections
      description: >-
        **Description**


        Devuelve la colección de Postman para la Public API en formato JSON.
        Este endpoint permite a los desarrolladores descargar la definición de
        la API pública para importarla directamente en Postman.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                info:
                  _postman_id: c2065756-b268-46e9-a489-fd74784e211e
                  name: Public Api
                  description: ''
                  schema: >-
                    https://schema.getpostman.com/json/collection/v2.1.0/collection.json
                  _uid: 38092163-c2065756-b268-46e9-a489-fd74784e211e
                item:
                  - name: AdditionalData
                    item:
                      - name: AdditionalData
                        item:
                          - name: List MassiveSingleListQuestion
                            id: 5025704d-2e02-4f46-abc0-119884339b43
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/question/{{questionId}}/answers?page=1&limit=20
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - question
                                  - '{questionId}'
                                  - answers
                                query:
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. Permite definir la página
                                      de los resultados encontrados según la
                                      cantidad de los resultados encontrados.
                                      Por defecto el valor es 1
                                    type: text
                                  - key: limit
                                    value: '20'
                                    description: >-
                                      Int [optional]. Permite limitar el número
                                      de resultados por página (por defecto 10)
                                    type: text
                              description: >-
                                Este endpoint permite listar las respuestas de
                                una pregunta especificada.


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | questionId | String | \[requiered\].
                                Identificador mongo de la lista masiva de
                                preguntas a la cual se le desean consultar las
                                respuestas. |
                            response:
                              - id: 75334161-a2b3-4509-b18f-6bb756754dbc
                                name: List MassiveSingleListQuestion OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/question/{{questionId}}/answers?page=1&limit=20
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - question
                                      - '{questionId}'
                                      - answers
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 10)
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "type": "massiveSingleValueList",
                                    "active": true,
                                    "code": "10",
                                    "help_text": "",
                                    "id": "6939de4e85416775c007e5d9",
                                    "question": "¿How mock?",
                                    "tags": [],
                                    "archived": false,
                                    "possible_answers": [
                                      {
                                        "value": 1,
                                        "archived": false
                                      },
                                      {
                                        "value": 2,
                                        "archived": false
                                      },
                                      {
                                        "value": 1,
                                        "archived": false
                                      }
                                    ],
                                    "answers_count": 3
                                  }
                              - id: df3b85e8-2503-49a5-b19f-1ee7985b7ba8
                                name: >-
                                  List MassiveSingleListQuestion Question not
                                  found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/question/{{questionId}}/answers?page=1&limit=20
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - question
                                      - '{questionId}'
                                      - answers
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 10)
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '"null"'
                          - name: Search MassiveSingleListQuestion
                            id: 8a316983-72a5-4de4-9421-506e0ad383db
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/question/{{questionId}}/answers/search?page=1&limit=20&q=mock
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - question
                                  - '{questionId}'
                                  - answers
                                  - search
                                query:
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. Permite definir la página
                                      de los resultados encontrados según la
                                      cantidad de los resultados encontrados.
                                      Por defecto el valor es 1
                                    type: text
                                  - key: limit
                                    value: '20'
                                    description: >-
                                      Int [optional]. Permite limitar el número
                                      de resultados por página (por defecto 10)
                                    type: text
                                  - key: q
                                    value: mock
                                    description: >-
                                      String [required]. Permite buscar
                                      preguntas de listas masivas a partir de
                                      sus respuestas.
                                    type: text
                              description: >-
                                Este endpoint permite realizar búsqueda de
                                listas masivas de preguntas a partir de las
                                respuestas relacionadas.


                                | Campo | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | questionId | String | \[required\].
                                Identificador mongo de la pregunta a la que se
                                le realizará la búsqueda a partir de las
                                respuestas relacionadas. |
                            response:
                              - id: ba4999c9-36b9-4bd3-86f3-d18b46d72aef
                                name: Search MassiveSingleListQuestion OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/question/{{questionId}}/answers/search?page=1&limit=20&q=mock
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - question
                                      - '{questionId}'
                                      - answers
                                      - search
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 10)
                                      - key: q
                                        value: mock
                                        description: >-
                                          String [required]. Permite buscar
                                          preguntas de listas masivas a partir de
                                          sus respuestas.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "value": "mock 1",
                                      "value_translations": {
                                        "es": "mock 1"
                                      },
                                      "archived": false
                                    },
                                    {
                                      "value": "mock 1",
                                      "value_translations": {
                                        "es": "mock 2"
                                      },
                                      "archived": false
                                    },
                                    {
                                      "value": "mock 1",
                                      "value_translations": {
                                        "es": "mock 3"
                                      },
                                      "archived": false
                                    }
                                  ]
                              - id: 3ccf999c-a2c0-4b83-a5d6-dbfff1a67954
                                name: Search MassiveSingleListQuestion not found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/question/{{questionId}}/answers/search?page=1&limit=20&q=mock
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - question
                                      - '{questionId}'
                                      - answers
                                      - search
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 10)
                                      - key: q
                                        value: mock
                                        description: >-
                                          String [required]. Permite buscar
                                          preguntas de listas masivas a partir de
                                          sus respuestas.
                                status: Internal Server Error
                                code: 500
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 500,
                                      "description": "The $massiveSingleListQuestion id: xxxxxxxxxxxxxxxxxx not found, is required"
                                    }
                                  ]
                              - id: 763e9c86-0b86-4228-8fc9-1bf978e032bb
                                name: >-
                                  Search MassiveSingleListQuestion without
                                  results
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/question/{{questionId}}/answers/search?page=1&limit=20&q=algo
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - question
                                      - '{questionId}'
                                      - answers
                                      - search
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 10)
                                      - key: q
                                        value: algo
                                        description: >-
                                          String [required]. Permite buscar
                                          preguntas de listas masivas a partir de
                                          sus respuestas.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                          - name: Get External Data
                            id: 156161e8-29c0-4c00-86ec-1240e36bf02b
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/additional-data/external/question-list/{{questionListId}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - additional-data
                                  - external
                                  - question-list
                                  - '{questionListId}'
                              description: >-
                                Este endpoint permite obtener respuestas
                                externas para la lista de preguntas
                                especificada.  


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | questionId | String | \[required\].
                                Identificador mongo de la lista de preguntas a
                                la que se le quieren dar respuestas externas. |
                            response:
                              - id: 13f26ad4-5201-4b7a-b4dc-e5d820a7b87a
                                name: Get External Data OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/additional-data/external/question-list/{{questionListId}}
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - additional-data
                                      - external
                                      - question-list
                                      - '{questionListId}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "data": [
                                      {
                                        "question": {
                                          "type": "datetime",
                                          "active": true,
                                          "code": "1",
                                          "help_text": "Indicar una fecha aproximada",
                                          "help_text_translations": {
                                            "es": "Indicar una fecha aproximada"
                                          },
                                          "id": "6939e5ed8303d81a590dbf69",
                                          "question": "¿Cuando ha sucedido?",
                                          "question_translations": {
                                            "es": "¿Cuando ha sucedido?"
                                          },
                                          "tags": [],
                                          "archived": false
                                        },
                                        "value": "externalValue",
                                        "editable": true,
                                        "response_attribute": "responseAttribute",
                                        "required": false,
                                        "hidden_in_form": false,
                                        "hidden_in_detail": false,
                                        "visibility": "public"
                                      }
                                    ]
                                  }
                              - id: 7c8aed16-bf99-4091-b99c-7c52f3b86211
                                name: Get External Data Error fill answers
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/additional-data/external/question-list/{{questionListId}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - additional-data
                                      - external
                                      - question-list
                                      - '{questionListId}'
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 400,
                                      "description": "Error setting a value for one or more questions "
                                    }
                                  ]
                              - id: ff924a96-9f49-44af-a307-1a076e6044ec
                                name: Get External Data Question List Not Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/additional-data/external/question-list/{{questionListId}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - additional-data
                                      - external
                                      - question-list
                                      - '{questionListId}'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 404,
                                      "description": "Object not found"
                                    }
                                  ]
                          - name: Get External Data Question Answers
                            id: c078b721-6503-496d-a3d6-7903f4ca62e9
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - additional-data-question
                                  - external-data-question
                                  - '{questionId}'
                                  - answers
                                query:
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. Permite definir la página
                                      de los resultados encontrados según la
                                      cantidad de los resultados encontrados.
                                      Por defecto el valor es 1
                                  - key: limit
                                    value: '20'
                                    description: >-
                                      Int [optional]. Permite limitar el número
                                      de resultados por página (por defecto 90)
                                  - key: q
                                    value: text
                                    description: >-
                                      String [optional]. Permite buscar posibles
                                      respuestas de listas masivas a partir del
                                      texto especificado.
                              description: >-
                                Este endpoint permite obtener el listado de
                                posibles respuestas de la lista masiva de
                                preguntas especificada.
                            response:
                              - id: 291bb70b-a4f1-4385-8cc8-49d2911f7175
                                name: Get External Data Question Answers OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=externalValue
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - additional-data-question
                                      - external-data-question
                                      - '{questionId}'
                                      - answers
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 90)
                                      - key: q
                                        value: externalValue
                                        description: >-
                                          String [optional]. Permite buscar
                                          posibles respuestas de listas masivas a
                                          partir del texto especificado.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "value": [
                                        "externalValue"
                                      ],
                                      "archived": false
                                    }
                                  ]
                              - id: d155f3af-4ab2-45d6-9871-848960f1fda2
                                name: >-
                                  Get External Data Question Answers without
                                  results
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - additional-data-question
                                      - external-data-question
                                      - '{questionId}'
                                      - answers
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 90)
                                      - key: q
                                        value: text
                                        description: >-
                                          String [optional]. Permite buscar
                                          posibles respuestas de listas masivas a
                                          partir del texto especificado.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                              - id: 06c595ca-4af5-4002-b37c-dd0c6869e30d
                                name: >-
                                  Get External Data Question Answers with wrong
                                  question
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - additional-data-question
                                      - external-data-question
                                      - '{questionId}'
                                      - answers
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 90)
                                      - key: q
                                        value: text
                                        description: >-
                                          String [optional]. Permite buscar
                                          posibles respuestas de listas masivas a
                                          partir del texto especificado.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 404,
                                      "description": "Question must be either ExternalSingleListQuestion or ExternalMultiListQuestion"
                                    }
                                  ]
                              - id: 4fd4f699-8bbf-4c1b-809d-623144a745e8
                                name: Get External Data Question Answers Not found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/additional-data/external-data-question/{{questionId}}/answers?page=1&limit=20&q=text
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - additional-data-question
                                      - external-data-question
                                      - '{questionId}'
                                      - answers
                                    query:
                                      - key: page
                                        value: '1'
                                        description: >-
                                          Int [optional]. Permite definir la
                                          página de los resultados encontrados
                                          según la cantidad de los resultados
                                          encontrados. Por defecto el valor es 1
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          Int [optional]. Permite limitar el
                                          número de resultados por página (por
                                          defecto 90)
                                      - key: q
                                        value: text
                                        description: >-
                                          String [optional]. Permite buscar
                                          posibles respuestas de listas masivas a
                                          partir del texto especificado.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 404,
                                      "description": "Object not found"
                                    }
                                  ]
                        id: 1214b31f-e253-42a7-930f-1185cee851ae
                        description: >-
                          Representan información complementaria del ticket,
                          relevante según el contexto.
                    id: 8cd230d4-1b33-40e4-ab09-166a4b6ddde0
                    description: >-
                      Representan información complementaria del ticket,
                      relevante según el contexto.
                  - name: AppConfiguration
                    item:
                      - name: AppConfiguration
                        item:
                          - name: Get App Element
                            id: 62e36e14-936e-451c-95a8-a34e37aa4964
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/app-element/{{app_element_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - app-element
                                  - '{{app_element_id}}'
                              description: >-
                                **Request Params**


                                | Campo | Tipo | Descripción |

                                | --- | --- | --- |

                                | app_element_id | String | \[requerido\] ID del
                                elemento de aplicación que se desea consultar. |


                                Este endpoint permite **obtener el detalle de un
                                elemento de aplicación** a partir de su ID,
                                siempre que el elemento exista y no se encuentre
                                en la papelera.
                            response:
                              - id: 83d12473-e76c-40d2-930d-034808bf3831
                                name: Get App Element OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/app-element/{{app_element_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - app-element
                                      - '{{app_element_id}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "id": "693fdefe6feb6a72250a8a2a",
                                      "filter_configuration": {
                                          "service_filter_configuration": {
                                              "included": true,
                                              "services": [
                                                  {
                                                      "visible_name": "Residuos Domésticos (Punto Limpio)",
                                                      "id": "68ffbe5983696bee0f0ed091",
                                                      "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/692deab4b5063296451042.png"
                                                  }
                                              ]
                                          }
                                      },
                                      "view_types": [
                                          "mine_poi"
                                      ],
                                      "required_strong_identification": false,
                                      "required_registered_resident": false,
                                      "map_layers": [
                                          {
                                              "id": "691eea93a879b737810c4147",
                                              "jurisdiction_element": "5c9b55579650e67d42985e80",
                                              "name": "Punto Limpio fijo",
                                              "internal_name": "buildings:punto_limpio_fijo_poi"
                                          }
                                      ]
                                  }
                          - name: App Configurations
                            id: dd294f77-7834-40a2-b8e8-6ae9576005c8
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/appconfiguration?jurisdiction_id=org.alcobendas&type=cityapp
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - appconfiguration
                                query:
                                  - key: jurisdiction_id
                                    value: org.alcobendas
                                    description: >-
                                      String (Required)  Identificador único de
                                      la jurisdicción para la cual se solicita
                                      la configuración.
                                  - key: type
                                    value: cityapp
                                    description: >-
                                      String (Required)  Tipo de aplicación
                                      cliente que solicita la configuración.
                              description: >-
                                **Description**


                                Obtiene la configuración de una aplicación para
                                una jurisdicción específica. Devuelve
                                información de apariencia, elementos de la app,
                                canales habilitados y onboarding.
                            response:
                              - id: 74eaa549-bb94-4cce-8ebf-e498aad9f908
                                name: Response OK App Configurations
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfiguration?jurisdiction_id=org.alcobendas&type=cityapp
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfiguration
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                      - key: type
                                        value: cityapp
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 4107d608-6c4d-4ef8-b6ae-01774576bcf3
                                name: Application Not Found App Configurations
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfiguration?jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfiguration
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "Application was not found"
                                      }
                                  ]
                              - id: 7d6a50a9-fa75-4bf0-a588-000a6538cae1
                                name: Jurisdiction Null App Configurations
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfiguration?type=cityapp
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfiguration
                                    query:
                                      - key: type
                                        value: cityapp
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "Parameter \"jurisdiction_id\" of value \"NULL\" violated a constraint \"Este valor no debería ser nulo.\""
                                      }
                                  ]
                              - id: c825bbf9-4bcc-4799-b9c6-740793494bfa
                                name: Not Fount Jurisdiction App Configurations
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfiguration?jurisdiction_id=org.alcoben&type=cityapp
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfiguration
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcoben
                                      - key: type
                                        value: cityapp
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "jurisdiction_id was not found"
                                      }
                                  ]
                          - name: App Configuration Common
                            id: 58844c05-f9f8-4b7e-b868-637ff6b4d7c4
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/appconfigurationcommon?jurisdiction_id=org.alcobendas&type=cityapp&ignore_channels=true
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - appconfigurationcommon
                                query:
                                  - key: jurisdiction_id
                                    value: org.alcobendas
                                    description: >-
                                      String (Required) ID de la jurisdicción.
                                      Se usa para buscar la jurisdicción
                                      (excluyendo las que están en papelera de
                                      reciclaje)
                                  - key: type
                                    value: cityapp
                                    description: >-
                                      String (Required) Tipo de aplicación a
                                      buscar
                                  - key: ignore_channels
                                    value: 'true'
                                    description: >-
                                      Boolean (Optional) Si es true o no hay
                                      usuario autenticado, usa el grupo de
                                      serialización app_configuration_channels.
                                      Si es false y hay usuario, usa
                                      app_configuration_user_channels
                              description: >-
                                **Description**


                                Obtiene la configuración común de una aplicación
                                para una jurisdicción específica. Devuelve un
                                objeto Configuration serializado con el grupo
                                app_configuration_common_open010.
                            response:
                              - id: cc6e47b9-aa62-4473-856f-b6c33f8bb985
                                name: Response OK App Configuration Common
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfigurationcommon?jurisdiction_id=org.alcobendas&type=cityapp&ignore_channels=true
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfigurationcommon
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                      - key: type
                                        value: cityapp
                                      - key: ignore_channels
                                        value: 'true'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "app_icon_url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/670655313d52a7.55147536.png",
                                      "app_elements": [
                                          {
                                              "type": "indoor_and_requests_card",
                                              "channels": [],
                                              "id": "68ca5872249a70d7a10b20c3",
                                              "name": "Punto Limpio",
                                              "preset": true,
                                              "required": true,
                                              "button_type": ""
                                          }
                                      ],
                                      "default_language": "es",
                                      "font_color": "#ffffff",
                                      "headboard": {
                                          "images": [
                                              {
                                                  "image_metadata": {
                                                      "type": "URL",
                                                      "extra_data": {
                                                          "url": "tel:+3434545645"
                                                      }
                                                  },
                                                  "image_url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/67862a00974c58.00278616.png"
                                              }
                                          ],
                                          "type": "images"
                                      },
                                      "login_background_url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/68e38acdc58910.05431754.jpg",
                                      "login_logo_url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706550cc629b4.21210239.png",
                                      "main_color": "#006629",
                                      "managers_icon_url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/appConfiguration/6706551b8a5748.76715535.jpg",
                                      "name": "Alcobendas",
                                      "type": "cityapp"
                                  }
                              - id: 1ba735fd-ba41-4aa6-84b0-29a7d115fac3
                                name: Not Found App Configuration Common
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfigurationcommon?type=cityapp&ignore_channels=true
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfigurationcommon
                                    query:
                                      - key: type
                                        value: cityapp
                                      - key: ignore_channels
                                        value: 'true'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "Object not found"
                                      }
                                  ]
                              - id: 64f82f68-8f56-498c-913e-a75872dc50b8
                                name: >-
                                  Jurisdiction Not Found App Configuration
                                  Common
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfigurationcommon?jurisdiction_id=org.alcobe&type=cityapp&ignore_channels=true
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfigurationcommon
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobe
                                      - key: type
                                        value: cityapp
                                      - key: ignore_channels
                                        value: 'true'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "jurisdiction_id was not found"
                                      }
                                  ]
                              - id: d6bc2e98-cbd0-4d16-a450-0993a8c08569
                                name: Application Not Found App Configuration Common
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/appconfigurationcommon?jurisdiction_id=org.alcobendas&ignore_channels=true
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - appconfigurationcommon
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                      - key: ignore_channels
                                        value: 'true'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "Application was not found"
                                      }
                                  ]
                          - name: Get External Service
                            id: 71ceca6a-b361-4eb6-b7ad-04b4802696d3
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/external-service/{{external_service_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - external-service
                                  - '{{external_service_id}}'
                              description: >-
                                **Description**


                                Obtiene los datos de un servicio externo
                                (ExternalService) específico por su ID. Los
                                servicios externos representan integraciones con
                                SDKs y servicios de terceros utilizados por la
                                aplicación.


                                **Request Param**


                                | **Campo** | Tipo | **Descripcion** |

                                | --- | --- | --- |

                                | external_service_id | String | ID único del
                                ExternalService (MongoDB ObjectId) |
                            response:
                              - id: 84b393de-f8d7-42b8-9bea-eac67f138d01
                                name: Response OK Get External Service
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/external-service/6893757b270bdcf65a056f76
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - external-service
                                      - 6893757b270bdcf65a056f76
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "botConfiguration": {
                                          "id": "6893757b270bdcf65a056f77",
                                          "hostUrl": "http://localhost:5200/",
                                          "position": {
                                              "right": "1rem",
                                              "bottom": "1rem"
                                          }
                                      },
                                      "id": "6893757b270bdcf65a056f76",
                                      "name": "Test",
                                      "provider": "bot_web",
                                      "type": "bot_web"
                                  }
                              - id: b79fed67-1e24-4457-84dd-9082466c8e56
                                name: Not Found Get External Service
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/external-service/{{external_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - external-service
                                      - '{{external_id}}'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "External Service was not found"
                                      }
                                  ]
                        id: 6a647d48-f63b-49e1-a0d1-806affdb9f70
                    id: ef593d2d-2e6b-4427-9c6d-df2837e5e88d
                  - name: Application
                    item:
                      - name: Application
                        item:
                          - name: Get Application
                            id: bb5eec2a-acc7-4b40-9823-ba3865f13b1f
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/applications/{{app_key}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - applications
                                  - '{{app_key}}'
                              description: >-
                                **Description**


                                Obtiene los detalles de una aplicación
                                específica a través de su app_key. Solo devuelve
                                aplicaciones que estén activas y no estén en la
                                papelera de reciclaje.}


                                **Request Param**


                                | Campo | **Tipo** | Description |

                                | --- | --- | --- |

                                | app_key | int | Clave única numérica de la
                                aplicación |
                            response:
                              - id: 2b85cc90-6ede-475f-910e-c75255861649
                                name: Response OK Get Application
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/applications/{{app_key}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - applications
                                      - '{{app_key}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "default_jurisdiction_id": "org.alcobendas",
                                      "active": true,
                                      "logo": "http://www.radmas.com/clientes/ayto/img/logo.png",
                                      "name": "Alcobendas_CanaryBOT"
                                  }
                              - id: 48cfca18-a202-4c04-9b8b-2d8916a4e33d
                                name: App Key Does Not Exists Get Application
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/applications/{{app_key}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - applications
                                      - '{{app_key}}'
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "app_key does not exist or is not allowed"
                                      }
                                  ]
                        id: 9392a9c5-ead5-4a47-99a9-99d48818987d
                    id: a3df060d-fd6d-4cff-ad4c-115758558b26
                  - name: Channel
                    item:
                      - name: Channel
                        item:
                          - name: List Channel By Category
                            id: 0889caa9-e950-40e0-ac6c-c873e0012543
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/channel/list/category/{{category}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - channel
                                  - list
                                  - category
                                  - '{{category}}'
                              description: >-
                                **Description**


                                Lista los canales (Channels) que son externos y
                                auto-asignables filtrados por una categoría
                                específica.


                                **Request Param**


                                | Campo | **Tipo** | **Description** |

                                | --- | --- | --- |

                                | category | String | Categoría del canal a
                                filtrar |
                            response:
                              - id: 3e97b17a-96af-4059-a456-81b1f426fa23
                                name: Response OK List Channel By Category
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/channel/list/category/{{category}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - channel
                                      - list
                                      - category
                                      - '{{category}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "category": "interest",
                                          "description": "Beta Tester - Icono",
                                          "external": true,
                                          "external_name": "pruebatester",
                                          "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/channel_icons/670ccd7f9c833279214538.png",
                                          "id": "5cc6a0b08d7a6a0b0b8b45ad",
                                          "jurisdiction_elements": [
                                              {
                                                  "id": "5c9b557e9650e67d42985e8d",
                                                  "name": "Ciudad BBVA",
                                                  "is_main": false
                                              }
                                          ],
                                          "jurisdictions": [
                                              {
                                                  "id": "5be19ecb9a35c4850a8b45b1",
                                                  "jurisdiction_id": "bbva",
                                                  "name": "BBVA",
                                                  "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/5be1bf65a4a58.png"
                                              }
                                          ],
                                          "name": "Beta Tester",
                                          "order": 3,
                                          "self_assignable": true,
                                          "visible": true
                                      }
                                  ]
                              - id: 73c02971-effe-4c04-86ee-6a9d2ac7aef5
                                name: Category Not Found List Channel By Category
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/channel/list/category/{{category}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - channel
                                      - list
                                      - category
                                      - '{{category}}'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "Category mock was not found"
                                      }
                                  ]
                        id: 251b1302-ec5d-4e6c-a75b-f9dfcf28afff
                    id: c50be08f-5cc8-463e-938b-a9b7e28f6fef
                  - name: Jurisdiction
                    item:
                      - name: Jurisdiction
                        item:
                          - name: Jurisdictions List
                            id: 03b596a2-0eda-456e-b3a5-5d394800449a
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdictions?app_Key=1234555&lat=40.35497&long=-3.54806
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdictions
                                query:
                                  - key: app_Key
                                    value: '1234555'
                                    description: >-
                                      Int. [optional]. (1234555). Permite limita
                                      el resultado a las jurisdicciones
                                      asociadas a esa aplicación (incluida su
                                      jurisdicción por defecto). Si no se envía,
                                      no aplica filtro por aplicación.
                                  - key: lat
                                    value: '40.35497'
                                    description: >-
                                      Float. [optional]. (40.35497). Permite
                                      estableces coordenadas geográficas
                                      (latitud) para un filtrado más exacto de
                                      los resultados (formato decimal)
                                  - key: long
                                    value: '-3.54806'
                                    description: >-
                                      Float. [optional]. (-3.54806).  Permite
                                      estableces coordenadas geográficas
                                      (longitud) para un filtrado más exacto de
                                      los resultados (formato decimal)
                              description: >-
                                El endpoint devuelve un listado de
                                jurisdicciones. Opcionalmente, acepta los query
                                params `lat` y `long` para priorizar los
                                resultados por proximidad al punto indicado, y
                                `app_key` para limitar el listado a las
                                jurisdicciones asociadas a esa aplicación
                            response:
                              - id: dd96815a-1123-49e9-a9e5-f186b306e021
                                name: Response OK Jurisdictions List with results
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions?appKey=1&lat=40.35497&long=-3.54806
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions
                                    query:
                                      - key: appKey
                                        value: '1'
                                        description: >-
                                          [optional]. Permite identificar la
                                          validez de la solicitud controlando que
                                          el dispositivo que cierra sesión se
                                          encuentre dentro de los autorizados
                                      - key: lat
                                        value: '40.35497'
                                        description: >-
                                          [optional]. Permite estableces
                                          coordenadas geográficas (latitud) para
                                          un filtrado más exacto de los resultados
                                          (formato decimal)
                                      - key: long
                                        value: '-3.54806'
                                        description: >-
                                          [optional]. Permite estableces
                                          coordenadas geográficas (longitud) para
                                          un filtrado más exacto de los resultados
                                          (formato decimal)
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "only_registered_users": true,
                                      "max_upload_files": 5,
                                      "automatic_typology": false,
                                      "map_layers": [
                                          {
                                              "backend": "OWS",
                                              "endpoint": "https://gis.mejoratuciudad.org/geoserver",
                                              "id": "5d9ee7d1de2efef4018b4582",
                                              "is_default": false,
                                              "color": "#000000",
                                              "internal_name": "zones_prod:Riv_Barrios",
                                              "name": "Barrios",
                                              "description": "Barrios",
                                              "preset": false,
                                              "public": true,
                                              "tags": [],
                                              "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                              "type": "ADMINISTRATIVE"
                                          }
                                      ],
                                      "accepted_id_documents": [],
                                      "buttons": [],
                                      "channels": [
                                          {
                                              "external": false,
                                              "id": "5e2f5cb6e8833f960e8b457a",
                                              "name": "Gestores Avisos"
                                          }
                                      ],
                                      "company_emails": [
                                          "comentarios.rivas@mejoratuciudad.org"
                                      ],
                                      "geo_bound": [
                                          {
                                              "lat": 40.411038646944,
                                              "long": -3.4700083830236
                                          }
                                      ],
                                      "geo_perimeter": [
                                          {
                                              "lat": 40.327458668663,
                                              "long": -3.4704022742792
                                          }
                                      ],
                                      "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/59f193abe5de8.png",
                                      "id": "59bf9b3e76e456ac018b4569",
                                      "jurisdiction_elements": [
                                          {
                                              "map_layers": [
                                                  {
                                                      "backend": "OWS",
                                                      "endpoint": "https://gis.mejoratuciudad.org/geoserver",
                                                      "id": "5d9ee7d1de2efef4018b4582",
                                                      "is_default": false,
                                                      "color": "#000000",
                                                      "internal_name": "zones_prod:Riv_Barrios",
                                                      "name": "Barrios",
                                                      "description": "Barrios",
                                                      "preset": false,
                                                      "public": true,
                                                      "tags": [],
                                                      "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                                      "type": "ADMINISTRATIVE"
                                                  }
                                              ],
                                              "extent": [
                                                  -3.5850750207097,
                                                  40.287119395069,
                                                  -3.4700083830236,
                                                  40.411038646944
                                              ],
                                              "id": "5c9b557c9650e67d42985e8b",
                                              "name": "es.madrid",
                                              "type": "city",
                                              "visible_name": "es.madrid",
                                              "is_main": true
                                          }
                                      ],
                                      "jurisdiction_id": "es.madrid",
                                      "key_name": "Rivas-Vaciamadrid",
                                      "locales": [
                                          "es"
                                      ],
                                      "name": "Madrid",
                                      "origin_devices": [
                                          {
                                              "id": "5850de88e22c6d9f51b17715",
                                              "options": []
                                          }
                                      ],
                                      "lat": 40.35497,
                                      "long": -3.54806,
                                      "tags": [
                                          {
                                              "name": "Poda",
                                              "color": "#000000",
                                              "id": "Poda"
                                          }
                                      ],
                                      "third_emails": [
                                          "comentarios.rivas@mejoratuciudad.org"
                                      ],
                                      "timezone": "Europe/Madrid",
                                      "typologies": [
                                          {
                                              "id": "59bfadfe566d72b8018b45c6",
                                              "color": "#ebc113",
                                              "description_legend": "Ej: farola fundida",
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png",
                                              "location_type": "geolocation",
                                              "order": 1,
                                              "public": true,
                                              "typology_description": "Tengo un problema con un elemento en la calle",
                                              "visible_name": "Aviso",
                                              "with_authorized_users": false,
                                              "with_description": true,
                                              "with_files": true,
                                              "with_geolocation_data": true,
                                              "with_medias": true,
                                              "with_temporality_data": true
                                          }
                                      ],
                                      "typology_nodes": [
                                          {
                                              "id": "59bfaf21d2bf39b8018b457d",
                                              "color": "#f1c40f",
                                              "order": 1,
                                              "typology": {
                                                  "id": "59bfadfe566d72b8018b45c6",
                                                  "color": "#ebc113",
                                                  "description_legend": "Ej: farola fundida",
                                                  "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c682a4b209.png",
                                                  "location_type": "geolocation",
                                                  "order": 1,
                                                  "public": true,
                                                  "typology_description": "Tengo un problema con un elemento en la calle",
                                                  "visible_name": "Aviso",
                                                  "with_authorized_users": false,
                                                  "with_description": true,
                                                  "with_files": true,
                                                  "with_geolocation_data": true,
                                                  "with_medias": true,
                                                  "with_temporality_data": true
                                              },
                                              "visible_name": "Nuevo"
                                          }
                                      ],
                                      "user_info": [
                                          {
                                              "available": true,
                                              "field": "first_name"
                                          }
                                      ],
                                      "modules": {
                                          "requests": true,
                                          "requests_process": true,
                                          "requests_comments": true,
                                          "requests_worknotes": true,
                                          "requests_reiterations": true,
                                          "requests_complaints": true,
                                          "user_evaluation": true,
                                          "service_survey": false,
                                          "alerts": false,
                                          "inventory": false,
                                          "dashboard": true,
                                          "news": false,
                                          "backoffice_admin": true,
                                          "app_configuration": true,
                                          "notifications": true,
                                          "planned_requests": true,
                                          "planning": false,
                                          "users": false,
                                          "predetermined_response": true,
                                          "predetermined_response_external_source": true,
                                          "company_enquiry": false,
                                          "layer": false,
                                          "jurisdiction_element": false,
                                          "webhook": false,
                                          "user_guide": true,
                                          "worklog": false
                                      },
                                      "app_urls": {
                                          "web_url": "https://mapa.mejoratuciudad.org",
                                          "google_play_manager": "https://play.google.com/store/apps/details?id=com.radmas.iycp.production&hl=es",
                                          "google_play_citizens": "https://play.google.com/store/apps/details?id=com.radmas.iyc.rivas",
                                          "app_store": "https://itunes.apple.com/us/app/rivas-ciudad/id1353778065?l=es&ls=1&mt=8"
                                      }
                                  }
                              - id: b5f4ecc5-b36b-468c-a02f-04d36382d07d
                                name: Response OK Jurisdictions List
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: c08c719d-9e3e-42ee-a8d4-edb41822cbe0
                                name: Bad Request Lat Long Nos Provided.
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions?appKey=1&lat=0&long=0
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions
                                    query:
                                      - key: appKey
                                        value: '1'
                                        description: >-
                                          [optional]. Permite identificar la
                                          validez de la solicitud controlando que
                                          el dispositivo que cierra sesión se
                                          encuentre dentro de los autorizados
                                        uuid: 0e8b3b18-82b7-4845-9f38-bdb6145c69bf
                                      - key: lat
                                        value: '0'
                                        description: >-
                                          [optional]. Permite estableces
                                          coordenadas geográficas (latitud) para
                                          un filtrado más exacto de los resultados
                                          (formato decimal)
                                        uuid: 272eaafb-7d9d-4bcc-aa96-66997447cbe7
                                      - key: long
                                        value: '0'
                                        description: >-
                                          [optional]. Permite estableces
                                          coordenadas geográficas (longitud) para
                                          un filtrado más exacto de los resultados
                                          (formato decimal)
                                        uuid: a1917f55-5901-48f7-970b-6130915a40e6
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 400,
                                    "message": "latitude or longitude not provided"
                                  }
                          - name: Jurisdiction Detail
                            id: 472986fb-6af6-4aea-8a07-0b6e89d92b96
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdictions/{{jurisdiction_id}}?app_key=1234555
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdictions
                                  - '{{jurisdiction_id}}'
                                query:
                                  - key: app_key
                                    value: '1234555'
                                    description: >-
                                      Int. [optional]. (1234555) Permite
                                      restringir la operación a la aplicación
                                      indicada. Si no se envía, la acción se
                                      ejecuta sin filtro ni validación por
                                      aplicación.
                              description: >-
                                **Request Params**


                                | Campo | Tipo | Descripción |

                                | --- | --- | --- |

                                | Jurisdiction_id | String | \[requerido\] 
                                <br>jurisdiction_id de mongo de la jurisdicción
                                de la cual se desean obtener los elementos de
                                jurisdicción (ejemplo org.alcobendas). |


                                Este endpoint permite obtener los detalles de
                                una jurisdicción específica, donde
                                `{jurisdiction_id}` es el jurisdiction_id de
                                mongo de la jurisdicción. Además de los datos
                                básicos de la jurisdicción, el endpoint carga su
                                tipología y sus nodos tipológicos. Opcional
                                `app_key` para validar el contexto de aplicación
                                y autorizar la adhesión; si es inválido/no
                                permitido o el usuario no puede unirse, **400**.
                            response:
                              - id: 6bd5eb06-639e-44e6-9485-ee8878de3fd3
                                name: Jurisdiction Detail OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions/{{jurisdiction_id}}?app_key=1234555
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions
                                      - '{{jurisdiction_id}}'
                                    query:
                                      - key: app_key
                                        value: '1234555'
                                        description: >-
                                          [optional]. Permite restringir la
                                          operación a la aplicación indicada. Si
                                          no se envía, la acción se ejecuta sin
                                          filtro ni validación por aplicación.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 698eb1f4-d043-4ae8-b451-88efea81160e
                                name: Response Error Not Fount
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction/{{jurisdiction_id}}/jurisdiction-elements?type=all
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction
                                      - '{{jurisdiction_id}}'
                                      - jurisdiction-elements
                                    query:
                                      - key: type
                                        value: all
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "jurisdiction_id was not found"
                                      }
                                  ]
                          - name: Get Jurisdictions Within
                            id: 0613b0c3-d515-4988-9140-5bf61562fe2e
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdictions_within?app_key=1234555&lng=-3.6370633&lat=40.5367233
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdictions_within
                                query:
                                  - key: app_key
                                    value: '1234555'
                                    description: >-
                                      int (Required) Clave identificadora de la
                                      aplicación
                                  - key: lng
                                    value: '-3.6370633'
                                    description: >-
                                      float (Required) Latitud de la ubicación a
                                      consultar
                                  - key: lat
                                    value: '40.5367233'
                                    description: >-
                                      float (Required) Longitud de la ubicación
                                      a consultar
                              description: >-
                                **Description**


                                Obtiene la jurisdicción que contiene las
                                coordenadas geográficas especificadas, dentro
                                del contexto de una aplicación. El endpoint
                                verifica si las coordenadas están dentro del
                                geo-perímetro de alguna de las jurisdicciones  

                                asociadas a la aplicación y, si encuentra una
                                coincidencia, une al usuario autenticado a esa
                                jurisdicción.
                            response:
                              - id: 1cb85b6f-2572-47fb-87a2-9ac4e129633f
                                name: Response Ok Get Jurisdictions Within
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions_within?app_key=1234555&lng=-3.6370633&lat=40.5367233
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions_within
                                    query:
                                      - key: app_key
                                        value: '1234555'
                                      - key: lng
                                        value: '-3.6370633'
                                      - key: lat
                                        value: '40.5367233'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "id": "561e04ed6aa918910c8b4592",
                                      "jurisdiction_id": "org.alcobendas",
                                      "name": "Alcobendas",
                                      "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction/561fa3ea4282d.png"
                                  }
                              - id: 9a052e95-9c22-43ba-8236-7af12934e59e
                                name: App_key Not Exist Get Jurisdictions Within
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions_within?app_key=12345557&lng=-3.6370633&lat=40.5367233
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions_within
                                    query:
                                      - key: app_key
                                        value: '12345557'
                                      - key: lng
                                        value: '-3.6370633'
                                      - key: lat
                                        value: '40.5367233'
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "app_key does not exist or is not allowed"
                                      }
                                  ]
                              - id: 3a112cf0-702f-4b39-93d7-7f5007e8c97f
                                name: App_key Not Provided Get Jurisdictions Within
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions_within?lng=-3.6370633&lat=40.5367233
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions_within
                                    query:
                                      - key: lng
                                        value: '-3.6370633'
                                      - key: lat
                                        value: '40.5367233'
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "app_key was not provided"
                                      }
                                  ]
                              - id: 4538700a-d84d-4630-9b24-364f2dc3131c
                                name: >-
                                  Lat Or long Not Provided Get Jurisdictions
                                  Within
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdictions_within?app_key=1234555&lat=40.5367233
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdictions_within
                                    query:
                                      - key: app_key
                                        value: '1234555'
                                      - key: lat
                                        value: '40.5367233'
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "latitude or longitude not provided"
                                      }
                                  ]
                          - name: Jurisdiction Element By Lat And Lng
                            id: 374aba8b-cab4-4910-9729-784977d04996
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat=40.4378271&lng=-3.6795367
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdiction
                                  - '{{jurisdiction_id}}'
                                  - jurisdiction-element
                                query:
                                  - key: lat
                                    value: '40.4378271'
                                    description: >-
                                      Float [required] Latitud de la ubicación a
                                      consultar
                                  - key: lng
                                    value: '-3.6795367'
                                    description: >-
                                      Float [required] Longitud de la ubicación
                                      a consulta
                              description: >-
                                **Description**


                                Este endpoint busca y devuelve los elementos de
                                jurisdicción (JurisdictionElement) que contienen
                                las coordenadas geográficas especificadas.
                                Utiliza GeoServer para determinar qué elemento
                                de jurisdicción corresponde a una ubicación
                                específica basándose en el perímetro configurado
                                (perimeterMapLayer) de la jurisdicción.


                                **Request Param**


                                | Campo | **Tipo** | **Description** |

                                | --- | --- | --- |

                                | jurisdiction_id | String | \[required\] Es el
                                jurisdiction_id de la jurisdicción (ej:
                                es.madrid) |
                            response:
                              - id: 6943ba49-be78-4aa7-86db-9a2d94a4156d
                                name: >-
                                  Response OK Get Jurisdiction Element By Lat
                                  And Lng
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat=40.4378271&lng=-3.6795367
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction
                                      - '{{jurisdiction_id}}'
                                      - jurisdiction-element
                                    query:
                                      - key: lat
                                        value: '40.4378271'
                                      - key: lng
                                        value: '-3.6795367'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "map_layers": [
                                          {
                                              "backend": "OWS",
                                              "endpoint": "https://gis.mejoratuciudad.org/geoserver",
                                              "id": "694939992c7a8694cb0b9a07",
                                              "is_default": false,
                                              "color": "#000000",
                                              "internal_name": "buildings:custom_zones_fixtures",
                                              "name": "FixtureZones",
                                              "description": "Test Layer 5",
                                              "preset": false,
                                              "public": true,
                                              "tags": [],
                                              "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                              "type": "WORK"
                                          }
                                      ],
                                      "extent": [],
                                      "geoserver_perimeter_id": "custom_zones_fixtures.13",
                                      "guided_module": false,
                                      "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/icon_mock.png",
                                      "id": "694939982c7a8694cb0b98b9",
                                      "name": "madrid",
                                      "type": "city",
                                      "visible_name": "Madrid",
                                      "is_main": false
                                  }
                              - id: 02dd232f-9e52-4b39-9230-ae9de49e30be
                                name: >-
                                  Lat or Lng Not Provider Get Jurisdiction
                                  Element By Lat And Lng
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction/{{jurisdiction_id}}/jurisdiction-element
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction
                                      - '{{jurisdiction_id}}'
                                      - jurisdiction-element
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "latitude or longitude not provided"
                                      }
                                  ]
                              - id: 2ee77375-6be0-484e-a70d-fa6746954e83
                                name: >-
                                  Jurisdiction Not Found Get Jurisdiction
                                  Element By Lat And Lng
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction/{{jurisdiction_id}}/jurisdiction-element?lat=40.4378271&lng=-3.6795367
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction
                                      - '{{jurisdiction_id}}'
                                      - jurisdiction-element
                                    query:
                                      - key: lat
                                        value: '40.4378271'
                                      - key: lng
                                        value: '-3.6795367'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "jurisdiction_id was not found"
                                      }
                                  ]
                        id: a1ed76d9-3de4-43b6-94d5-1ab6205ac0f0
                        description: ' '
                      - name: JurisdictionOpen010User
                        item:
                          - name: Get Preferences
                            id: 1c6290ab-20dd-4621-b9a0-26534f675320
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdiction_preferences/{{jurisdiction_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdiction_preferences
                                  - '{{jurisdiction_id}}'
                              description: >-
                                **Request param**


                                | Campo | Tipo | Descripción |

                                | --- | --- | --- |

                                | jurisdiction_id | String | \[requerido\] 
                                <br>jurisdiction_id de mongo de la jurisdicción
                                de la cual se desean consultar. |


                                Este endpoint permite **obtener las preferencias
                                de configuración Open010 asociadas a una
                                jurisdicción**, identificada por su
                                `jurisdiction_id`, retornando los parámetros y
                                ajustes definidos para dicha jurisdicción que
                                controlan el comportamiento y personalización
                                del sistema.
                            response:
                              - id: 9a28e20b-6c8a-44c2-8f52-ec25d39026e2
                                name: Get Preferences OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction_preferences/{{jurisdiction_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction_preferences
                                      - '{{jurisdiction_id}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "id": "68829cebed7baf72480a1533",
                                      "widget_buttons_ids": []
                                  }
                          - name: Update Preferences
                            id: 11b55038-6d35-4c6c-940b-ac64a8a07f99
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: PUT
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "widget_buttons_ids": [
                                          "6945724342852b3792050bca",
                                          "6945724342852b3792050bcb"
                                      ]
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdiction_preferences/{{jurisdiction_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdiction_preferences
                                  - '{{jurisdiction_id}}'
                              description: >-
                                Este endpoint permite a un usuario autenticado
                                guardar y ordenar sus botones de widgets
                                favoritos dentro de una jurisdicción específica.


                                En términos simples: el usuario personaliza qué
                                acciones rápidas (widgets) quiere ver en su
                                interfaz de la app, y en qué orden aparecen.


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | jurisdiction_id | String | \[required\].
                                Identificador interno de la jurisdicción |

                                | widget_buttons_ids | Array | \[optional\].
                                Lista ordenada de IDs de botones de widgets del
                                usuario. Por defecto: \[\] |
                            response:
                              - id: b388f03b-22c2-49bd-95d2-f0dd0162e121
                                name: Update Preferences OK
                                originalRequest:
                                  method: PUT
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "widget_buttons_ids": [
                                              "6945724342852b3792050bca",
                                              "6945724342852b3792050bcb"
                                          ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction_preferences/{{jurisdiction_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction_preferences
                                      - '{{jurisdiction_id}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "id": "6945713ea3a8f68c2b011555",
                                    "widget_buttons_ids": [
                                      "69457145a3a8f68c2b01155a",
                                      "69457145a3a8f68c2b01155b"
                                    ]
                                  }
                              - id: a6bc4f32-89fd-4a6d-8612-4663a9a88039
                                name: Update Preferences user not authenticated
                                originalRequest:
                                  method: PUT
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "widget_buttons_ids": [
                                              "6945724342852b3792050bca",
                                              "6945724342852b3792050bcb"
                                          ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction_preferences/{{jurisdiction_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction_preferences
                                      - '{{jurisdiction_id}}'
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 403,
                                      "description": "Access Denied"
                                    }
                                  ]
                              - id: 505ff7ca-0c5b-49b5-9730-fa98bc65fbc0
                                name: >-
                                  Update Preferences user not related with
                                  jurisdiction
                                originalRequest:
                                  method: PUT
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "widget_buttons_ids": [
                                              "6945724342852b3792050bca",
                                              "6945724342852b3792050bcb"
                                          ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/jurisdiction_preferences/{{jurisdiction_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - jurisdiction_preferences
                                      - '{{jurisdiction_id}}'
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 403,
                                      "description": "Jurisdiction By User No Exist"
                                    }
                                  ]
                        id: 8cb9efff-7582-4fdf-a438-e8f47c7d9391
                    id: 7e855aac-d14c-493d-8f40-202276524618
                    description: >-
                      El presente apartado permite la gestión de los proyectos
                      que son la columna vertebral del sistema y en donde se
                      clasifican los grupos, servicios, tipologias, etc.
                      Usualmente son la representación de ciudades aunque
                      también pueden incluirse edificios según sea el caso.
                  - name: JurisdictionElement
                    item:
                      - name: List JurisdictionElements By Service
                        id: 9c3ca99c-0ed9-4e5e-9ea1-446813df7690
                        protocolProfileBehavior:
                          disableBodyPruning: true
                        request:
                          auth:
                            type: noauth
                          method: GET
                          header: []
                          url:
                            raw: >-
                              https://api-pgics.sevilla.org/jurisdiction-element/service/{{service_id}}
                            host:
                              - https://api-pgics.sevilla.org
                            path:
                              - jurisdiction-element
                              - service
                              - '{{service_id}}'
                          description: >-
                            Este endpoint obtiene la lista de IDs de elementos
                            de jurisdicción (JurisdictionElements) donde el
                            usuario autenticado tiene permiso de creación
                            (CREATE) para un servicio específico.


                            | **Campo** | **Tipo** | **Descripción** |

                            | --- | --- | --- |

                            | service_id | String | \[required\]. ID del
                            servicio para el cual se quieren obtener los
                            elementos de jurisdicción |
                        response:
                          - id: bce07f60-e120-4d7c-91e1-700ac62efc2e
                            name: List JurisdictionElements By Service OK
                            originalRequest:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdiction-element/service/{{service_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdiction-element
                                  - service
                                  - '{{service_id}}'
                            status: OK
                            code: 200
                            _postman_previewlanguage: json
                            header:
                              - key: Content-Type
                                name: Content-Type
                                value: application/json
                                description: ''
                                type: text
                            cookie: []
                            body: |-
                              [
                                "5c9b55579650e67d42985e80",
                                "5c9b55579650e67d42985e81",
                                "5c9b55579650e67d42985e82"
                              ]
                          - id: 1eab203a-3ec2-45d8-955b-5f02b4f64c3b
                            name: >-
                              List JurisdictionElements By Service without
                              results
                            originalRequest:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdiction-element/service/{{service_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdiction-element
                                  - service
                                  - '{{service_id}}'
                            status: OK
                            code: 200
                            _postman_previewlanguage: Text
                            cookie: []
                            body: '[]'
                          - id: fa5fef35-b9bb-4ddc-9ebc-0089f22eb770
                            name: List JurisdictionElements By Service Not Found
                            originalRequest:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/jurisdiction-element/service/{{service_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - jurisdiction-element
                                  - service
                                  - '{{service_id}}'
                            status: Not Found
                            code: 404
                            _postman_previewlanguage: json
                            header:
                              - key: Content-Type
                                name: Content-Type
                                value: application/json
                                description: ''
                                type: text
                            cookie: []
                            body: |-
                              [
                                {
                                  "code": 404,
                                  "description": "Object not found"
                                }
                              ]
                    id: bfa383a7-6be2-46b7-b772-13b821104444
                  - name: LegalTerms
                    item:
                      - name: LegalTerms
                        item:
                          - name: Get LegalTerms
                            id: d3832d0e-9848-421a-b442-8fd8190e850e
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header:
                                - key: X-CLIENT-ID
                                  value: >-
                                    52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4
                                  description: >-
                                    [required]. String -  Se debe ingresar el
                                    valor estipulado por el tipo de cliente. En
                                    este caso los User son open010_client
                                  type: text
                              url:
                                raw: https://api-pgics.sevilla.org/legal-terms
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - legal-terms
                              description: >-
                                Endpoint que permite obtener los términos
                                legales de la plataforma (políticas de
                                privacidad, términos de usi y políticas de
                                cookies).
                            response:
                              - id: 16de9c38-7ba9-4d65-864a-f416b57aac70
                                name: Get LegalTerms OK
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: X-CLIENT-ID
                                      value: >-
                                        52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4
                                      description: >-
                                        [required]. String -  Se debe ingresar
                                        el valor estipulado por el tipo de
                                        cliente. En este caso los User son
                                        open010_client
                                      type: text
                                      uuid: 9f2fff6a-8770-4e44-8482-02a606ebb611
                                  url:
                                    raw: mtc.vdeveloper.lan/public-api/legal-terms
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - legal-terms
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "legal_text": {
                                          "privacy_policy": "https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=privacy_policy",
                                          "terms_of_use": "https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=terms_of_use",
                                          "cookies_policy": "https://mtc.vdeveloper.lan/public-api/legal-text?legal_terms_id=66ed366137c0c32c020b54ea&legal_policy_type=cookies_policy"
                                      }
                                  }
                              - id: 25aabf0e-0c96-43ba-adfe-797901f800a9
                                name: Get LegalTerms Fail
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: mtc.vdeveloper.lan/public-api/legal-terms
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - legal-terms
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "Client not found"
                                      }
                                  ]
                          - name: Get LegalText
                            id: 67549128-3301-4e2c-84ec-9261d45c7a00
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=privacy_policy
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - legal-text
                                query:
                                  - key: legal_terms_id
                                    value: 694448da04a046a6f5ce5f47
                                    description: >-
                                      [required]. String. El identificador único
                                      del documento de términos legales del cual
                                      se quiere extraer la política específica
                                  - key: legal_policy_type
                                    value: privacy_policy
                                    description: >-
                                      [required]. String. Indica el tipo de
                                      documento legal a obtener. Valores
                                      válidos: privacy_policy, terms_of_use,
                                      accessibility, cookies_policy
                              description: >-
                                El endpoint permite obtener el contenido HTML de
                                un documento legal específico (política de
                                privacidad, términos de uso, accesibilidad o
                                política de cookies) a partir de su
                                identificador. Recibe dos parámetros:
                                legal_terms_id para localizar el conjunto de
                                términos legales en la base de datos, y
                                legal_policy_type para indicar qué tipo de
                                documento dentro de ese conjunto se desea
                                obtener, devolviendo directamente el HTML listo
                                para ser renderizado en una aplicación cliente.
                            response:
                              - id: 097a02b7-6470-41cd-bb71-ef32a9803820
                                name: Get LegalText Privacy Policy
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/legal-text?legal_terms_id=66ed366137c0c32c020b5497&legal_policy_type=privacy_policy
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - legal-text
                                    query:
                                      - key: legal_terms_id
                                        value: 66ed366137c0c32c020b5497
                                        description: >-
                                          [required]. String. El identificador
                                          único del documento de términos legales
                                          del cual se quiere extraer la política
                                          específica
                                      - key: legal_policy_type
                                        value: privacy_policy
                                        description: >-
                                          [required]. String. Indica el tipo de
                                          documento legal a obtener. Valores
                                          válidos: privacy_policy, terms_of_use,
                                          accessibility, cookies_policy
                                status: OK
                                code: 200
                                _postman_previewlanguage: html
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: text/html
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 39defbba-23e8-4729-863b-60f87614ad9a
                                name: Get LegalText Terms of Use
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=terms_of_use
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - legal-text
                                    query:
                                      - key: legal_terms_id
                                        value: 694448da04a046a6f5ce5f47
                                        description: >-
                                          [required]. String. El identificador
                                          único del documento de términos legales
                                          del cual se quiere extraer la política
                                          específica
                                      - key: legal_policy_type
                                        value: terms_of_use
                                        description: >-
                                          [required]. String. Indica el tipo de
                                          documento legal a obtener. Valores
                                          válidos: privacy_policy, terms_of_use,
                                          accessibility, cookies_policy
                                status: OK
                                code: 200
                                _postman_previewlanguage: html
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: text/html
                                    description: ''
                                    type: text
                                cookie: []
                                body: >-
                                  <h1>Términos y Condiciones de Uso</h1>

                                  <p>Bienvenido a nuestra plataforma de
                                  participación ciudadana. Al utilizar este
                                  servicio, acepta los siguientes términos
                                      y condiciones.</p>
                                  <h2>1. Objeto</h2>

                                  <p>Esta plataforma permite a los ciudadanos
                                  comunicar incidencias, sugerencias y
                                  propuestas a la administración pública.

                                  </p>

                                  <h2>2. Registro y cuenta de usuario</h2>

                                  <p>Para utilizar los servicios es necesario
                                  registrarse proporcionando información veraz y
                                  actualizada. El usuario es
                                      responsable de mantener la confidencialidad de sus credenciales.</p>
                                  <h2>3. Uso aceptable</h2>

                                  <p>El usuario se compromete a:</p>

                                  <ul>
                                      <li>No publicar contenido ofensivo, difamatorio o ilegal</li>
                                      <li>Proporcionar información veraz en las comunicaciones</li>
                                      <li>Respetar los derechos de otros usuarios</li>
                                      <li>No utilizar la plataforma para fines comerciales no autorizados</li>
                                  </ul>

                                  <h2>4. Propiedad intelectual</h2>

                                  <p>Todos los contenidos de la plataforma están
                                  protegidos por derechos de propiedad
                                  intelectual.</p>
                              - id: 6a3cf2b1-b182-4a42-8746-d4e5bcb90a19
                                name: Get LegalText Accesibility
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=accesibility
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - legal-text
                                    query:
                                      - key: legal_terms_id
                                        value: 694448da04a046a6f5ce5f47
                                        description: >-
                                          [required]. String. El identificador
                                          único del documento de términos legales
                                          del cual se quiere extraer la política
                                          específica
                                      - key: legal_policy_type
                                        value: accesibility
                                        description: >-
                                          [required]. String. Indica el tipo de
                                          documento legal a obtener. Valores
                                          válidos: privacy_policy, terms_of_use,
                                          accessibility, cookies_policy
                                status: OK
                                code: 200
                                _postman_previewlanguage: html
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: text/html
                                    description: ''
                                    type: text
                                cookie: []
                                body: >-
                                  <h1>Declaración de Accesibilidad</h1>

                                  <p>Esta plataforma está comprometida con
                                  garantizar la accesibilidad digital conforme
                                  al Real Decreto 1112/2018.</p>

                                  <h2>Situación de cumplimiento</h2>

                                  <p>Este sitio web es parcialmente conforme con
                                  el nivel AA de las Pautas WCAG 2.1 debido a
                                  las excepciones que se
                                      indican a continuación.</p>
                                  <h2>Contenido no accesible</h2>

                                  <p>El contenido que se recoge a continuación
                                  no es accesible por los siguientes
                                  motivos:</p>

                                  <ul>
                                      <li>Algunos documentos PDF antiguos pueden no ser totalmente accesibles</li>
                                      <li>Ciertos vídeos pueden carecer de subtítulos</li>
                                  </ul>

                                  <h2>Preparación de la declaración</h2>

                                  <p>Esta declaración fue preparada el 1 de
                                  enero de 2024 y se revisa periódicamente.</p>

                                  <h2>Contacto</h2>

                                  <p>Puede comunicar cualquier problema de
                                  accesibilidad a través de los canales de
                                  contacto habilitados.</p>
                              - id: 96822496-8900-497b-92e2-1d09ce9cbd3d
                                name: Get LegalText Cookies Policy
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/legal-text?legal_terms_id=694448da04a046a6f5ce5f47&legal_policy_type=terms_of_use
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - legal-text
                                    query:
                                      - key: legal_terms_id
                                        value: 694448da04a046a6f5ce5f47
                                        description: >-
                                          [required]. String. El identificador
                                          único del documento de términos legales
                                          del cual se quiere extraer la política
                                          específica
                                      - key: legal_policy_type
                                        value: terms_of_use
                                        description: >-
                                          [required]. String. Indica el tipo de
                                          documento legal a obtener. Valores
                                          válidos: privacy_policy, terms_of_use,
                                          accessibility, cookies_policy
                                status: OK
                                code: 200
                                _postman_previewlanguage: html
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: text/html
                                    description: ''
                                    type: text
                                cookie: []
                                body: >-
                                  <h1>Política de Cookies</h1>

                                  <p>Esta plataforma utiliza cookies para
                                  mejorar la experiencia del usuario y ofrecer
                                  servicios personalizados.</p>

                                  <h2>¿Qué son las cookies?</h2>

                                  <p>Las cookies son pequeños archivos de texto
                                  que se almacenan en su dispositivo cuando
                                  visita un sitio web. Permiten
                                      recordar sus preferencias y mejorar la navegación.</p>
                                  <h2>Tipos de cookies que utilizamos</h2>

                                  <ul>
                                      <li><strong>Cookies técnicas:</strong> Necesarias para el funcionamiento básico del sitio</li>
                                      <li><strong>Cookies de sesión:</strong> Permiten mantener su sesión activa mientras navega</li>
                                      <li><strong>Cookies analíticas:</strong> Nos ayudan a entender cómo interactúan los usuarios con la plataforma</li>
                                      <li><strong>Cookies de preferencias:</strong> Recuerdan sus ajustes y configuraciones</li>
                                  </ul>

                                  <h2>Gestión de cookies</h2>

                                  <p>Puede configurar su navegador para rechazar
                                  cookies o para que le avise cuando se envíen.
                                  Sin embargo, algunas
                                      funcionalidades del sitio pueden no estar disponibles si desactiva las cookies.</p>
                                  <h2>Más información</h2>

                                  <p>Para más información sobre el uso de
                                  cookies, puede contactar con nosotros a través
                                  de los canales habilitados.</p>
                              - id: 0b6c228c-9fd6-4060-a12d-b1c5bb84cf62
                                name: Get LegalText without Legal Policy Type
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/legal-text?legal_terms_id=694448da04a046a6f5ce5f47
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - legal-text
                                    query:
                                      - key: legal_terms_id
                                        value: 694448da04a046a6f5ce5f47
                                        description: >-
                                          [required]. String. El identificador
                                          único del documento de términos legales
                                          del cual se quiere extraer la política
                                          específica
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "Client not found"
                                      }
                                  ]
                        id: 824484d7-a802-42e7-b14c-c71cdc7282f4
                    id: 3a70a238-b63a-40d8-8982-fb183adc8875
                    description: >-
                      Conjunto de endpoints que permiten observar los términos
                      legales del entorno según el tipo de cliente (api pública
                      o privada).
                  - name: Location
                    item:
                      - name: Location
                        item:
                          - name: List Location Additional Data
                            id: 00c44fe2-e936-4697-a18a-9778c1d2a2b2
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/location-additional-data?jurisdiction_element_id=5c9b55579650e67d42985e80&formatted_address=GCH2+3F
                                  Madrid,
                                  Spain&lat=40.55079132675021&lng=-3.6387169361114506
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - location-additional-data
                                query:
                                  - key: jurisdiction_element_id
                                    value: 5c9b55579650e67d42985e80
                                    description: >-
                                      String. [required]. ID de mongo de la
                                      jurisdicción sobre el cual se consulta
                                      información adicional
                                  - key: formatted_address
                                    value: GCH2+3F Madrid, Spain
                                    description: >-
                                      String. [optional] (GCH2+3F Madrid,
                                      Spain). Dirección del JurisdictionElement.
                                  - key: lat
                                    value: '40.55079132675021'
                                    description: >-
                                      Float. [optional] (40.55079132675021).
                                      Permite estableces coordenadas geográficas
                                      (latitud) para un filtrado más exacto de
                                      los resultados (formato decimal).
                                  - key: lng
                                    value: '-3.6387169361114506'
                                    description: >-
                                      Float. [optional] (-3.6387169361114506).
                                      Permite estableces coordenadas geográficas
                                      (longitud) para un filtrado más exacto de
                                      los resultados (formato decimal).
                              description: >-
                                El endpoint proporciona información adicional
                                sobre una ubicación específica dentro de una
                                jurisdicción determinada. A partir del
                                **identificador del elemento jurisdiccional
                                (**`jurisdiction_element_id`**) y/o coordenadas
                                geográficas (**`lat`**,** **`lng`**), el
                                servicio devuelve detalles relevantes sobre la
                                zona consultada.
                            response:
                              - id: 7079ce88-c6df-4410-946b-91070410a71b
                                name: Response OK List Location Additional Data
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/location-additional-data?jurisdiction_element_id=5c9b55579650e67d42985e80&formatted_address=GCH2+3F
                                      Madrid,
                                      Spain&lat=40.55079132675021&lng=-3.6387169361114506
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - location-additional-data
                                    query:
                                      - key: jurisdiction_element_id
                                        value: 5c9b55579650e67d42985e80
                                      - key: formatted_address
                                        value: GCH2+3F Madrid, Spain
                                      - key: lat
                                        value: '40.55079132675021'
                                      - key: lng
                                        value: '-3.6387169361114506'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "formatted_address": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                      "geometry": null,
                                      "data": [
                                          {
                                              "question": {
                                                  "type": "text",
                                                  "active": true,
                                                  "code": "distrito_T",
                                                  "help_text": "",
                                                  "help_text_translations": {
                                                      "es": "",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "id": "5de929ca0007544c098b4578",
                                                  "question": "Distrito",
                                                  "question_translations": {
                                                      "es": "Distrito",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "tags": [
                                                      {
                                                          "name": "distrito",
                                                          "color": "#000000",
                                                          "id": "distrito"
                                                      }
                                                  ]
                                              },
                                              "value": null,
                                              "editable": true,
                                              "response_attribute": "Distrito",
                                              "required": false,
                                              "hidden_in_form": false,
                                              "hidden_in_detail": false,
                                              "visibility": "public"
                                          }
                                      ],
                                      "location": {
                                          "lat": 40.550750699999988,
                                          "lng": -3.6389062000000001
                                      }
                                  }
                              - id: ea6ee58d-ec6b-477f-8a37-67e7a31cc90a
                                name: >-
                                  Response OK File Jurisdiction Element List
                                  Location Additional Data
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/location-additional-data?jurisdiction_element_id=5c9b55579650e67d42985e80
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - location-additional-data
                                    query:
                                      - key: jurisdiction_element_id
                                        value: 5c9b55579650e67d42985e80
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "formatted_address": null,
                                      "geometry": null,
                                      "data": [
                                          {
                                              "question": {
                                                  "type": "text",
                                                  "active": true,
                                                  "code": "distrito_T",
                                                  "help_text": "",
                                                  "help_text_translations": {
                                                      "es": "",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "id": "5de929ca0007544c098b4578",
                                                  "question": "Distrito",
                                                  "question_translations": {
                                                      "es": "Distrito",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "tags": [
                                                      {
                                                          "name": "distrito",
                                                          "color": "#000000",
                                                          "id": "distrito"
                                                      },
                                                      {
                                                          "name": "localización",
                                                          "color": "#000000",
                                                          "id": "localización"
                                                      }
                                                  ]
                                              },
                                              "value": null,
                                              "editable": true,
                                              "response_attribute": "Distrito",
                                              "required": false,
                                              "hidden_in_form": false,
                                              "hidden_in_detail": false,
                                              "visibility": "public"
                                          },
                                          {
                                              "question": {
                                                  "type": "text",
                                                  "active": true,
                                                  "code": "barrio_es_t",
                                                  "help_text": "",
                                                  "help_text_translations": {
                                                      "es": "",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "id": "5ea6af91eaa11bba058b45d5",
                                                  "question": "Barrio",
                                                  "question_translations": {
                                                      "es": "Barrio",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "tags": [
                                                      {
                                                          "name": "barrio",
                                                          "color": "#000000",
                                                          "id": "barrio"
                                                      },
                                                      {
                                                          "name": "localización",
                                                          "color": "#000000",
                                                          "id": "localización"
                                                      }
                                                  ]
                                              },
                                              "value": null,
                                              "editable": true,
                                              "response_attribute": "Barrio",
                                              "required": false,
                                              "hidden_in_form": false,
                                              "hidden_in_detail": false,
                                              "visibility": "public"
                                          }
                                      ]
                                  }
                              - id: 26958bfa-aa51-4241-9957-a3b7ab448dcb
                                name: >-
                                  Error Jurisdiction Element Not Valid List
                                  Location Additional Data
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/location-additional-data?jurisdiction_element_id=5c9b555796
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - location-additional-data
                                    query:
                                      - key: jurisdiction_element_id
                                        value: 5c9b555796
                                        uuid: 83e48b4e-fb2c-49b4-923d-b712d2dd8dd0
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 404,
                                      "error_msg": "Object not found"
                                  }
                          - name: Validate Position
                            id: 05a20933-a4fe-4770-bc72-61e704a37b3e
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/service/{{service_id}}/validate-position?jurisdiction_element_id=5c9b55579650e67d42985e80&lat=40.53682576543375&long=-3.6547014648509477&level=3&projection=4326
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - service
                                  - '{{service_id}}'
                                  - validate-position
                                query:
                                  - key: jurisdiction_element_id
                                    value: 5c9b55579650e67d42985e80
                                    description: >-
                                      String. [required]. ID del elemento
                                      jurisdicción contra el cual se valida la
                                      posición
                                  - key: lat
                                    value: '40.53682576543375'
                                    description: >-
                                      Float. [required]. Latitud del punto a
                                      validar
                                  - key: long
                                    value: '-3.6547014648509477'
                                    description: >-
                                      Float. [required]. Longitud del punto a
                                      validar
                                  - key: level
                                    value: '3'
                                    description: >-
                                      Int. [optional]. Nivel de profundidad del
                                      elemento jurisdiccional para validar la
                                      posición
                                  - key: projection
                                    value: '4326'
                                    description: >-
                                      Int. [optional]. Sistema de referencia
                                      espacial (SRID) utilizado para las
                                      coordenadas
                              description: >-
                                **Request param**


                                | **Campo** | Tipo | **Descripción** |

                                | --- | --- | --- |

                                | service_id | String | \[required\] ID del
                                servicio del que se quiere validar la posición.
                                |


                                Este endpoint valida si una **posición** es
                                válida para un **servicio**, comprobando su
                                relación con un elemento jurisdiccional y
                                verifica si la ubicación cumple las reglas
                                necesarias para permitir la **creación de
                                solicitudes** asociadas a ese servicio.
                            response:
                              - id: 8e08bf9c-26a1-405d-9af4-ef2ab0a97bd8
                                name: Validate Position OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/service/{{service_id}}/validate-position?jurisdiction_element_id=5c9b55579650e67d42985e80&lat=40.53682576543375&long=-3.6547014648509477&level=3&projection=4326
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - service
                                      - '{{service_id}}'
                                      - validate-position
                                    query:
                                      - key: jurisdiction_element_id
                                        value: 5c9b55579650e67d42985e80
                                      - key: lat
                                        value: '40.53682576543375'
                                      - key: long
                                        value: '-3.6547014648509477'
                                      - key: level
                                        value: '3'
                                      - key: projection
                                        value: '4326'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "valid": true
                                  }
                          - name: Get Nearest Geofences
                            id: 83e908d1-2946-43f0-aa3e-e2a366af93e8
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/nearest-geofences?lat=40.5371361&lng=-3.6370715&limit=10
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - nearest-geofences
                                query:
                                  - key: lat
                                    value: '40.5371361'
                                    description: >-
                                      Float. [optional]. Latitud desde la cual
                                      se buscan las geocercas cercanas.
                                  - key: lng
                                    value: '-3.6370715'
                                    description: >-
                                      Float. [optional]. Longitud desde la cual
                                      se buscan las geocercas cercanas.
                                  - key: limit
                                    value: '10'
                                    description: >-
                                      Int. [optional]. Número máximo de
                                      geocercas a retornar. Default: 20.
                              description: >-
                                **Requiere autenticación**


                                Este endpoint devuelve las geocercas más
                                cercanas a la ubicación del usuario, utilizando
                                las coordenadas de latitud y longitud
                                proporcionadas. Permite limitar la cantidad de
                                resultados.


                                **Nota**: Requiere un usuario autenticado para
                                funcionar.
                            response:
                              - id: 9a8f268f-6030-4d4d-ba51-8db68114bbed
                                name: Get Nearest Geofences OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/nearest-geofences?lat=40.5371361&lng=-3.6370715&limit=10
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - nearest-geofences
                                    query:
                                      - key: lat
                                        value: '40.5371361'
                                      - key: lng
                                        value: '-3.6370715'
                                      - key: limit
                                        value: '10'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                              - id: f1a2b3c4-d5e6-7890-abcd-ef1234567890
                                name: Get Nearest Geofences Unauthorized
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/nearest-geofences?lat=40.5371361&lng=-3.6370715&limit=10
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - nearest-geofences
                                    query:
                                      - key: lat
                                        value: '40.5371361'
                                      - key: lng
                                        value: '-3.6370715'
                                      - key: limit
                                        value: '10'
                                status: Unauthorized
                                code: 401
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 401,
                                      "error_msg": "Unauthorized"
                                  }
                          - name: Get POI Detail
                            id: 859640fe-a024-422a-a8e9-e9d67d3cfaf7
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header:
                                - key: Accept
                                  value: application/json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - poi-detail
                                query:
                                  - key: poi_id
                                    value: ciudadbbva_PL0_paths.1
                                    description: >-
                                      [required]. String. Identificador único
                                      del POI en GeoServer. Formato típico:
                                      layerName.numericId
                                  - key: layer_id
                                    value: 5d91db6311235f7f2b8b45a2
                                    description: >-
                                      [optional]. String. ID del MapLayer
                                      (MongoDB ObjectId). Si no se proporciona,
                                      se busca automáticamente por el poi_id
                                  - key: projection
                                    value: '4326'
                                    description: >-
                                      [optional]. String. Sistema de proyección
                                      EPSG para las coordenadas de respuesta
                                      (ej: 3857, 4326)
                              description: >-
                                Este endpoint obtiene el detalle completo de un
                                Punto de Interés (POI) específico, incluyendo su
                                geometría, propiedades y datos adicionales
                                configurados en el QuestionList asociado al
                                MapLayer.
                            response:
                              - id: d00a2b2d-144a-4aea-a5a1-7cfca273cb75
                                name: Get POI Detail with Layer Id
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Accept
                                      value: application/json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - poi-detail
                                    query:
                                      - key: poi_id
                                        value: ciudadbbva_PL0_paths.1
                                        description: >-
                                          [required]. String. Identificador único
                                          del POI en GeoServer. Formato típico:
                                          layerName.numericId
                                      - key: layer_id
                                        value: 5d91db6311235f7f2b8b45a2
                                        description: >-
                                          [optional]. String. ID del MapLayer
                                          (MongoDB ObjectId). Si no se
                                          proporciona, se busca automáticamente
                                          por el poi_id
                                      - key: projection
                                        value: '4326'
                                        description: >-
                                          [optional]. String. Sistema de
                                          proyección EPSG para las coordenadas de
                                          respuesta (ej: 3857, 4326)
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "type": "Feature",
                                    "id": "ciudadbbva_PL0_paths.1",
                                    "geometry": {
                                      "type": "Point",
                                      "coordinates": [
                                        -3.6892,
                                        40.4168
                                      ]
                                    },
                                    "properties": {
                                      "description": "Área de tránsito principal",
                                      "short_description": "Área principal",
                                      "type": "transito",
                                      "layer_name": "buildings:ciudadbbva_PL0_paths",
                                      "layer_id": "5d91db6311235f7f2b8b45a2",
                                      "level": 0,
                                      "favorite": false
                                    },
                                    "additional_data": [
                                      {
                                        "key": "capacidad",
                                        "label": "Capacidad máxima",
                                        "value": 500
                                      },
                                      {
                                        "key": "horario",
                                        "label": "Horario de apertura",
                                        "value": "08:00 - 22:00"
                                      }
                                    ]
                                  }
                              - id: d79a0854-f3b6-4d0e-9589-cca201f0ae2a
                                name: Get POI Detail without Layer Id
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Accept
                                      value: application/json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - poi-detail
                                    query:
                                      - key: poi_id
                                        value: ciudadbbva_PL0_paths.1
                                        description: >-
                                          [required]. String. Identificador único
                                          del POI en GeoServer. Formato típico:
                                          layerName.numericId
                                      - key: layer_id
                                        value: 5d91db6311235f7f2b8b45a2
                                        description: >-
                                          [optional]. String. ID del MapLayer
                                          (MongoDB ObjectId). Si no se
                                          proporciona, se busca automáticamente
                                          por el poi_id
                                      - key: projection
                                        value: '4326'
                                        description: >-
                                          [optional]. String. Sistema de
                                          proyección EPSG para las coordenadas de
                                          respuesta (ej: 3857, 4326)
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "type": "Feature",
                                    "id": "ciudadbbva_PL0_paths.1",
                                    "geometry": {
                                      "type": "Point",
                                      "coordinates": [
                                        -3.6892,
                                        40.4168
                                      ]
                                    },
                                    "properties": {
                                      "description": "Área de tránsito principal",
                                      "short_description": "Área principal",
                                      "type": "transito",
                                      "layer_name": "buildings:ciudadbbva_PL0_paths",
                                      "layer_id": "5d91db6311235f7f2b8b45a2",
                                      "level": 0,
                                      "favorite": false
                                    },
                                    "additional_data": [
                                      {
                                        "key": "capacidad",
                                        "label": "Capacidad máxima",
                                        "value": 500
                                      },
                                      {
                                        "key": "horario",
                                        "label": "Horario de apertura",
                                        "value": "08:00 - 22:00"
                                      }
                                    ]
                                  }
                              - id: 03f9952f-b1f9-4276-95cd-c2c1dbfdb7ab
                                name: Get POI Detail Not Found
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Accept
                                      value: application/json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - poi-detail
                                    query:
                                      - key: poi_id
                                        value: ciudadbbva_PL0_paths.1
                                        description: >-
                                          [required]. String. Identificador único
                                          del POI en GeoServer. Formato típico:
                                          layerName.numericId
                                      - key: layer_id
                                        value: 5d91db6311235f7f2b8b45a2
                                        description: >-
                                          [optional]. String. ID del MapLayer
                                          (MongoDB ObjectId). Si no se
                                          proporciona, se busca automáticamente
                                          por el poi_id
                                      - key: projection
                                        value: '4326'
                                        description: >-
                                          [optional]. String. Sistema de
                                          proyección EPSG para las coordenadas de
                                          respuesta (ej: 3857, 4326)
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 404,
                                      "description": "POI not found"
                                    }
                                  ]
                              - id: c878cf96-12cf-4d80-9a18-db5c2266b48e
                                name: Get POI Detail Layer not found
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Accept
                                      value: application/json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/poi-detail?poi_id=ciudadbbva_PL0_paths.1&layer_id=5d91db6311235f7f2b8b45a2&projection=4326
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - poi-detail
                                    query:
                                      - key: poi_id
                                        value: ciudadbbva_PL0_paths.1
                                        description: >-
                                          [required]. String. Identificador único
                                          del POI en GeoServer. Formato típico:
                                          layerName.numericId
                                      - key: layer_id
                                        value: 5d91db6311235f7f2b8b45a2
                                        description: >-
                                          [optional]. String. ID del MapLayer
                                          (MongoDB ObjectId). Si no se
                                          proporciona, se busca automáticamente
                                          por el poi_id
                                      - key: projection
                                        value: '4326'
                                        description: >-
                                          [optional]. String. Sistema de
                                          proyección EPSG para las coordenadas de
                                          respuesta (ej: 3857, 4326)
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 404,
                                      "description": "No MapLayers found"
                                    }
                                  ]
                          - name: Search Points From Layer
                            id: 19ded828-17ee-4580-8f61-8a6b65f988df
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header:
                                - key: Accept
                                  value: application/json
                                - key: Authorization
                                  value: Bearer
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/search-point-layers.json?jurisdiction_element_id=5c9b557e9650e67d42985e8d&layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]=5d91db6311235f7f2b8b45a2&level=0&lat=40.4168&lng=-3.6892&q=sala&limit=20&highlighted_poi=true&only_favorites=false
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - search-point-layers.json
                                query:
                                  - key: jurisdiction_element_id
                                    value: 5c9b557e9650e67d42985e8d
                                    description: >-
                                      [required]. String. ID del elemento de
                                      jurisdicción (MongoDB ObjectId)
                                  - key: layer_names[]
                                    value: buildings:ciudadbbva_PL0_paths
                                    description: >-
                                      [optional]. Array. Nombres internos de las
                                      capas a consultar. Ej:
                                      layer_names[]=buildings:poi_layer1
                                  - key: layer_ids[]
                                    value: 5d91db6311235f7f2b8b45a2
                                    description: >-
                                      [optional]. Array. IDs de los MapLayers
                                      (MongoDB ObjectIds)
                                  - key: level
                                    value: '0'
                                    description: >-
                                      [optional]. Integer. Nivel/planta del
                                      edificio (0, 1, 2...)
                                  - key: lat
                                    value: '40.4168'
                                    description: >-
                                      [optional]. Float. Latitud para ordenar
                                      por proximidad
                                  - key: lng
                                    value: '-3.6892'
                                    description: >-
                                      [optional]. Float. Longitud para ordenar
                                      por proximidad
                                  - key: q
                                    value: sala
                                    description: >-
                                      [optional]. String. Texto de búsqueda para
                                      filtrar POIs por nombre/descripción
                                  - key: limit
                                    value: '20'
                                    description: >-
                                      [optional]. Integer.  Número máximo de
                                      resultados
                                  - key: highlighted_poi
                                    value: 'true'
                                    description: >-
                                      [optional]. Boolean. Filtrar solo POIs
                                      destacados
                                  - key: only_favorites
                                    value: 'false'
                                    description: >-
                                      [optional]. Boolean. Filtrar solo POIs
                                      marcados como favoritos (requiere
                                      autenticación)
                              description: >-
                                Este endpoint busca y lista Puntos de Interés
                                (POIs) en una o varias capas del mapa,
                                permitiendo filtrar por ubicación geográfica,
                                texto de búsqueda, nivel (planta), y otros
                                criterios. Es el endpoint principal para obtener
                                listados de POIs en la aplicación.
                            response:
                              - id: 7f162f8b-71bb-475b-8be7-220f5f98fccd
                                name: Search Points From Layer OK
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Accept
                                      value: application/json
                                    - key: Authorization
                                      value: Bearer
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/search-point-layers.json?jurisdiction_element_id=5c9b557e9650e67d42985e8d&layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]=5d91db6311235f7f2b8b45a2&level=0&lat=40.4168&lng=-3.6892&q=sala&limit=20&highlighted_poi=true&only_favorites=false
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - search-point-layers.json
                                    query:
                                      - key: jurisdiction_element_id
                                        value: 5c9b557e9650e67d42985e8d
                                        description: >-
                                          [required]. String. ID del elemento de
                                          jurisdicción (MongoDB ObjectId)
                                      - key: layer_names[]
                                        value: buildings:ciudadbbva_PL0_paths
                                        description: >-
                                          [optional]. Array. Nombres internos de
                                          las capas a consultar. Ej:
                                          layer_names[]=buildings:poi_layer1
                                      - key: layer_ids[]
                                        value: 5d91db6311235f7f2b8b45a2
                                        description: >-
                                          [optional]. Array. IDs de los MapLayers
                                          (MongoDB ObjectIds)
                                      - key: level
                                        value: '0'
                                        description: >-
                                          [optional]. Integer. Nivel/planta del
                                          edificio (0, 1, 2...)
                                      - key: lat
                                        value: '40.4168'
                                        description: >-
                                          [optional]. Float. Latitud para ordenar
                                          por proximidad
                                      - key: lng
                                        value: '-3.6892'
                                        description: >-
                                          [optional]. Float. Longitud para ordenar
                                          por proximidad
                                      - key: q
                                        value: sala
                                        description: >-
                                          [optional]. String. Texto de búsqueda
                                          para filtrar POIs por nombre/descripción
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          [optional]. Integer.  Número máximo de
                                          resultados
                                      - key: highlighted_poi
                                        value: 'true'
                                        description: >-
                                          [optional]. Boolean. Filtrar solo POIs
                                          destacados
                                      - key: only_favorites
                                        value: 'false'
                                        description: >-
                                          [optional]. Boolean. Filtrar solo POIs
                                          marcados como favoritos (requiere
                                          autenticación)
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "type": "FeatureCollection",
                                    "features": [
                                      {
                                        "type": "Feature",
                                        "id": "ciudadbbva_PL0_paths.1",
                                        "geometry": {
                                          "type": "Point",
                                          "coordinates": [
                                            -3.6892,
                                            40.4168
                                          ]
                                        },
                                        "properties": {
                                          "description": "Sala de reuniones A",
                                          "short_description": "Sala A",
                                          "type": "meeting_room",
                                          "subtype": "small",
                                          "layer_name": "buildings:ciudadbbva_PL0_paths",
                                          "layer_id": "5d91db6311235f7f2b8b45a2",
                                          "level": 0,
                                          "favorite": false,
                                          "distance": 125.5
                                        }
                                      },
                                      {
                                        "type": "Feature",
                                        "id": "ciudadbbva_PL0_paths.2",
                                        "geometry": {
                                          "type": "Point",
                                          "coordinates": [
                                            -3.6895,
                                            40.417
                                          ]
                                        },
                                        "properties": {
                                          "description": "Cafetería principal",
                                          "short_description": "Cafetería",
                                          "type": "restaurant",
                                          "layer_name": "buildings:ciudadbbva_PL0_paths",
                                          "layer_id": "5d91db6311235f7f2b8b45a2",
                                          "level": 0,
                                          "favorite": true,
                                          "distance": 230.2
                                        }
                                      }
                                    ],
                                    "totalFeatures": 2,
                                    "numberMatched": 2,
                                    "numberReturned": 2
                                  }
                              - id: d58b483c-7b1a-4a39-835b-1de7a67a93f8
                                name: Search Points From Layer Map Layer not found
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Accept
                                      value: application/json
                                    - key: Authorization
                                      value: Bearer
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/search-point-layers.json?jurisdiction_element_id=5c9b557e9650e67d42985e8d&layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]=5d91db6311235f7f2b8b45a2&level=0&lat=40.4168&lng=-3.6892&q=sala&limit=20&highlighted_poi=true&only_favorites=false
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - search-point-layers.json
                                    query:
                                      - key: jurisdiction_element_id
                                        value: 5c9b557e9650e67d42985e8d
                                        description: >-
                                          [required]. String. ID del elemento de
                                          jurisdicción (MongoDB ObjectId)
                                      - key: layer_names[]
                                        value: buildings:ciudadbbva_PL0_paths
                                        description: >-
                                          [optional]. Array. Nombres internos de
                                          las capas a consultar. Ej:
                                          layer_names[]=buildings:poi_layer1
                                      - key: layer_ids[]
                                        value: 5d91db6311235f7f2b8b45a2
                                        description: >-
                                          [optional]. Array. IDs de los MapLayers
                                          (MongoDB ObjectIds)
                                      - key: level
                                        value: '0'
                                        description: >-
                                          [optional]. Integer. Nivel/planta del
                                          edificio (0, 1, 2...)
                                      - key: lat
                                        value: '40.4168'
                                        description: >-
                                          [optional]. Float. Latitud para ordenar
                                          por proximidad
                                      - key: lng
                                        value: '-3.6892'
                                        description: >-
                                          [optional]. Float. Longitud para ordenar
                                          por proximidad
                                      - key: q
                                        value: sala
                                        description: >-
                                          [optional]. String. Texto de búsqueda
                                          para filtrar POIs por nombre/descripción
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          [optional]. Integer.  Número máximo de
                                          resultados
                                      - key: highlighted_poi
                                        value: 'true'
                                        description: >-
                                          [optional]. Boolean. Filtrar solo POIs
                                          destacados
                                      - key: only_favorites
                                        value: 'false'
                                        description: >-
                                          [optional]. Boolean. Filtrar solo POIs
                                          marcados como favoritos (requiere
                                          autenticación)
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 404,
                                      "description": "No Map Layers Found"
                                    }
                                  ]
                              - id: acc742ab-2348-45a6-bb52-97da8bac98ba
                                name: >-
                                  Search Points From Layer Invalid
                                  JurisdictionElement
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Accept
                                      value: application/json
                                    - key: Authorization
                                      value: Bearer
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/search-point-layers.json?layer_names[]=buildings:ciudadbbva_PL0_paths&layer_ids[]=5d91db6311235f7f2b8b45a2&level=0&lat=40.4168&lng=-3.6892&q=sala&limit=20&highlighted_poi=true&only_favorites=false
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - search-point-layers.json
                                    query:
                                      - key: layer_names[]
                                        value: buildings:ciudadbbva_PL0_paths
                                        description: >-
                                          [optional]. Array. Nombres internos de
                                          las capas a consultar. Ej:
                                          layer_names[]=buildings:poi_layer1
                                      - key: layer_ids[]
                                        value: 5d91db6311235f7f2b8b45a2
                                        description: >-
                                          [optional]. Array. IDs de los MapLayers
                                          (MongoDB ObjectIds)
                                      - key: level
                                        value: '0'
                                        description: >-
                                          [optional]. Integer. Nivel/planta del
                                          edificio (0, 1, 2...)
                                      - key: lat
                                        value: '40.4168'
                                        description: >-
                                          [optional]. Float. Latitud para ordenar
                                          por proximidad
                                      - key: lng
                                        value: '-3.6892'
                                        description: >-
                                          [optional]. Float. Longitud para ordenar
                                          por proximidad
                                      - key: q
                                        value: sala
                                        description: >-
                                          [optional]. String. Texto de búsqueda
                                          para filtrar POIs por nombre/descripción
                                      - key: limit
                                        value: '20'
                                        description: >-
                                          [optional]. Integer.  Número máximo de
                                          resultados
                                      - key: highlighted_poi
                                        value: 'true'
                                        description: >-
                                          [optional]. Boolean. Filtrar solo POIs
                                          destacados
                                      - key: only_favorites
                                        value: 'false'
                                        description: >-
                                          [optional]. Boolean. Filtrar solo POIs
                                          marcados como favoritos (requiere
                                          autenticación)
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 400,
                                      "description": "Parameter \"jurisdiction_element_id\" is required"
                                    }
                                  ]
                        id: d0618eae-ac41-4a74-bce2-30e705c9ca2b
                        description: ' '
                    id: e56f8505-aeed-45d7-b06f-637ba873dda6
                    description: ' '
                  - name: Management
                    item:
                      - name: UpdatedVersion
                        item:
                          - name: Get Optional Updates
                            id: 2a7bffb2-52a2-44c0-aa78-3a7e6988b28c
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/management/check_optional_updates
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - management
                                  - check_optional_updates
                              description: >-
                                Este endpoint permite verificar si existen
                                **actualizaciones opcionales disponibles** para
                                la aplicación o cliente que realiza la
                                solicitud.
                            response:
                              - id: ace427e5-6021-4982-b48f-dc5a3b86ffdb
                                name: Get Optional Updates OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/management/check_optional_updates
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - management
                                      - check_optional_updates
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                        id: 04aca461-c1af-4d3b-9e47-9437314e0173
                    id: 69794f36-38f8-43c3-a290-cbeb56ad3c30
                  - name: MapLayer
                    item:
                      - name: MapLayer
                        item:
                          - name: Get MapLayers
                            id: 4c844e44-ee9e-4da8-b3eb-b1f51dd5fdae
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/map-layer/list?geoserver_serialize=true&include_without_level=true&jurisdiction_element_id=5c9b55579650e67d42985e80&level=2&type=request
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - map-layer
                                  - list
                                query:
                                  - key: geoserver_serialize
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Si es true, la respuesta
                                      se serializa con el grupo geoserver.
                                  - key: include_without_level
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Si es true, también se
                                      incluyen capas que no tienen nivel
                                      asignado.
                                  - key: jurisdiction_element_id
                                    value: 5c9b55579650e67d42985e80
                                    description: >-
                                      String. [optional]. ID de mongo de la
                                      jurisdicción sobre el cual se consulta
                                      información adicional
                                  - key: level
                                    value: '2'
                                    description: >-
                                      Int [optional]. Permite definir el nivel
                                      de búsqueda en los escenarios donde fueron
                                      reportados en un edificio que posea varias
                                      capas.
                                  - key: type
                                    value: request
                                    description: >-
                                      String. [optional]. Especifica el tipo de
                                      configuracion personalizada de la
                                      consulta.
                              description: >-
                                Este endpoint devuelve **la lista de capas**
                                asociadas a un elemento de jurisdicción, se
                                utiliza para obtener capas que pertenecen a una
                                jurisdicción específica, permitiendo filtrar.
                            response:
                              - id: c959f585-6aca-46a0-831b-e05a58bb7a55
                                name: Get MapLayers OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/map-layer/list?geoserver_serialize=true&include_without_level=true&jurisdiction_element_id=5c9b55579650e67d42985e80&level=2&type=request
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - map-layer
                                      - list
                                    query:
                                      - key: geoserver_serialize
                                        value: 'true'
                                      - key: include_without_level
                                        value: 'true'
                                      - key: jurisdiction_element_id
                                        value: 5c9b55579650e67d42985e80
                                      - key: level
                                        value: '2'
                                      - key: type
                                        value: request
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                          - name: Get MapLayer Question List
                            id: 9076ef68-c201-4ded-ae2b-28e07f984411
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/map-layer/{{map_layer_id}}/question-list
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - map-layer
                                  - '{{map_layer_id}}'
                                  - question-list
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | map_layer_id | String | \[required\]. ID del
                                map_layer sobre la cual se requiere obtener la
                                lista de preguntas asociadas. |


                                Este endpoint devuelve la **lista de preguntas**
                                asociada a una capa de mapa.
                            response:
                              - id: 40cde4d9-7a65-42ae-9627-22ca3ec2f05e
                                name: Get MapLayer Question List OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/map-layer/{{map_layer_id}}/question-list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - map-layer
                                      - '{{map_layer_id}}'
                                      - question-list
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "nestingLevel": 1,
                                      "requiredVariables": [],
                                      "configurable_questions": [
                                          {
                                              "editable": true,
                                              "hidden_in_detail": false,
                                              "hidden_in_form": false,
                                              "hidden_in_open010_detail": false,
                                              "hidden_in_open010_form": false,
                                              "show_collapsed": false,
                                              "default_collapsed": false,
                                              "question": {
                                                  "type": "text",
                                                  "active": true,
                                                  "code": "horario",
                                                  "help_text": "*   Lunes a viernes: 8:00 - 20:00.  \n*   Sábados, domingos y festivos: 9:00 - 20:00.",
                                                  "help_text_translations": {
                                                      "es": "*   Lunes a viernes: 8:00 - 20:00.  \n*   Sábados, domingos y festivos: 9:00 - 20:00.",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": "",
                                                      "gl": ""
                                                  },
                                                  "id": "691eea114fb8f78005078b39",
                                                  "question": "Horario",
                                                  "question_translations": {
                                                      "es": "Horario",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": "",
                                                      "gl": ""
                                                  },
                                                  "tags": []
                                              },
                                              "required": false,
                                              "default_value": "",
                                              "visibility": "public",
                                              "filterable": false
                                          }
                                      ],
                                      "id": "691eea734fb8f78005078b3b",
                                      "jurisdictions": [
                                          {
                                              "jurisdiction_id": "org.alcobendas",
                                              "name": "Alcobendas",
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                          }
                                      ],
                                      "name": "POI Alcobendas (Punto limpio fijo)",
                                      "tags": [
                                          {
                                              "name": "poi",
                                              "color": "#000000",
                                              "id": "poi"
                                          }
                                      ],
                                      "use_cases": [],
                                      "description": "Punto limpio fijo"
                                  }
                        id: 831ea7f7-1562-4f86-8082-ac3044033a63
                    id: 1daa44bf-966e-48bd-bb6b-84ed643311d3
                  - name: Notification
                    item:
                      - name: Unsubscribe
                        item:
                          - name: Unsubscribe From Email Notification
                            id: b1ba5bb4-6ccb-49c1-b425-5f885c058f74
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "email": "S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=",
                                      "request_id": "539eb901e940f62c788b456a"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/notification/unsubscribe
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - notification
                                  - unsubscribe
                              description: >-
                                Este endpoint permite a un usuario desactivar
                                las notificaciones por correo electrónico para
                                un aviso específico, utilizando su dirección de
                                correo electrónico y el identificador del aviso
                                (request_id).


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | email | String | \[required\]  <br>Email
                                encriptado del usuario al que se quieren
                                desactivar las notificaciones por email |

                                | request_id | String | \[required\]
                                Identificador único del aviso para el que se
                                quieren desactivar las  <br>notificaciones |
                            response:
                              - id: f119d674-13dc-4d54-8628-313303a2eaa3
                                name: Response OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=",
                                          "request_id": "539eb901e940f62c788b456a"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/notification/unsubscribe
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - notification
                                      - unsubscribe
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "message": "You have unsubscribed from email notifications for the request 5000056"
                                  }
                              - id: 72bac7f2-2969-48b1-9522-0284f2cfd21c
                                name: Error Decrypting Email
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "email_fake@example.com",
                                          "request_id": "539eb901e940f62c788b456a"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/notification/unsubscribe
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - notification
                                      - unsubscribe
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "Error decrypting email"
                                      }
                              - id: 444501d8-fa29-4cd3-aa6a-0ec52994f6b3
                                name: Error RequestFollowers Not Found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=",
                                          "request_id": "539eb901e940f62c788b456a"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/notification/unsubscribe
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - notification
                                      - unsubscribe
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "RequestFollowers not found"
                                  }
                              - id: a619f86e-1822-4ab7-a403-753bdd8322e7
                                name: Error Saving RequestFollower
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=",
                                          "request_id": "539eb901e940f62c788b456a"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/notification/unsubscribe
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - notification
                                      - unsubscribe
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "Error saving RequestFollower"
                                      }
                              - id: 8bcc6105-0d99-4a89-bb87-daa7fcc0decd
                                name: Error Flush RequestFollower
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "S8jv7fyhMqqDTRFkccBvN0/G8yf9QZDwkRzPFeJQCJc=",
                                          "request_id": "539eb901e940f62c788b456a"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/notification/unsubscribe
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - notification
                                      - unsubscribe
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "Error saving RequestFollower"
                                      }
                        id: 4fd34ad3-0f93-4162-bfb1-4ca018257a8e
                        description: ' '
                    id: 820d07b5-dc3c-4fa5-97e8-3dd6eb723761
                    description: ' '
                  - name: POI
                    item:
                      - name: PoiRoute
                        item:
                          - name: PoiRoute Detail
                            id: 623b5c6f-6927-45d2-848b-07fd5fd24264
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/poi-route/{{poi_route_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - poi-route
                                  - '{{poi_route_id}}'
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | poi_route_id | String | \[required\] Id de
                                mongo de PoiRoute |


                                Este endpoint permite obtener la información de
                                una ruta de POIs (Puntos de Interés) específica,
                                identificada por su `poi_route_id`. Si la ruta
                                tiene POIs asociados a capas, se recuperan y se
                                añaden a la ruta a través de una consulta a un
                                servicio geoespacial, proporcionando los
                                detalles actualizados de los POIs de la ruta
                                solicitada.
                            response:
                              - id: 3147d802-2b9d-42ed-b0e8-5cdf43dfbd1c
                                name: Respuesta OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/poi-route/68ef4cb43f953a28d8552ce2
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - poi-route
                                      - 68ef4cb43f953a28d8552ce2
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "id": "690388de6a8055eff602ab63",
                                      "pois_by_layer": [],
                                      "name": "dsadsad",
                                      "jurisdiction_element": {
                                          "id": "5c9b55579650e67d42985e80",
                                          "visible_name": "Alcobendas"
                                      },
                                      "description": "dsadsadsaddasd",
                                      "images": [
                                          "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg"
                                      ],
                                      "starting_point": {
                                          "lat": 40.546819487301,
                                          "long": -3.646459174043
                                      },
                                      "estimated_difficulty": "easy"
                                  }
                              - id: 1c20dba9-b896-478c-ac29-73842bd09ae0
                                name: Error Not Found
                                originalRequest:
                                  method: POST
                                  header: []
                                  url:
                                    raw: >-
                                      https://core-pgics.sevilla.org/api/poi-route/68ef4cb43f953aa8d8552ce2
                                    host:
                                      - https://core-pgics.sevilla.org/api
                                    path:
                                      - poi-route
                                      - 68ef4cb43f953aa8d8552ce2
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "Object not found"
                                      }
                                  ]
                          - name: PoiRoute List
                            id: 0ef26415-bb39-4994-8712-79057e40f39f
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/poi-route/list?q=Ruta
                                  12&juridiction_element_ids[]=5c9b55579650e67d42985e81&difficulty[]=easy&min_distance=20.5&max_distance=100&min_duration=20&max_duration=120&page=1&limit=10
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - poi-route
                                  - list
                                query:
                                  - key: q
                                    value: Ruta 12
                                    description: >-
                                      String [optional]. Parámetro de búsqueda
                                      opcional utilizado para filtrar las rutas
                                      de POIs por una palabra clave o frase.
                                  - key: juridiction_element_ids[]
                                    value: 5c9b55579650e67d42985e81
                                    description: >-
                                      Array [optional]. Lista opcional de
                                      identificadores de elementos de
                                      jurisdicción (Mongo ID) que permite
                                      filtrar las rutas de POIs según los
                                      elementos de jurisdicción asociados. S
                                      permiten enviar varios ids de jurisdiction
                                      element separados por ,.
                                  - key: difficulty[]
                                    value: easy
                                    description: >-
                                      Array [optional]. Lista opcional de
                                      niveles de dificultad que permite filtrar
                                      las rutas de POIs según su grado de
                                      dificultad.
                                  - key: min_distance
                                    value: '20.5'
                                    description: >-
                                      Float [optional]. Distancia mínima (en
                                      metros)
                                  - key: max_distance
                                    value: '100'
                                    description: >-
                                      Float [optional]. Distancia máxima (en
                                      metros)
                                  - key: min_duration
                                    value: '20'
                                    description: >-
                                      Float [optional]. Duración mínima (en
                                      minutos)
                                  - key: max_duration
                                    value: '120'
                                    description: >-
                                      Float [optional]. Duración máxima (en
                                      minutos)
                                  - key: page
                                    value: '1'
                                    description: Int [optional]. Página
                                  - key: limit
                                    value: '10'
                                    description: Int [optional]. Resultados por página
                              description: >-
                                Este endpoint permite listar las rutas de POIs
                                (Puntos de Interés) aplicando diversos filtros,
                                como identificadores de elementos de
                                jurisdicción, dificultad, distancia, duración,
                                entre otros. Además, permite realizar búsquedas
                                por palabras clave y paginar los resultados,
                                facilitando la obtención de rutas específicas de
                                acuerdo a los criterios proporcionados.
                            response:
                              - id: ea8462d1-5d6f-4974-bda7-b23d6020a5b6
                                name: Respuesta OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "name": "Ruta Prueba",
                                          "jurisdiction_element": "5c9b55579650e67d42985e81",
                                          "description": "TEST2",
                                          "images": [
                                              "https://s3.eu-west-1.amazonaws.com/static.dev.images.org/undefined/68cda0a4d34a879071.png"
                                          ],
                                          "starting_point": {
                                              "lat": 40.5346163476741,
                                              "lng": -3.6356105327592885
                                          },
                                          "estimated_difficulty": "easy",
                                          "estimated_duration": 20,
                                          "estimated_distance": 300.63,
                                          "pois_by_layer": [
                                              {
                                                  "layer_id": "5d91db6311235f7f2b8b45a2",
                                                  "pois": [
                                                      "Puntos_de_interes.1",
                                                      "Puntos_de_interes.2"
                                                  ]
                                              }
                                          ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://core-pgics.sevilla.org/api/poi-route/list?difficulty[]=easy&min_distance=0.2&max_distance=300.8&min_duration=10&max_duration=20&jurisdiction_element_ids[]=5c9b55579650e67d42985e80&q=Ruta&difficulty[]=hard&page=1&limit=10
                                    host:
                                      - https://core-pgics.sevilla.org/api
                                    path:
                                      - poi-route
                                      - list
                                    query:
                                      - key: difficulty[]
                                        value: easy
                                      - key: min_distance
                                        value: '0.2'
                                      - key: max_distance
                                        value: '300.8'
                                      - key: min_duration
                                        value: '10'
                                      - key: max_duration
                                        value: '20'
                                      - key: jurisdiction_element_ids[]
                                        value: 5c9b55579650e67d42985e80
                                      - key: q
                                        value: Ruta
                                      - key: difficulty[]
                                        value: hard
                                      - key: page
                                        value: '1'
                                      - key: limit
                                        value: '10'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "id": "69021857c741eca1c9044c52",
                                          "pois_by_layer": [],
                                          "name": "dsadasd",
                                          "jurisdiction_element": {
                                              "id": "5c9b55579650e67d42985e80",
                                              "visible_name": "Alcobendas"
                                          },
                                          "description": "dsdasdas",
                                          "images": [
                                              "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69021849ab7019.53062596.jpg"
                                          ],
                                          "starting_point": {
                                              "lat": 40.547983940487,
                                              "long": -3.6435103563539
                                          }
                                      },
                                      {
                                          "id": "690221eaa6d759e3a1088c92",
                                          "pois_by_layer": [],
                                          "name": "dsadasdas",
                                          "jurisdiction_element": {
                                              "id": "5c9b55579650e67d42985e80",
                                              "visible_name": "Alcobendas"
                                          },
                                          "description": "dasdasdas",
                                          "images": [
                                              "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690221d5c97a07.79522579.jpg"
                                          ],
                                          "starting_point": {
                                              "lat": 40.534996442872,
                                              "long": -3.6363975803572
                                          }
                                      },
                                      {
                                          "id": "6902822405139a6f81065a25",
                                          "pois_by_layer": [],
                                          "name": "dsadsadas",
                                          "jurisdiction_element": {
                                              "id": "5c9b55579650e67d42985e80",
                                              "visible_name": "Alcobendas"
                                          },
                                          "description": "dsadsadasdsadsadsa",
                                          "images": [
                                              "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/69028218d63731.69314275.jpg"
                                          ],
                                          "starting_point": {
                                              "lat": 40.53611679952,
                                              "long": -3.6342971602309
                                          }
                                      },
                                      {
                                          "id": "69036e011629cd75330aaaa4",
                                          "pois_by_layer": [],
                                          "name": "sadasdsa",
                                          "jurisdiction_element": {
                                              "id": "5c9b55579650e67d42985e80",
                                              "visible_name": "Alcobendas"
                                          },
                                          "description": "dsadsad",
                                          "images": [],
                                          "starting_point": {
                                              "lat": 40.548798394585,
                                              "long": -3.6431276812872
                                          },
                                          "estimated_difficulty": "easy"
                                      },
                                      {
                                          "id": "6903846719995a489a088074",
                                          "pois_by_layer": [],
                                          "name": "dsadasdas",
                                          "jurisdiction_element": {
                                              "id": "5c9b55579650e67d42985e80",
                                              "visible_name": "Alcobendas"
                                          },
                                          "description": "dsadasdasdas",
                                          "images": [],
                                          "starting_point": {
                                              "lat": 40.543638358867,
                                              "long": -3.6576112688977
                                          },
                                          "estimated_difficulty": "easy"
                                      },
                                      {
                                          "id": "690388de6a8055eff602ab63",
                                          "pois_by_layer": [],
                                          "name": "dsadsad",
                                          "jurisdiction_element": {
                                              "id": "5c9b55579650e67d42985e80",
                                              "visible_name": "Alcobendas"
                                          },
                                          "description": "dsadsadsaddasd",
                                          "images": [
                                              "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/undefined/690388c9766e53.10949981.jpg"
                                          ],
                                          "starting_point": {
                                              "lat": 40.546819487301,
                                              "long": -3.646459174043
                                          },
                                          "estimated_difficulty": "easy"
                                      }
                                  ]
                        id: 52bcb53b-5669-4f19-90aa-7525126ded1b
                    id: f12674a4-867a-47f7-9584-7469401a49c1
                  - name: PoiExtraData
                    item:
                      - name: PoiExtraData
                        item:
                          - name: Shorten Url
                            id: 359a47c2-ab62-4038-9498-064eb4e24767
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26,
                                  alcobendas_poi_aparcapatinetes.27,
                                  alcobendas_poi_aparcapatinetes.28
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - '{{jurisdiction_id}}'
                                  - shorten-url
                                query:
                                  - key: poi_ids
                                    value: >-
                                      alcobendas_poi_aparcapatinetes.26,
                                      alcobendas_poi_aparcapatinetes.27,
                                      alcobendas_poi_aparcapatinetes.28
                                    description: >-
                                      String. [required]. PoiId de Mongo del POI
                                      (Punto de Interés) que se desea consultar.
                                      Este parámetro permite especificar los
                                      POIs para los cuales se generarán las URLs
                                      cortas.
                              description: >-
                                Este endpoint genera una URL corta para un
                                conjunto de identificadores de puntos de interés
                                (poiIds) asociados a una jurisdicción
                                específica. Permite acceder de manera más
                                sencilla a enlaces relacionados con los puntos
                                de interés proporcionados, optimizando la
                                compartición y el acceso rápido.
                            response:
                              - id: f9bf9ab8-2e13-42c6-a974-d95b36523362
                                name: Response OK Shorten Url
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26,
                                      alcobendas_poi_aparcapatinetes.27,
                                      alcobendas_poi_aparcapatinetes.28
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - '{{jurisdiction_id}}'
                                      - shorten-url
                                    query:
                                      - key: poi_ids
                                        value: >-
                                          alcobendas_poi_aparcapatinetes.26,
                                          alcobendas_poi_aparcapatinetes.27,
                                          alcobendas_poi_aparcapatinetes.28
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "items": [
                                          {
                                              "poi_id": "alcobendas_poi_aparcapatinetes.26",
                                              "shortened_url": "https://zeus.mejoratuciudad.org/yourls/5reoe"
                                          },
                                          {
                                              "poi_id": "alcobendas_poi_aparcapatinetes.27",
                                              "shortened_url": "https://zeus.mejoratuciudad.org/yourls/dq8b9"
                                          },
                                          {
                                              "poi_id": "alcobendas_poi_aparcapatinetes.28",
                                              "shortened_url": "https://zeus.mejoratuciudad.org/yourls/fpjfl"
                                          }
                                      ]
                                  }
                              - id: c2f1eb26-1eb7-4025-96f4-f0ca161531d7
                                name: Error Jurisdiction Id Was Not Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/{{jurisdiction_id}}/shorten-url?poi_ids=alcobendas_poi_aparcapatinetes.26,
                                      alcobendas_poi_aparcapatinetes.27,
                                      alcobendas_poi_aparcapatinetes.28
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - '{{jurisdiction_id}}'
                                      - shorten-url
                                    query:
                                      - key: poi_ids
                                        value: >-
                                          alcobendas_poi_aparcapatinetes.26,
                                          alcobendas_poi_aparcapatinetes.27,
                                          alcobendas_poi_aparcapatinetes.28
                                        description: >-
                                          String. [required]. ID del POI que se
                                          quiere consultar.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "message": "jurisdiction was not found"
                                  }
                        id: 25ecae0c-8b58-404a-93fd-78a0e4c49996
                        description: ' '
                    id: b1901d49-c5e3-4e02-849d-7325d2e20b9e
                    description: ' '
                  - name: Release
                    item:
                      - name: Release
                        item:
                          - name: Releases
                            id: 8c1fb55f-3cf3-4997-be29-527d243a2105
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/releases?jurisdiction_ids=org.alcobendas&appType=backoffice&limit=30&page=1
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - releases
                                query:
                                  - key: jurisdiction_ids
                                    value: org.alcobendas
                                    description: >-
                                      String [required]. Permite realizar la
                                      búsqueda utilizando el jurisdiction_id de
                                      una o varias jurisdicciones asociadas, en
                                      caso de enviar múltiples jurisdicciones,
                                      estas deben ser separadas por comas.
                                  - key: appType
                                    value: backoffice
                                    description: >-
                                      String. [optional]. Tipo de aplicación
                                      para filtrar los releases, usado para
                                      encontrar la aplicación asociada.
                                  - key: limit
                                    value: '30'
                                    description: >-
                                      Int [optional]. Permite definir el limite
                                      de cada página de resultados.
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. Permite definir la página
                                      de los resultados encontrados según la
                                      cantidad de los resultados encontrados.
                              description: >-
                                Este endpoint **retorna una lista de Releases**
                                filtrada según los criterios enviados
                                (jurisdicción, tipo de aplicación, paginación),
                                sirve para poder consultar todos los releases
                                disponibles para una aplicación, bajo una
                                jurisdicción específica y con posibilidad de
                                paginar resultados.
                            response:
                              - id: 46685f19-47e4-4c0b-a11b-6716a8ec6c7b
                                name: Releases OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/releases?jurisdiction_ids=org.alcobendas&appType=backoffice&limit=30&page=1
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - releases
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                      - key: appType
                                        value: backoffice
                                      - key: limit
                                        value: '30'
                                      - key: page
                                        value: '1'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "status": "PUBLISHED",
                                          "application_types": [
                                              {
                                                  "id": "5620af276aa91868238b4567",
                                                  "jurisdictions": [
                                                      {
                                                          "id": "561e04ed6aa918910c8b4592",
                                                          "jurisdiction_id": "org.alcobendas",
                                                          "name": "Alcobendas",
                                                          "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                                      }
                                                  ],
                                                  "name": "Alcobendas",
                                                  "type": "cityapp"
                                              }
                                          ],
                                          "author": {
                                              "id": "6925bd2f4bed3bfd7f0ae777",
                                              "first_name": "Silvia",
                                              "last_name": "Reyes",
                                              "avatar": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                          },
                                          "channels": [],
                                          "company": {
                                              "alias": "ADDA OPS",
                                              "id": "607040ae93fba54b048b457a",
                                              "name": "ALC_ADDA_OPS"
                                          },
                                          "description": "Prueba 3 [aqui](https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%252C-grat.aspx \"https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%252C-grat.aspx\")",
                                          "emergency": false,
                                          "end_date": "2025-12-08T09:10:32+00:00",
                                          "files": [],
                                          "geofences": [],
                                          "id": "692ead28feae9d27d30e0a4a",
                                          "images": [
                                              {
                                                  "name": "pRUEBAS_MTC_PRE.jpg",
                                                  "url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ead034bb615.60771455.jpg"
                                              }
                                          ],
                                          "jurisdiction_element": {
                                              "extent": [],
                                              "id": "663550808a8e6f62c10d9e7e",
                                              "name": "Prueba22",
                                              "visible_name": "Prueba02",
                                              "is_main": false,
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction_element/667b22dbd531f074699340.png"
                                          },
                                          "jurisdictions": [
                                              {
                                                  "id": "561e04ed6aa918910c8b4592",
                                                  "jurisdiction_id": "org.alcobendas",
                                                  "name": "Alcobendas",
                                                  "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                              }
                                          ],
                                          "last_editor": {
                                              "id": "6925bd2f4bed3bfd7f0ae777",
                                              "first_name": "Silvia",
                                              "last_name": "Reyes",
                                              "avatar": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                          },
                                          "links": [
                                              {
                                                  "link": "https://www.emtmadrid.es/Noticias/Los-autobuses-de-EMT-y-los-viajes-en-bicimad%2C-grat.aspx",
                                                  "name": "prueba"
                                              }
                                          ],
                                          "name": "PRUEBA COMUNICACION 3",
                                          "notification_mode": {
                                              "email_notification": false,
                                              "push_notification": true,
                                              "web_notification": false
                                          },
                                          "start_date": "2025-12-02T09:09:27+00:00",
                                          "tags": [],
                                          "push_only": false,
                                          "action": [],
                                          "buttons": [],
                                          "backoffice_users": [],
                                          "users": [],
                                          "notify_anonymous_users": false,
                                          "map_layer_ids": []
                                      }
                                  ]
                              - id: 9ac512fe-23ce-4d1c-8c05-afda7d890ad2
                                name: Releases Invalid Jurisdiction
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: https://api-pgics.sevilla.org/releases
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - releases
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 1040,
                                      "error_msg": "Jurisdiction Not found"
                                  }
                          - name: My Releases
                            id: 43400535-dc62-4ecd-9645-da0c5d92a338
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/my-releases?appType=backoffice&jurisdiction_ids=org.alcobendas&limit=30&page=1
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - my-releases
                                query:
                                  - key: appType
                                    value: backoffice
                                    description: >-
                                      String [required]. Tipo de aplicación para
                                      filtrar los releases, usado para encontrar
                                      la aplicación asociada.
                                  - key: jurisdiction_ids
                                    value: org.alcobendas
                                    description: >-
                                      String. [optional]. Permite realizar la
                                      búsqueda utilizando el jurisdiction_id de
                                      una o varias jurisdicciones asociadas, en
                                      caso de enviar múltiples jurisdicciones,
                                      estas deben ser separadas por comas.
                                  - key: limit
                                    value: '30'
                                    description: >-
                                      Int [optional]. Permite definir el limite
                                      de cada página de resultados.
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. Permite definir la página
                                      de los resultados encontrados según la
                                      cantidad de los resultados encontrados.
                              description: >-
                                Este endpoint **retorna una lista paginada de
                                Releases** asociados a un tipo de aplicación
                                específico (`appType`) y filtrados mediante los
                                criterios enviados (como jurisdicción, página,
                                límite de `PublicApiReleaseQueryType`), el
                                endpoint valida la jurisdicción, identifica la
                                aplicación correspondiente y obtiene los
                                Releases.
                            response:
                              - id: 88f545a9-8ae4-4e1f-a9ba-c07f84e66997
                                name: My Releases OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/my-releases?appType=backoffice&jurisdiction_ids=org.alcobendas&limit=30&page=1
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - my-releases
                                    query:
                                      - key: appType
                                        value: backoffice
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                      - key: limit
                                        value: '30'
                                      - key: page
                                        value: '1'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "status": "PUBLISHED",
                                          "lat": 40.3948356,
                                          "lng": -3.6995988,
                                          "address_string": "Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid, Spain",
                                          "application_types": [
                                              {
                                                  "id": "5caf0fc80e9867512f8b458f",
                                                  "jurisdictions": [
                                                      {
                                                          "id": "561e04ed6aa918910c8b4592",
                                                          "jurisdiction_id": "org.alcobendas",
                                                          "name": "Alcobendas",
                                                          "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                                      }
                                                  ],
                                                  "name": "WorkApp Generica",
                                                  "type": "workapp"
                                              }
                                          ],
                                          "author": {
                                              "id": "66369df4d48ec432de0df580",
                                              "avatar": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png",
                                              "first_name": "Carlos",
                                              "last_name": "Ascencio"
                                          },
                                          "channels": [],
                                          "company": {
                                              "alias": "ADDA OPS",
                                              "id": "607040ae93fba54b048b457a",
                                              "name": "ALC_ADDA_OPS"
                                          },
                                          "description": "Prueba de comunicación",
                                          "emergency": false,
                                          "end_date": "2025-12-06T19:52:40+00:00",
                                          "event_end_date": "2025-12-06T19:53:00+00:00",
                                          "event_start_date": "2025-11-30T19:52:58+00:00",
                                          "files": [
                                              {
                                                  "name": "En blanco.pdf",
                                                  "url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/releases/692ca0addc6be7.28141943.pdf"
                                              }
                                          ],
                                          "geofences": [],
                                          "id": "692ca0e68accbac9c30da945",
                                          "images": [
                                              {
                                                  "name": "13.jpg",
                                                  "url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/release/692ca0cff14582.98105484.jpg"
                                              }
                                          ],
                                          "jurisdictions": [
                                              {
                                                  "id": "561e04ed6aa918910c8b4592",
                                                  "jurisdiction_id": "org.alcobendas",
                                                  "name": "Alcobendas",
                                                  "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                              }
                                          ],
                                          "last_editor": {
                                              "id": "66369df4d48ec432de0df580",
                                              "avatar": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/avatars/67ccb6b12b5ce089732382.png",
                                              "first_name": "Carlos",
                                              "last_name": "Ascencio"
                                          },
                                          "links": [
                                              {
                                                  "link": "https://es.wikipedia.org/wiki/Hola_mundo",
                                                  "name": "Contacto"
                                              }
                                          ],
                                          "name": "Comunicado de prueba",
                                          "notification_mode": {
                                              "email_notification": true,
                                              "push_notification": true,
                                              "web_notification": false
                                          },
                                          "position": {
                                              "lng": -3.6995988,
                                              "address_string": "Cl. de Aldea del Fresno, 37, Arganzuela, 28045 Madrid, Spain",
                                              "lat": 40.3948356,
                                              "long": -3.6995988,
                                              "location_additional_data": []
                                          },
                                          "start_date": "2025-11-30T20:54:03+00:00",
                                          "tags": [],
                                          "push_only": false,
                                          "action": [],
                                          "buttons": [],
                                          "backoffice_users": [],
                                          "users": [],
                                          "notify_anonymous_users": false,
                                          "map_layer_ids": []
                                      }
                                  ]
                              - id: b397dfff-ea56-4b1a-a95b-e6af80ce684a
                                name: My Releases Invalid Jurisdiction
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/my-releases?jurisdiction_ids=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - my-releases
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "Invalid Jurisdiction"
                                      }
                                  ]
                          - name: Get Release
                            id: 21cd27b6-79e7-4278-8694-9a65b4811c52
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/release/{{release_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - release
                                  - '{{release_id}}'
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | release_id | String | ID del release sobre la
                                cual se desea consultar. |


                                Este endpoint permite obtener la información
                                completa de un **Release** específico,
                                identificado por su `id`, retorna el objeto del
                                Release utilizando los grupos de serialización
                                adecuados para exponer tanto información
                                resumida como detalles internos.
                            response:
                              - id: fabe55d6-9a0f-43b1-bd55-31fefc1cd7f1
                                name: Get Release OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/release/{{release_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - release
                                      - '{{release_id}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                        id: f35bd256-99ca-4efc-bc95-5b823cd8d698
                    id: 415c443a-78f2-4842-8cc2-db854b1bd8c5
                  - name: Request
                    item:
                      - name: Request Complaint
                        item:
                          - name: Get Request Complaints
                            id: 941b231b-06f6-4293-95de-5fb70be36bb0
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/complaints
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - complaints
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | ID de la request
                                sobre la cual se desea consultar. |


                                Este endpoint devuelve todas las **quejas**
                                asociadas a un _Request_ específico identificado
                                por su `token`.
                            response:
                              - id: 1d23e8cb-e81c-4d19-b120-df16f69f5bf6
                                name: Get Request Complaints OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_token}}/complaints
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_token}}'
                                      - complaints
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "datetime": "2025-12-04T13:13:44+00:00",
                                          "origin_create": "Acciona",
                                          "id": "693189089ddc57f7cc015d65",
                                          "source": {
                                              "alias": "Interno (Backoffice)",
                                              "id": "5850de88e22c6d9f51b17719"
                                          }
                                      }
                                  ]
                          - name: Post Request Complaint
                            id: 7fc37ee5-d449-4e45-a607-51f8cfc379ff
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - type: text
                                    key: description
                                    value: Prueba
                                    description: >-
                                      String [optional]. Descripción detallada
                                      de la queja presentada sobre la solicitud.
                                  - type: text
                                    key: email
                                    value: diana.leon@gopenux.com
                                    description: >-
                                      String [optional]. Correo electrónico de
                                      contacto asociado a la queja.
                                  - key: email_notification
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Indica si el usuario
                                      desea recibir notificaciones por email.
                                    type: text
                                    uuid: 11c69b70-0966-40ae-aaa6-e97390cc4f49
                                  - type: file
                                    key: files[0]
                                    description: >-
                                      File [optional]. Archivos adjuntos
                                      relacionados con la queja.
                                    value: null
                                  - type: text
                                    key: first_name
                                    value: Diana Lucia
                                    description: >-
                                      String [optional]. Nombre del usuario que
                                      presenta la queja.
                                  - type: text
                                    key: follow_request
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Indica si el usuario
                                      desea hacer seguimiento a la solicitud
                                      relacionada.
                                  - type: text
                                    key: last_name
                                    value: Leon Figueroa
                                    description: >-
                                      String [optional]. Apellido del usuario
                                      que presenta la queja.
                                  - type: text
                                    key: originCreate
                                    value: Lamoraleja
                                    description: >-
                                      String [optional]. Origen desde donde se
                                      crea la queja.
                                  - key: push_notification
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Indica si el usuario
                                      desea recibir notificación push.
                                    type: text
                                    uuid: d98442f4-87b2-4af9-9119-6b389d6d0461
                                  - key: sms_notification
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Indica si el usuario
                                      desea recibir notificaciones por SMS.
                                    type: text
                                    uuid: 0cbeef11-8b0f-4115-a346-9045068281e4
                                  - type: text
                                    key: source
                                    value: 5850de88e22c6d9f51b17719
                                    description: >-
                                      String [optional]. ID de la fuente u
                                      origen categórico de la queja.
                                  - type: text
                                    key: user
                                    value: 68af0c6690c69558be01ebee
                                    description: >-
                                      String [optional]. ID del usuario que
                                      registra la queja.
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/complaint
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - complaint
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | ID de la request
                                sobre la cual se desea consultar. |


                                Este endpoint permite **crear una queja asociada
                                a una solicitud**, identificada por su `token`,
                                registrando información descriptiva, datos del
                                usuario y archivos adjuntos relacionados,
                                siempre que el usuario tenga acceso al módulo
                                correspondiente de la jurisdicción de la
                                solicitud y que los datos enviados sean válidos.
                            response:
                              - id: ce50f4e5-6bac-49bb-9418-5014185790c0
                                name: Post Request Complaint OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - type: text
                                        key: description
                                        value: Prueba
                                      - type: text
                                        key: email
                                        value: diana.leon@gopenux.com
                                      - type: file
                                        key: files[0]
                                        src: []
                                      - type: text
                                        key: first_name
                                        value: Diana Lucia
                                      - type: text
                                        key: follow_request
                                        value: 'true'
                                      - type: text
                                        key: last_name
                                        value: Leon Figueroa
                                      - type: text
                                        key: originCreate
                                        value: Lamoraleja
                                      - type: text
                                        key: source
                                        value: 5850de88e22c6d9f51b17719
                                      - type: text
                                        key: user
                                        value: 68af0c6690c69558be01ebee
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_token}}/complaint
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_token}}'
                                      - complaint
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "datetime": "2025-12-19T13:51:20+00:00",
                                      "origin_create": "Lamoraleja",
                                      "description": "Prueba",
                                      "email": "diana.leon@gopenux.com",
                                      "first_name": "Diana Lucia",
                                      "follow_request": true,
                                      "id": "69455858618773d55a0a4413",
                                      "last_name": "Leon Figueroa",
                                      "request": {
                                          "following_count": 1,
                                          "reiterations_count": 0,
                                          "complaints_count": 1,
                                          "token": "6903b227498563d72c0ca77e"
                                      },
                                      "source": {
                                          "alias": "Interno (Backoffice)",
                                          "id": "5850de88e22c6d9f51b17719"
                                      },
                                      "user": {
                                          "nickname": "user_70ee9714afc834435c9d",
                                          "id": "68af0c6690c69558be01ebee"
                                      }
                                  }
                        id: ee8bdfff-0666-472e-944c-c3f39868b0d0
                      - name: Request
                        item:
                          - name: Requests List
                            id: 5e8e7d19-c19e-4cca-9269-5b07ef13685e
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests?jurisdiction_ids[0]=es.madrid&service_request_ids[0]=5c87a4d24e4ea894138b4567&service_ids[0]=5c87a4d24e4ea894138b4567&start_date=2025-10-01T00:00:00Z&end_date=2025-10-02T00:00:00Z&own=true&lat=1.11111&long=3.3333&page=1&limit=10&address_and_service_request_id=ALC00001&status[0]=5c87a4d24e4ea894138b4567&typologies[0]=5c87a4d24e4ea894138b4567&distance=130&following=true&order=ASC&complaints=true&reiterations=true&user_reiterated=true&user_complaint=false&jurisdiction_element_ids[0]=5c87a4d24e4ea894138b4567&level=2&polygon[0]=40.466&polygon[1]=-3.696&final_ok=false&final_not_ok=true&final_status=true&interested=true
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests
                                query:
                                  - key: jurisdiction_ids[0]
                                    value: es.madrid
                                    description: >-
                                      Array. [optional]. (es.madrid). Permite
                                      realizar la búsqueda de avisos utilizando
                                      el jurisdiction_id de mongo de una o
                                      varias jurisdicciones asociadas. En caso
                                      de enviar múltiples jurisdicciones, estas
                                      deben ser separadas por comas (,).
                                  - key: service_request_ids[0]
                                    value: 5c87a4d24e4ea894138b4567
                                    description: >-
                                      Array. [optional]
                                      (5c87a4d24e4ea894138b4567). Permite
                                      realizar búsqueda de avisos a partir de
                                      los IDs de mongo vinculados a los avisos.
                                      En caso de enviar múltiples
                                      jurisdicciones, estas deben ser separadas
                                      por comas (,).
                                  - key: service_ids[0]
                                    value: 5c87a4d24e4ea894138b4567
                                    description: >-
                                      Array. [optional]
                                      (5c87a4d24e4ea894138b4567). Permite
                                      realizar búsqueda de avisos a partir de
                                      las categorias relacionadas.  En caso de
                                      enviar múltiples jurisdicciones, estas
                                      deben ser separadas por comas (,).
                                  - key: start_date
                                    value: '2025-10-01T00:00:00Z'
                                    description: >-
                                      Date. [optional]. (2025-10-01T00:00:00Z)
                                      Permite realizar la búsqueda de un aviso
                                      mediante un rango de fechas (rango
                                      inferior)
                                  - key: end_date
                                    value: '2025-10-02T00:00:00Z'
                                    description: >-
                                      Date. [optional]. (2025-10-02T00:00:00Z)
                                      Permite realizar la búsqueda de un aviso
                                      mediante un rango de fechas (rango
                                      superior)
                                  - key: own
                                    value: 'true'
                                    description: >-
                                      Bool. [optional]. (true) Permite realizar
                                      la búsqueda de avisos que fuesen
                                      reportados por el usuario del contexto
                                      (logeado)
                                  - key: lat
                                    value: '1.11111'
                                    description: >-
                                      Float. [optional]. (1.11111) Permite
                                      realizar la búsqueda de avisos mediante
                                      coordenadas (latitud)
                                  - key: long
                                    value: '3.3333'
                                    description: >-
                                      Float. [optional]. (3.3333) Permite
                                      realizar la búsqueda de avisos mediante
                                      coordenadas (longitud)
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. (1) Permite definir la
                                      página de los resultados encontrados según
                                      la cantidad de los resultados encontrados.
                                      Por defecto el valor es 1
                                  - key: limit
                                    value: '10'
                                    description: >-
                                      Int [optional]. (10) Permite definir el
                                      limite de cada página de resultados
                                  - key: address_and_service_request_id
                                    value: ALC00001
                                    description: >-
                                      String [optional]. (ALC00001) Permite
                                      realizar búsquedas de avisos a partir de
                                      una dirección o identificador de aviso
                                      vinculados
                                  - key: status[0]
                                    value: 5c87a4d24e4ea894138b4567
                                    description: >-
                                      String [optional].
                                      (5c87a4d24e4ea894138b4567) Permite
                                      realizar búsquedas de avisos a partir del
                                      estado de los mismos. En caso de enviar
                                      múltiples jurisdicciones, estas deben ser
                                      separadas por comas (,).
                                  - key: typologies[0]
                                    value: 5c87a4d24e4ea894138b4567
                                    description: >-
                                      String [optional].
                                      (5c87a4d24e4ea894138b4567) Permite
                                      realizar búsquedas de avisos a partir de
                                      la tipologia a la que pertenezcan
                                  - key: distance
                                    value: '130'
                                    description: >-
                                      String [optional]. (130) Permite realizar
                                      búsqueda de avisos a partir de una
                                      distancia en metros
                                  - key: following
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. (true) Permite realizar
                                      búsqueda de avisos a los que el usuario
                                      del contexto esté siguiendo
                                  - key: order
                                    value: ASC
                                    description: >-
                                      String [optional]. Permite definir el
                                      ordenamiento de los resultados encontrados
                                      de manera ascendente o descendente
                                      (alfabéticamente)
                                  - key: complaints
                                    value: 'true'
                                    description: >-
                                      [optional]. Permite realizar búsqueda de
                                      avisos si estos poseen quejas reportadas
                                  - key: reiterations
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Permite realizar búsqueda
                                      de avisos si estos poseen reiteraciones
                                      reportadas
                                  - key: user_reiterated
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Permite realizar búsqueda
                                      de avisos que el usuario del contexto haya
                                      reiterado
                                  - key: user_complaint
                                    value: 'false'
                                    description: >-
                                      Bool [optional]. Permite realizar búsqueda
                                      de avisos que el usuario del contexto haya
                                      denunciado (puesto una queja
                                  - key: jurisdiction_element_ids[0]
                                    value: 5c87a4d24e4ea894138b4567
                                    description: >-
                                      String [optional].
                                      (5c87a4d24e4ea894138b4567) Permite realiza
                                      búsquedas a partir de los elementos de
                                      jurisdicción vinculados
                                  - key: level
                                    value: '2'
                                    description: >-
                                      Int [optional].(2) Permite definir el
                                      nivel de búsqueda de avisos en los
                                      escenarios donde fueron reportados en un
                                      edificio que posea varias plantas.
                                  - key: polygon[0]
                                    value: '40.466'
                                    description: >-
                                      Float [optional]. Ej: [2.1111, 1.0000] -
                                      Permite realizar búsqueda de avisos a
                                      partir de poligonos o puntos de
                                      coordenadas
                                  - key: polygon[1]
                                    value: '-3.696'
                                    description: >-
                                      Float [optional]. Ej: [2.1111, 1.0000] -
                                      Permite realizar búsqueda de avisos a
                                      partir de poligonos o puntos de
                                      coordenadas
                                  - key: final_ok
                                    value: 'false'
                                    description: >-
                                      Bool [optional]. Permite realizar la
                                      búsqueda de un aviso si su estado final es
                                      correcto
                                  - key: final_not_ok
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Permite realizar la
                                      búsqueda de un aviso si su estado es
                                      intermedio (ni nuevo ni finalizado)
                                  - key: final_status
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Permite realizar la
                                      búsqueda de un aviso si su estado es final
                                  - key: interested
                                    value: 'true'
                                    description: >-
                                      Bool [optional]. Permite realizar la
                                      búsqueda de avisos en donde el usuario del
                                      contexto haya realizado el reporte y
                                      adicionalmente este aviso haya sido
                                      reportado anteriormente (reiteración)
                              description: >-
                                Este endpoint permite obtener un listado de
                                avisos (o solicitudes) aplicando varios filtros
                                de búsqueda configurables. Los filtros
                                disponibles se definen mediante un formulario de
                                consulta, lo que permite personalizar los
                                resultados según las necesidades del usuario.
                            response:
                              - id: 8949f2f9-85e1-48a1-a775-ec41dceac576
                                name: Requests List With Data
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests?jurisdiction_ids[0]=es.madrid&service_request_ids[0]=5c87a4d24e4ea894138b4567&service_ids[0]=5c87a4d24e4ea894138b4567&start_date=2025-10-01T00:00:00Z&end_date=2025-10-02T00:00:00Z&own=true&lat=1.11111&long=3.3333&page=1&limit=10&address_and_service_request_id=20&status[0]=5c87a4d24e4ea894138b4567&typologies[0]=5c87a4d24e4ea894138b4567&distance=130&following=true&order=false&complaints=true&reiterations=true&user_reiterated=true&user_complaint=false&jurisdiction_element_ids[0]=5c87a4d24e4ea894138b4567&level=2&polygon[0]=40.466&polygon[1]=-3.696&final_ok=false&final_not_ok=true&final_status=true&interested=true
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                    query:
                                      - key: jurisdiction_ids[0]
                                        value: es.madrid
                                      - key: service_request_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: service_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: start_date
                                        value: '2025-10-01T00:00:00Z'
                                      - key: end_date
                                        value: '2025-10-02T00:00:00Z'
                                      - key: own
                                        value: 'true'
                                      - key: lat
                                        value: '1.11111'
                                      - key: long
                                        value: '3.3333'
                                      - key: page
                                        value: '1'
                                      - key: limit
                                        value: '10'
                                      - key: address_and_service_request_id
                                        value: '20'
                                      - key: status[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: typologies[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: distance
                                        value: '130'
                                      - key: following
                                        value: 'true'
                                      - key: order
                                        value: 'false'
                                      - key: complaints
                                        value: 'true'
                                      - key: reiterations
                                        value: 'true'
                                      - key: user_reiterated
                                        value: 'true'
                                      - key: user_complaint
                                        value: 'false'
                                      - key: jurisdiction_element_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: level
                                        value: '2'
                                      - key: polygon[0]
                                        value: '40.466'
                                      - key: polygon[1]
                                        value: '-3.696'
                                      - key: final_ok
                                        value: 'false'
                                      - key: final_not_ok
                                        value: 'true'
                                      - key: final_status
                                        value: 'true'
                                      - key: interested
                                        value: 'true'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 96bff95d-98a3-47ad-812e-e7753ea8fb91
                                name: Requests List Empty Response
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests?jurisdiction_ids[0]=es.madrid&service_request_ids[0]=5c87a4d24e4ea894138b4567&service_ids[0]=5c87a4d24e4ea894138b4567&start_date=2025-10-01T00:00:00Z&end_date=2025-10-02T00:00:00Z&own=true&lat=1.11111&long=3.3333&page=1&limit=10&address_and_service_request_id=20&status[0]=5c87a4d24e4ea894138b4567&typologies[0]=5c87a4d24e4ea894138b4567&distance=130&following=true&order=false&complaints=true&reiterations=true&user_reiterated=true&user_complaint=false&jurisdiction_element_ids[0]=5c87a4d24e4ea894138b4567&level=2&polygon[0]=40.466&polygon[1]=-3.696&final_ok=false&final_not_ok=true&final_status=true&interested=true
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                    query:
                                      - key: jurisdiction_ids[0]
                                        value: es.madrid
                                      - key: service_request_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: service_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: start_date
                                        value: '2025-10-01T00:00:00Z'
                                      - key: end_date
                                        value: '2025-10-02T00:00:00Z'
                                      - key: own
                                        value: 'true'
                                      - key: lat
                                        value: '1.11111'
                                      - key: long
                                        value: '3.3333'
                                      - key: page
                                        value: '1'
                                      - key: limit
                                        value: '10'
                                      - key: address_and_service_request_id
                                        value: '20'
                                      - key: status[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: typologies[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: distance
                                        value: '130'
                                      - key: following
                                        value: 'true'
                                      - key: order
                                        value: 'false'
                                      - key: complaints
                                        value: 'true'
                                      - key: reiterations
                                        value: 'true'
                                      - key: user_reiterated
                                        value: 'true'
                                      - key: user_complaint
                                        value: 'false'
                                      - key: jurisdiction_element_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                      - key: level
                                        value: '2'
                                      - key: polygon[0]
                                        value: '40.466'
                                      - key: polygon[1]
                                        value: '-3.696'
                                      - key: final_ok
                                        value: 'false'
                                      - key: final_not_ok
                                        value: 'true'
                                      - key: final_status
                                        value: 'true'
                                      - key: interested
                                        value: 'true'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '{}'
                              - id: d71b1bc8-1ffd-4353-add4-944615b48f76
                                name: Error Request Token Not Exist
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests?jurisdiction_ids[0]=es.madrid&service_request_ids[0]=5c87a4d24e4ea894138b4567&service_ids[0]=5c87a4d24e4ea894138b4567&start_date=2025-10-01T00:00:00Z&end_date=2025-10-02T00:00:00Z&own=true&lat=1.11111&long=3.3333&page=1&limit=10&address_and_service_request_id=ALC00001&status[0]=5c87a4d24e4ea894138b4567&typologies[0]=5c87a4d24e4ea894138b4567&distance=130&following=true&order=ASC&complaints=true&reiterations=true&user_reiterated=true&user_complaint=false&jurisdiction_element_ids[0]=5c87a4d24e4ea894138b4567&level=2&polygon[0]=40.466&polygon[1]=-3.696&final_ok=false&final_not_ok=true&final_status=true&interested=true
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                    query:
                                      - key: jurisdiction_ids[0]
                                        value: es.madrid
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos a partir del identificador de una
                                          jurisdicción vinculada
                                      - key: service_request_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos a partir de los identificadores
                                          vinculados a los avisos
                                      - key: service_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos a partir de las categorias
                                          relacionadas
                                      - key: start_date
                                        value: '2025-10-01T00:00:00Z'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de un aviso mediante un rango de fechas
                                          (rango inferior)
                                      - key: end_date
                                        value: '2025-10-02T00:00:00Z'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de un aviso mediante un rango de fechas
                                          (rango superior)
                                      - key: own
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de avisos que fuesen reportados por el
                                          usuario del contexto (logeado)
                                      - key: lat
                                        value: '1.11111'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de avisos mediante coordenadas (latitud)
                                      - key: long
                                        value: '3.3333'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de avisos mediante coordenadas
                                          (longitud)
                                      - key: page
                                        value: '1'
                                        description: >-
                                          [optional]. Permite definir la página de
                                          los resultados encontrados según la
                                          cantidad de los resultados encontrados.
                                          Por defecto el valor es 1
                                      - key: limit
                                        value: '10'
                                        description: >-
                                          [optional]. Permite definir el limite de
                                          cada página de resultados
                                      - key: address_and_service_request_id
                                        value: ALC00001
                                        description: >-
                                          [optional]. Permite realizar búsquedas
                                          de avisos a partir de una dirección o
                                          identificador de aviso vinculados
                                      - key: status[0]
                                        value: 5c87a4d24e4ea894138b4567
                                        description: >-
                                          [optional]. Permite realizar búsquedas
                                          de avisos a partir del estado de los
                                          mismos
                                      - key: typologies[0]
                                        value: 5c87a4d24e4ea894138b4567
                                        description: >-
                                          [optional]. Permite realizar búsquedas
                                          de avisos a partir de la tipologia a la
                                          que pertenezcan
                                      - key: distance
                                        value: '130'
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos a partir de una distancia en
                                          metros
                                      - key: following
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos a los que el usuario del contexto
                                          esté siguiendo
                                      - key: order
                                        value: ASC
                                        description: >-
                                          [optional]. Permite definir el
                                          ordenamiento de los resultados
                                          encontrados de manera ascendente o
                                          descendente (alfabéticamente)
                                      - key: complaints
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos si estos poseen quejas reportadas
                                      - key: reiterations
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos si estos poseen reiteraciones
                                          reportadas
                                      - key: user_reiterated
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos que el usuario del contexto haya
                                          reiterado
                                      - key: user_complaint
                                        value: 'false'
                                        description: >-
                                          [optional]. Permite realizar búsqueda de
                                          avisos que el usuario del contexto haya
                                          denunciado (puesto una queja)
                                      - key: jurisdiction_element_ids[0]
                                        value: 5c87a4d24e4ea894138b4567
                                        description: >-
                                          [optional]. Permite realiza búsquedas a
                                          partir de los elementos de jurisdicción
                                          vinculados
                                      - key: level
                                        value: '2'
                                        description: >-
                                          [optional]. Permite definir el nivel de
                                          búsqueda de avisos en los escenarios
                                          donde fueron reportados en un edificio
                                          que posea varias plantas.
                                      - key: polygon[0]
                                        value: '40.466'
                                        description: >-
                                          [optional]. Ej: [2.1111, 1.0000] -
                                          Permite realizar búsqueda de avisos a
                                          partir de poligonos o puntos de
                                          coordenadas
                                      - key: polygon[1]
                                        value: '-3.696'
                                        description: >-
                                          [optional]. Ej: [2.1111, 1.0000] -
                                          Permite realizar búsqueda de avisos a
                                          partir de poligonos o puntos de
                                          coordenadas
                                      - key: final_ok
                                        value: 'false'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de un aviso si su estado final es
                                          correcto
                                      - key: final_not_ok
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de un aviso si su estado es intermedio
                                          (ni nuevo ni finalizado)
                                      - key: final_status
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de un aviso si su estado es final
                                      - key: interested
                                        value: 'true'
                                        description: >-
                                          [optional]. Permite realizar la búsqueda
                                          de avisos en donde el usuario del
                                          contexto haya realizado el reporte y
                                          adicionalmente este aviso haya sido
                                          reportado anteriormente (reiteración)
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "message": "request_token not exist"
                                  }
                          - name: Remove Request Follower
                            id: a83a647c-fd77-4f6a-bc11-43528dc70f19
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "jurisdiction_id": "org.alcobendas",
                                      "service_request_id": "ALC12345"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request_stop_follow
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request_stop_follow
                              description: >-
                                | **Campo** | **Tipo** | Descripción |

                                | --- | --- | --- |

                                | jurisdiction_id | String | \[required\]
                                Identificador de la jurisdicción a la que
                                pertenece. |

                                | service_request_id | String | \[required\]
                                Identificador del aviso al que se le removerán
                                los followers. |


                                Este endpoint permite al usuario dejar de seguir
                                un aviso (ticket) y con ello la posibilidad de
                                recibir notificaciones o información acerca del
                                aviso especificado.
                            response:
                              - id: 122c1d18-3c4a-4eaf-b338-d97110527a5b
                                name: Remove Request Follower OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request_stop_follow
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request_stop_follow
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: b84c0715-cc7d-4836-9dfb-d50d3595e372
                                name: Remove Request Follower without jurisdiction
                                originalRequest:
                                  method: GET
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request_stop_follow
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request_stop_follow
                                status: Internal Server Error
                                code: 500
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 500,
                                          "description": "App\\Repository\\Jurisdiction\\JurisdictionRepository::getAndValidate(): Argument #1 ($id) must be of type string, null given, called in /var/www/mtx-backoffice/src/Controller/PublicApi/Open010APIController.php on line 98"
                                      }
                                  ]
                              - id: 959a435c-8c75-4d50-ab39-0165706f9a61
                                name: >-
                                  Remove Request Follower without
                                  service_request_id
                                originalRequest:
                                  method: GET
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request_stop_follow
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request_stop_follow
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "service_request_id was not provided"
                                      }
                                  ]
                          - name: Get Request in final status count
                            id: 35abacb8-1791-4c3c-9dcf-cbc179bc6b1b
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              body:
                                mode: raw
                                raw: ''
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/count_last_days?jurisdiction_ids=org.alcobendas&last_days=3
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - count_last_days
                                query:
                                  - key: jurisdiction_ids
                                    value: org.alcobendas
                                    description: >-
                                      [optional]. Stirng. Identificador de las
                                      jurisdicciones con las cuales se requiere
                                      realizar la búsqueda de los avisos
                                      separado por comas.
                                    type: text
                                  - key: last_days
                                    value: '3'
                                    description: >-
                                      [optional]. Integer. Establece el número
                                      de días en los cuales se realizará el
                                      filtrado de los avisos (por defecto 7 si
                                      no se introduce valor).
                                    type: text
                              description: >-
                                Este endpoint permite obtener los avisos
                                (tickets) que se encuentren en estado final
                                basado en la cantidad de dias especificados en
                                la petición. Por defecto si el valor no es
                                introducido se buscará sobre los últimos 7 días.
                            response:
                              - id: 1733de56-8d6a-4391-a85f-a82d1a7f57aa
                                name: Get Request in final status count OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  body:
                                    mode: raw
                                    raw: ''
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/count_last_days?jurisdiction_ids=org.alcobendas&last_days=3
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - count_last_days
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                        description: >-
                                          [optional]. Stirng. Identificador de las
                                          jurisdicciones con las cuales se
                                          requiere realizar la búsqueda de los
                                          avisos separado por comas.
                                      - key: last_days
                                        value: '3'
                                        description: >-
                                          [optional]. Integer. Establece el número
                                          de días en los cuales se realizará el
                                          filtrado de los avisos (por defecto 7 si
                                          no se introduce valor).
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "jurisdiction_ids": "org.alcobendas",
                                      "last_days": 3,
                                      "count": 1
                                  }
                              - id: 76d0d26a-ee09-429c-9419-7b33834efde3
                                name: >-
                                  Get Request in final status count without
                                  jurisdictionId
                                originalRequest:
                                  method: GET
                                  header: []
                                  body:
                                    mode: raw
                                    raw: ''
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/count_last_days?last_days=3
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - count_last_days
                                    query:
                                      - key: last_days
                                        value: '3'
                                        description: >-
                                          [optional]. Integer. Establece el número
                                          de días en los cuales se realizará el
                                          filtrado de los avisos (por defecto 7 si
                                          no se introduce valor).
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "jurisdiction_ids": "",
                                      "last_days": 3,
                                      "count": 0
                                  }
                              - id: 92ad5b4c-d11d-49ad-9567-3ab675ea8d07
                                name: >-
                                  Get Request in final status count without last
                                  days value
                                originalRequest:
                                  method: GET
                                  header: []
                                  body:
                                    mode: raw
                                    raw: ''
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/count_last_days?jurisdiction_ids=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - count_last_days
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                        description: >-
                                          [optional]. Stirng. Identificador de las
                                          jurisdicciones con las cuales se
                                          requiere realizar la búsqueda de los
                                          avisos separado por comas.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "jurisdiction_ids": "org.alcobendas",
                                      "last_days": 7,
                                      "count": 2
                                  }
                          - name: Get related family
                            id: 62b303ab-05ae-4b53-9589-afa00344c31b
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_id}}/related_family/list
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_id}}'
                                  - related_family
                                  - list
                              description: >-
                                | Campo | Tipo | Descripción |

                                | --- | --- | --- |

                                | token | String | \[required\]. Identificador
                                mongo del aviso al cual se le requiere extraer
                                la información sobre otros avisos relacionados.
                                |


                                Este endpoint permite visualizar avisos
                                (tickets) que se encuentren relacionados al
                                aviso especificado en la petición.
                            response:
                              - id: 2fa3cd0c-6e9c-4018-aa1f-855439e45a9c
                                name: Get related family OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{token}/related_family/list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{token}'
                                      - related_family
                                      - list
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "service_id": "6932f482e4b2768f51039f52",
                                      "service_icon": "https://mtc.vdeveloper.lan/uploads/local/service_icons/5bab6a4c457be.png",
                                      "service_name": "Limpieza",
                                      "requested_datetime": "2025-09-17T14:04:56+00:00",
                                      "address": "Dirección de prueba94",
                                      "reiterations_count": 0,
                                      "complaints_count": 0,
                                      "jurisdiction_id": "es.madrid",
                                      "status_node_type": "initial_node",
                                      "typology": {
                                        "id": "6932f47fe4b2768f51039edd",
                                        "color": "#337ab7",
                                        "icon": "https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png",
                                        "location_type": "indoor",
                                        "order": 1,
                                        "public": true,
                                        "visible_name": "Avisos Hospital",
                                        "with_description": true,
                                        "with_files": true,
                                        "with_geolocation_data": false,
                                        "with_medias": true,
                                        "with_temporality_data": false
                                      },
                                      "public_visibility": false,
                                      "comments_count": 0,
                                      "complaining": false,
                                      "current_node_estimated_final_datetime": "2025-12-05T20:04:56+00:00",
                                      "current_node_estimated_start_datetime": "2025-12-05T15:04:56+00:00",
                                      "description": "7 - 3 - Madrid - Limpieza",
                                      "estimated_final_datetime": "2025-12-05T20:04:56+00:00",
                                      "estimated_start_datetime": "2025-12-05T15:04:56+00:00",
                                      "evaluation": 0,
                                      "jurisdiction_element": {
                                        "map_layers": [
                                          {
                                            "backend": "OWS",
                                            "endpoint": "https://gis.mejoratuciudad.org/geoserver",
                                            "id": "6932f483e4b2768f51039fe6",
                                            "is_default": false,
                                            "color": "#000000",
                                            "internal_name": "buildings:custom_zones_fixtures",
                                            "name": "FixtureZones",
                                            "description": "Test Layer 5",
                                            "preset": false,
                                            "public": true,
                                            "tags": [],
                                            "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                            "type": "WORK"
                                          }
                                        ],
                                        "extent": [],
                                        "geoserver_perimeter_id": "custom_zones_fixtures.13",
                                        "guided_module": false,
                                        "icon": "https://mtc.vdeveloper.lan/uploads/local/jurisdiction_element/icon_mock.png",
                                        "id": "6932f479e4b2768f51039ea9",
                                        "name": "madrid",
                                        "type": "city",
                                        "visible_name": "Madrid",
                                        "is_main": false
                                      },
                                      "address_string": "Dirección de prueba94",
                                      "lat": 40.419,
                                      "long": -3.674,
                                      "service_request_id": "MAD1110",
                                      "status_node": {
                                        "typology_node_id": "6932f47fe4b2768f51039ede",
                                        "visible_name": "Nuevo",
                                        "id": "6932f482e4b2768f51039f4b",
                                        "order": 1,
                                        "planned": false
                                      },
                                      "supporting": false,
                                      "tags": [],
                                      "token": "6932f498e4b2768f5103a22f",
                                      "user": {
                                        "id": "6932f47ae4b2768f51039eb7"
                                      },
                                      "worknotes_count": 1,
                                      "media_url": "https://mtc.vdeveloper.lan/uploads/local/open010/6932f49880585560875310.jpg"
                                    }
                                  ]
                              - id: 62728be2-db52-4395-9dad-eebb011937cf
                                name: >-
                                  Get related family without superparent request
                                  related
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{token}/related_family/list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{token}'
                                      - related_family
                                      - list
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                              - id: c7198e16-102c-40f9-acdd-fb7e373c1210
                                name: Get related family with invalid token
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{token}/related_family/list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{token}'
                                      - related_family
                                      - list
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 404,
                                      "description": "Object not found"
                                    }
                                  ]
                              - id: 230c3c56-5599-4f7e-8f79-8194002f962c
                                name: Get related family without user in request
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{token}/related_family/list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{token}'
                                      - related_family
                                      - list
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 403,
                                      "description": "Related family list only is available if request was created by the logged user"
                                    }
                                  ]
                          - name: Check Duplicates
                            id: 7a472641-96fb-4c4e-a9e0-9bac0b41b1f1
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request_duplicate
                                query:
                                  - key: service_id
                                    value: 5620ec856aa918b1008b4567
                                    description: >-
                                      String [required].
                                      (5620ec856aa918b1008b4567) Permite
                                      identificar la categoria a la que
                                      pertenece el aviso o ticket
                                  - key: lat
                                    value: '40.54720023441049'
                                    description: >-
                                      Float [required]. (40.54720023441049)
                                      Coordenada de latitud geográfica.
                                  - key: lng
                                    value: '-3.6370539665222172'
                                    description: >-
                                      Float [required]. (-3.6370539665222172)
                                      Coordenada de longitud geográfica.
                              description: >-
                                Este endpoint permite identificar avisos que
                                podrían ser duplicados en función de una
                                categoría de servicio específica y las
                                coordenadas geográficas proporcionadas. Al
                                recibir los parámetros de latitud y longitud,
                                así como la identificación del servicio, el
                                sistema busca solicitudes cercanas a la
                                ubicación indicada y verifica si existen
                                posibles duplicados.
                            response:
                              - id: 3f97642a-449b-4e93-b433-7deee1b0dd1d
                                name: Check Duplicates Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request_duplicate
                                    query:
                                      - key: service_id
                                        value: 5620ec856aa918b1008b4567
                                        description: >-
                                          [required]. String - Permite identificar
                                          la categoria a la que pertenece el aviso
                                          o ticket
                                      - key: lat
                                        value: '40.54720023441049'
                                        description: >-
                                          [required]. Float - Coordenada de
                                          latitud geográfica.
                                      - key: lng
                                        value: '-3.6370539665222172'
                                        description: >-
                                          [required]. Float - Coordenada de
                                          longitud geográfica.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "deleted": false,
                                      "jurisdiction": "561e04ed6aa918910c8b4592",
                                      "jurisdiction_name": "Madrid Móvil",
                                      "service_id": "5620ec856aa918b1008b4567",
                                      "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png",
                                      "service_code": "2",
                                      "service_name": "Arquetas de alumbrado",
                                      "requested_datetime": "2025-03-13T16:26:32+00:00",
                                      "supporting_count": 0,
                                      "following_count": 1,
                                      "evaluations_count": 0,
                                      "updated_datetime": "2025-03-13T20:37:45+00:00",
                                      "address_string": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                      "evaluations_avg": -1,
                                      "reiterations_count": 0,
                                      "complaints_count": 0,
                                      "jurisdiction_id": "es.madrid",
                                      "status_node_type": "initial_node",
                                      "final_status_ok": false,
                                      "final_status_not_ok": false,
                                      "files": [],
                                      "is_evaluable": false,
                                      "typology": {
                                          "hasLocation": true,
                                          "id": "5850dca2e22c6d9f51b00c0f",
                                          "color": "#ebc113",
                                          "description_legend": "Ej: farola fundida",
                                          "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png",
                                          "location_type": "geolocation",
                                          "name": "Aviso",
                                          "order": 1,
                                          "public": true,
                                          "typology_description": "Tengo un problema con un elemento en la calle",
                                          "visible_name": "Aviso",
                                          "with_authorized_users": false,
                                          "with_description": true,
                                          "with_files": true,
                                          "with_geolocation_data": true,
                                          "with_medias": true,
                                          "with_temporality_data": true
                                      },
                                      "paused": false,
                                      "creator": {
                                          "hasPassword": true,
                                          "channels": [],
                                          "jurisdiction_element_channels": [],
                                          "id": "67d2f56f887735a7be00f7bb",
                                          "nickname": "witijah950",
                                          "notification_channels": [],
                                          "last_geofences": []
                                      },
                                      "informant": {
                                          "hasPassword": true,
                                          "channels": [],
                                          "jurisdiction_element_channels": [],
                                          "id": "67d2f56f887735a7be00f7bb",
                                          "nickname": "witijah950",
                                          "notification_channels": [],
                                          "last_geofences": []
                                      },
                                      "has_required_assignments": false,
                                      "current_status_assignments": [],
                                      "public_visibility": true,
                                      "user_id": "67d2f56f887735a7be00f7bb",
                                      "accepted": false,
                                      "additional_data": [
                                          {
                                              "type": "singleValueList",
                                              "value": "resp1",
                                              "value_translations": {
                                                  "es": "resp1",
                                                  "en": "",
                                                  "ca": "",
                                                  "eu": "",
                                                  "fr": "",
                                                  "es_MX": "",
                                                  "en_AU": ""
                                              },
                                              "question": {
                                                  "type": "singleValueList",
                                                  "active": true,
                                                  "code": "code_lista_simple",
                                                  "help_text": "",
                                                  "help_text_translations": {
                                                      "es": "",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "id": "64706cd7a18ec0136f01dea5",
                                                  "question": "pregunta lista",
                                                  "question_translations": {
                                                      "es": "pregunta lista",
                                                      "en": "",
                                                      "ca": "",
                                                      "eu": "",
                                                      "fr": "",
                                                      "es_MX": "",
                                                      "en_AU": ""
                                                  },
                                                  "tags": [],
                                                  "possible_answers": [
                                                      {
                                                          "value": "resp1",
                                                          "value_translations": {
                                                              "es": "resp1",
                                                              "en": "",
                                                              "ca": "",
                                                              "eu": "",
                                                              "fr": "",
                                                              "es_MX": "",
                                                              "en_AU": ""
                                                          },
                                                          "next_question_list": {
                                                              "requiredVariables": [],
                                                              "configurable_questions": [
                                                                  {
                                                                      "editable": false,
                                                                      "hidden_in_detail": false,
                                                                      "hidden_in_form": false,
                                                                      "hidden_in_open010_detail": false,
                                                                      "hidden_in_open010_form": false,
                                                                      "question": {
                                                                          "type": "text",
                                                                          "active": true,
                                                                          "code": "complejo",
                                                                          "help_text": "",
                                                                          "help_text_translations": {
                                                                              "es": "",
                                                                              "en": "",
                                                                              "ca": "",
                                                                              "eu": "",
                                                                              "fr": "",
                                                                              "es_MX": "",
                                                                              "en_AU": ""
                                                                          },
                                                                          "tags": []
                                                                      },
                                                                      "required": false,
                                                                      "default_value": ""
                                                                  }
                                                              ],
                                                              "id": "5d3069e643b387a9018b4568",
                                                              "name": "Localización BBVA",
                                                              "use_cases": [
                                                                  {
                                                                      "type": "linked_list",
                                                                      "id": "66ed366037c0c32c020b5372"
                                                                  }
                                                              ],
                                                              "description": "."
                                                          }
                                                      }
                                                  ]
                                              }
                                          }
                                      ],
                                      "address": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                      "comments_count": 0,
                                      "complaining": false,
                                      "current_node_estimated_final_datetime": "2025-03-15T16:26:45+00:00",
                                      "current_node_estimated_start_datetime": "2025-03-13T16:26:45+00:00",
                                      "description": "sdgsfsdfsdfsd",
                                      "device_type": {
                                          "alias": "Canal Web",
                                          "id": "5850de88e22c6d9f51b17722",
                                          "options": [
                                              "web_channel"
                                          ]
                                      },
                                      "estimated_final_datetime": "2025-03-26T16:26:44+00:00",
                                      "estimated_start_datetime": "2025-03-13T16:26:44+00:00",
                                      "evaluation": 0,
                                      "first_name": "Pepito",
                                      "following": false,
                                      "jurisdiction_element": {
                                          "map_layers": [
                                              {
                                                  "backend": "OWS",
                                                  "endpoint": "https://gis-pre.mejoratuciudad.org/geoserver",
                                                  "id": "5d9ee7bcde2efef4018b4569",
                                                  "is_default": false,
                                                  "color": "#000000",
                                                  "internal_name": "zones_prod:Alc_Distritos",
                                                  "name": "Distritos",
                                                  "description": "Distritos",
                                                  "preset": false,
                                                  "public": true,
                                                  "tags": [],
                                                  "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                                  "type": "ADMINISTRATIVE"
                                              }
                                          ],
                                          "extent": [
                                              -3.70038574,
                                              40.50117283,
                                              -3.55027416,
                                              40.58886137
                                          ],
                                          "guided_module": false,
                                          "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png",
                                          "id": "5c9b55579650e67d42985e80",
                                          "location_additional_data": {
                                              "requiredVariables": [],
                                              "configurable_questions": [
                                                  {
                                                      "editable": true,
                                                      "hidden_in_detail": false,
                                                      "hidden_in_form": false,
                                                      "hidden_in_open010_detail": false,
                                                      "hidden_in_open010_form": false,
                                                      "question": {
                                                          "type": "text",
                                                          "active": true,
                                                          "code": "distrito_T",
                                                          "help_text": "",
                                                          "help_text_translations": {
                                                              "es": "",
                                                              "en": "",
                                                              "ca": "",
                                                              "eu": "",
                                                              "fr": "",
                                                              "es_MX": "",
                                                              "en_AU": ""
                                                          },
                                                          "id": "5de929ca0007544c098b4578",
                                                          "question": "Distrito",
                                                          "question_translations": {
                                                              "es": "Distrito",
                                                              "en": "",
                                                              "ca": "",
                                                              "eu": "",
                                                              "fr": "",
                                                              "es_MX": "",
                                                              "en_AU": ""
                                                          },
                                                          "tags": [
                                                              {
                                                                  "name": "distrito",
                                                                  "color": "#000000",
                                                                  "id": "distrito"
                                                              }
                                                          ]
                                                      },
                                                      "required": false,
                                                      "response_attribute": "Distrito",
                                                      "default_value": ""
                                                  }
                                              ],
                                              "endpoint": "http://mtx-wbgeo-srv-http-mtx-geo-location-canary.mtx-wbgeo-canary-ns/mixed-location-additional-data",
                                              "id": "5ea6b00322bce3c7058b45a9",
                                              "name": "Datos Adicionales de Localización ES",
                                              "use_cases": [
                                                  {
                                                      "type": "linked_list",
                                                      "id": "675738c67470888ae20cc926",
                                                      "description": "Prueba 01"
                                                  }
                                              ],
                                              "description": "Datos adicionales1"
                                          },
                                          "name": "es.madrid",
                                          "type": "city",
                                          "visible_name": "madrid",
                                          "is_main": false
                                      },
                                      "last_name": "Perez",
                                      "medias": [],
                                      "observers": [],
                                      "phone": "5551234",
                                      "lat": 40.54720023441,
                                      "long": -3.6370539665222,
                                      "location_additional_data": [],
                                      "priority": {},
                                      "public": true,
                                      "seen": false,
                                      "service": {
                                          "deleted": false,
                                          "parent_service_name": "Alumbrado público",
                                          "group": "5620e9176aa91815008b4567",
                                          "jurisdiction_id": "est.madrid",
                                          "visible_name": "Arquetas de alumbrado (Aviso)",
                                          "id": "5620ec856aa918b1008b4567",
                                          "additionalData": {
                                              "requiredVariables": [],
                                              "configurable_questions": [
                                                  {
                                                      "editable": true,
                                                      "hidden_in_detail": false,
                                                      "hidden_in_form": false,
                                                      "hidden_in_open010_detail": false,
                                                      "hidden_in_open010_form": false,
                                                      "question": {
                                                          "type": "datetime",
                                                          "active": true,
                                                          "code": "code_date",
                                                          "help_text": "texto ayuda",
                                                          "help_text_translations": {
                                                              "es": "texto ayuda",
                                                              "en": "",
                                                              "ca": "",
                                                              "eu": "",
                                                              "fr": "",
                                                              "es_MX": "",
                                                              "en_AU": ""
                                                          },
                                                          "id": "64706c8ad0e52544940c4156",
                                                          "question": "pregunta fecha",
                                                          "question_translations": {
                                                              "es": "pregunta fecha",
                                                              "en": "",
                                                              "ca": "",
                                                              "eu": "",
                                                              "fr": "",
                                                              "es_MX": "",
                                                              "en_AU": ""
                                                          },
                                                          "tags": []
                                                      },
                                                      "required": false,
                                                      "default_value": ""
                                                  }
                                              ],
                                              "id": "64706cdad70caf226b01ff66",
                                              "name": "lista prueba multi",
                                              "use_cases": [
                                                  {
                                                      "type": "crm_extended_detail_internal",
                                                      "id": "66e95e5f83ec90ea650b1a12"
                                                  }
                                              ]
                                          },
                                          "social": true,
                                          "evaluation": true,
                                          "color": "#FBC02D",
                                          "description": "Tapas arquetas de farolas deterioradas o inexistentes",
                                          "hideEstimatedDate": false,
                                          "mandatory_description": true,
                                          "mandatory_files": false,
                                          "mandatory_informant_config": [
                                              {
                                                  "field": "first_name",
                                                  "message": "",
                                                  "required": true
                                              }
                                          ],
                                          "mandatory_medias": false,
                                          "max_upload_files": 5,
                                          "max_upload_medias": 5,
                                          "public": true,
                                          "public_requests": true,
                                          "service_code": "2",
                                          "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1942ed045e.png",
                                          "service_name": "Arquetas de alumbrado",
                                          "sponsoring_info": {
                                              "display": false
                                          },
                                          "status_node": [],
                                          "typology": {
                                              "hasLocation": true,
                                              "id": "5850dca2e22c6d9f51b00c0f",
                                              "color": "#ebc113",
                                              "description_legend": "Ej: farola fundida",
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png",
                                              "location_type": "geolocation",
                                              "name": "Aviso",
                                              "order": 1,
                                              "public": true,
                                              "typology_description": "Tengo un problema con un elemento en la calle",
                                              "visible_name": "Aviso",
                                              "with_authorized_users": false,
                                              "with_description": true,
                                              "with_files": true,
                                              "with_geolocation_data": true,
                                              "with_medias": true,
                                              "with_temporality_data": true
                                          },
                                          "with_informant": true,
                                          "with_internal_informant": true
                                      },
                                      "service_request_id": "ALC43684",
                                      "status_assignments": [],
                                      "status_node": {
                                          "status_node_type": "initial_node",
                                          "name": "Nuevo",
                                          "color": "#f1c40f",
                                          "typology_node_id": "5850dca2e22c6d9f51b00c59",
                                          "visible_name": "Nuevo",
                                          "id": "5850dd1ee22c6d9f51b0157b",
                                          "order": 1,
                                          "planned": false
                                      },
                                      "supporting": false,
                                      "tags": [],
                                      "token": "67d307454e10cee6cc011a37",
                                      "user": {
                                          "hasPassword": true,
                                          "channels": [],
                                          "jurisdiction_element_channels": [],
                                          "id": "67d2f56f887735a7be00f7bb",
                                          "nickname": "witijah950",
                                          "notification_channels": [],
                                          "last_geofences": []
                                      },
                                      "zones": [
                                          {}
                                      ],
                                      "worknotes_count": 0
                                  }
                              - id: 22e5cc49-710b-482b-b470-9c3273c7dcfb
                                name: Check Duplicates Not Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request_duplicate
                                    query:
                                      - key: service_id
                                        value: 5620ec856aa918b1008b4567
                                        description: >-
                                          [required]. String - Permite identificar
                                          la categoria a la que pertenece el aviso
                                          o ticket
                                      - key: lat
                                        value: '40.54720023441049'
                                        description: >-
                                          [required]. Float - Coordenada de
                                          latitud geográfica.
                                      - key: lng
                                        value: '-3.6370539665222172'
                                        description: >-
                                          [required]. Float - Coordenada de
                                          longitud geográfica.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '{}'
                              - id: 2e0f03de-5845-4363-8cb4-d73eaefc221d
                                name: Check Duplicates Service Not Configured
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049&lng=-3.6370539665222172
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request_duplicate
                                    query:
                                      - key: service_id
                                        value: 5620ec856aa918b1008b4567
                                        description: >-
                                          [required]. String - Permite identificar
                                          la categoria a la que pertenece el aviso
                                          o ticket
                                      - key: lat
                                        value: '40.54720023441049'
                                        description: >-
                                          [required]. Float - Coordenada de
                                          latitud geográfica.
                                      - key: lng
                                        value: '-3.6370539665222172'
                                        description: >-
                                          [required]. Float - Coordenada de
                                          longitud geográfica.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "Service not configured"
                                  }
                              - id: 8ce7f7fd-50de-4eae-ad96-889792982f8d
                                name: Check Duplicates Without Coordinates
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request_duplicate?service_id=5620ec856aa918b1008b4567&lat=40.54720023441049
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request_duplicate
                                    query:
                                      - key: service_id
                                        value: 5620ec856aa918b1008b4567
                                        description: >-
                                          [required]. String - Permite identificar
                                          la categoria a la que pertenece el aviso
                                          o ticket
                                      - key: lat
                                        value: '40.54720023441049'
                                        description: >-
                                          [required]. Float - Coordenada de
                                          latitud geográfica.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "Lat and lng required"
                                  }
                          - name: Request Detail
                            id: de79a8bb-ddb1-4f3f-99e9-59b044d0a862
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests/{{request_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests
                                  - '{{request_id}}'
                              description: >-
                                **Request param**


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_id | String | \[required\]. ID de la
                                request sobre la cual se requiere obtener el
                                detalle correspondiente. |


                                Este es un endpoint que permite visualizar los
                                datos detallados de un aviso registrado en la
                                API, incluyendo información como la tipología
                                del aviso, su estado actual, datos adicionales
                                relacionados con normativas, metadados de
                                información y archivos conjuntos.
                            response:
                              - id: fbb57c0d-7b29-4b7f-9b80-985d75dbbacb
                                name: Request Detail Ok
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/{{request_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - '{{request_id}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '}'
                              - id: 8b0568d2-dc50-4f71-837a-0fe0da7706b2
                                name: Request Detail Empty
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/{{request_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - '{{request_id}}'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "Request was not found"
                                  }
                          - name: Get Request Media
                            id: 88b0896d-51c4-4c30-b63c-553323ba0d40
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/medias
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - medias
                              description: >-
                                **Request param**


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | \[required\].ID de la
                                request de la cual se desean obtener las
                                imágenes asociadas. (Ej.
                                690502a24e28f2eca706ecde) |


                                Este endpoint permite obtener, en formato
                                paginado, todos los medios asociados a un aviso
                                identificado por su ID, incluyendo imágenes,
                                documentos y archivos complementarios. Para cada
                                medio se expone la tipología del aviso, su
                                estado actual, metadatos relevantes y datos
                                asociados a normativas aplicables
                            response:
                              - id: 8489353a-cb0d-4fdb-be52-d20c66212bef
                                name: Get Request Media Ok
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_token}}/medias
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_token}}'
                                      - medias
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: fa43495d-9fa5-4f9a-903b-39cf3afae6b8
                                name: Get Request Media Empty
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_token}}/medias
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_token}}'
                                      - medias
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "request_token not exist"
                                  }
                          - name: Get Request By Coordinates
                            id: 117276dd-842a-48aa-8a7a-2734c5bf41c0
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header:
                                - key: User-Agent
                                  value: >-
                                    Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                    rv:145.0) Gecko/20100101 Firefox/145.0
                                - key: Accept
                                  value: application/json
                                - key: Accept-Language
                                  value: es
                                - key: Accept-Encoding
                                  value: gzip, deflate, br, zstd
                                - key: Content-Type
                                  value: application/json
                                - key: X-Client-Id
                                  value: >-
                                    4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
                                - key: Authorization
                                  value: >-
                                    Bearer
                                    Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
                                - key: Origin
                                  value: https://mapa-pre.mejoratuciudad.org
                                - key: Connection
                                  value: keep-alive
                                - key: Referer
                                  value: https://mapa-pre.mejoratuciudad.org/
                                - key: Sec-Fetch-Dest
                                  value: empty
                                - key: Sec-Fetch-Mode
                                  value: cors
                                - key: Sec-Fetch-Site
                                  value: same-site
                                - key: Priority
                                  value: u=0
                                - key: TE
                                  value: trailers
                                - key: Cookie
                                  value: lunetics_locale=es
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=40.52528265385&long=-3.62548828125
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests
                                  - coordinates
                                query:
                                  - key: jurisdiction_ids
                                    value: org.alcobendas%2C%20es.madrid
                                    description: >-
                                      String. [optional]. Permite realizar la
                                      búsqueda de avisos utilizando el
                                      jurisdiction_id. En caso de enviar
                                      múltiples jurisdicciones, estas deben ser
                                      separadas por comas.
                                  - key: limit
                                    value: '90'
                                    description: >-
                                      Int [optional]. Permite limitar la
                                      cantidad de resultados obtenidos por
                                      página.
                                  - key: own
                                    value: 'true'
                                    description: >-
                                      Boolean [optional]. Permite limitar la
                                      búsqueda de avisos para que solo se
                                      obtengan los que pertenecen al usuario del
                                      contexto (logueado).
                                  - key: lat
                                    value: '40.52528265385'
                                    description: >-
                                      Float [optional]. Permite establecer la
                                      búsqueda de avisos a partir de coordenadas
                                      especificadas (latitud).
                                  - key: long
                                    value: '-3.62548828125'
                                    description: >-
                                      Float [optional]. Permite establecer la
                                      búsqueda de avisos a partir de coordenadas
                                      especificadas (longitud).
                              description: >-
                                Este endpoint permite realizar la búsqueda de
                                avisos (tickets) a partir de coodernadas
                                especificadas junto con opciones como observar
                                avisos reportados por el usuario logeado o no
                                sin distingo de jurisdicción (si esta no se
                                especifica).
                            response:
                              - id: 78b2c5ad-9453-4c50-af15-8db8f6f61930
                                name: Get Request By Coordinates OK
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:145.0) Gecko/20100101 Firefox/145.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
                                    - key: Origin
                                      value: https://mapa-pre.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-pre.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=40.52528265385&long=-3.62548828125
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - coordinates
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas%2C%20es.madrid
                                        description: >-
                                          String. [optional]. Permite realizar la
                                          búsqueda de avisos utilizando el
                                          jurisdiction_id. En caso de enviar
                                          múltiples jurisdicciones, estas deben
                                          ser separadas por comas.
                                        uuid: ffe17b5e-c803-4d33-9611-2315731b3dfd
                                      - key: limit
                                        value: '90'
                                        description: >-
                                          Int [optional]. Permite limitar la
                                          cantidad de resultados obtenidos por
                                          página.
                                        uuid: f8424e8d-0ca0-482a-836c-b87e60d0d62e
                                      - key: own
                                        value: 'true'
                                        description: >-
                                          Boolean [optional]. Permite limitar la
                                          búsqueda de avisos para que solo se
                                          obtengan los que pertenecen al usuario
                                          del contexto (logueado).
                                        uuid: 3c555d16-6bab-4fc4-b7dd-f78bc2215831
                                      - key: lat
                                        value: '40.52528265385'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (latitud).
                                        uuid: 7f3e0733-b5ca-4967-909f-bb8ab05fbce2
                                      - key: long
                                        value: '-3.62548828125'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (longitud).
                                        uuid: bc947d53-d3b8-4e8a-a500-4fb98dda0879
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png",
                                          "address_string": "C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain",
                                          "lat": 40.52528265385,
                                          "long": -3.62548828125,
                                          "token": "6931a26b70d10e94e8098d15"
                                      }
                                  ]
                              - id: b80fa381-c1e2-4306-b672-0ff9c3301ca0
                                name: >-
                                  Get Request By Coordinates OK without
                                  jurisdiction
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:145.0) Gecko/20100101 Firefox/145.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
                                    - key: Origin
                                      value: https://mapa-pre.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-pre.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/coordinates?limit=90&own=true&lat=40.52528265385&long=-3.62548828125
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - coordinates
                                    query:
                                      - key: limit
                                        value: '90'
                                        description: >-
                                          Int [optional]. Permite limitar la
                                          cantidad de resultados obtenidos por
                                          página.
                                        uuid: a48e6db6-1729-4e99-a7ea-dce39af8c17c
                                      - key: own
                                        value: 'true'
                                        description: >-
                                          Boolean [optional]. Permite limitar la
                                          búsqueda de avisos para que solo se
                                          obtengan los que pertenecen al usuario
                                          del contexto (logueado).
                                        uuid: 72469eca-3df1-4b6c-86fb-e695abffe6cd
                                      - key: lat
                                        value: '40.52528265385'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (latitud).
                                        uuid: edf1c838-f86e-4b76-93a0-e589813fbb20
                                      - key: long
                                        value: '-3.62548828125'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (longitud).
                                        uuid: 0ea2065c-0c27-4b7a-9823-93c5aded386f
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png",
                                          "address_string": "C. del Camino Ancho, 62C, 28109 Alcobendas, Madrid, Spain",
                                          "lat": 40.52528265385,
                                          "long": -3.62548828125,
                                          "token": "6931a26b70d10e94e8098d15"
                                      }
                                  ]
                              - id: 69436a44-d369-4143-9bc8-d69a3ecd161f
                                name: Get Request By Coordinates OK with OWN false
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:145.0) Gecko/20100101 Firefox/145.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
                                    - key: Origin
                                      value: https://mapa-pre.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-pre.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=false&lat=40.52528265385&long=-3.62548828125
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - coordinates
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas%2C%20es.madrid
                                        description: >-
                                          String. [optional]. Permite realizar la
                                          búsqueda de avisos utilizando el
                                          jurisdiction_id. En caso de enviar
                                          múltiples jurisdicciones, estas deben
                                          ser separadas por comas.
                                        uuid: 3b3d331e-c99d-45eb-bd8a-45774631e80e
                                      - key: limit
                                        value: '90'
                                        description: >-
                                          Int [optional]. Permite limitar la
                                          cantidad de resultados obtenidos por
                                          página.
                                        uuid: ffdd4802-c8e0-421c-bd55-bbcf453914b0
                                      - key: own
                                        value: 'false'
                                        description: >-
                                          Boolean [optional]. Permite limitar la
                                          búsqueda de avisos para que solo se
                                          obtengan los que pertenecen al usuario
                                          del contexto (logueado).
                                        uuid: f0929cd3-8629-437b-846a-69da1fd29ead
                                      - key: lat
                                        value: '40.52528265385'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (latitud).
                                        uuid: a399e5ba-ddb1-4b0d-a45e-6c03cc4d2cc9
                                      - key: long
                                        value: '-3.62548828125'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (longitud).
                                        uuid: c22728a4-9d82-48de-b6a4-f8112412a813
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 8da67f42-3000-4e95-863a-75dd09d2456b
                                name: Get Request By Coordinates only lat and lng
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:145.0) Gecko/20100101 Firefox/145.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
                                    - key: Origin
                                      value: https://mapa-pre.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-pre.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/coordinates?limit=90&lat=40.52528265385&long=-3.62548828125
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - coordinates
                                    query:
                                      - key: limit
                                        value: '90'
                                        description: >-
                                          Int [optional]. Permite limitar la
                                          cantidad de resultados obtenidos por
                                          página.
                                        uuid: dcc987ea-970f-44c3-b915-e90f66f82bb0
                                      - key: lat
                                        value: '40.52528265385'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (latitud).
                                        uuid: 6a208371-76c5-496c-aa20-95259ff6b3aa
                                      - key: long
                                        value: '-3.62548828125'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (longitud).
                                        uuid: f18ba989-c798-42d2-9baa-b56b8cb1a626
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 762e77f8-05cf-43a2-92a7-8bfc6a534309
                                name: Get Request By Coordinates Error
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:145.0) Gecko/20100101 Firefox/145.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
                                    - key: Origin
                                      value: https://mapa-pre.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-pre.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=&long=-3.62548828125
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - coordinates
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas%2C%20es.madrid
                                        description: >-
                                          String. [optional]. Permite realizar la
                                          búsqueda de avisos utilizando el
                                          jurisdiction_id. En caso de enviar
                                          múltiples jurisdicciones, estas deben
                                          ser separadas por comas.
                                        uuid: 17b72877-a051-40d1-abac-414978d1eec7
                                      - key: limit
                                        value: '90'
                                        description: >-
                                          Int [optional]. Permite limitar la
                                          cantidad de resultados obtenidos por
                                          página.
                                        uuid: 2e6e13f9-2509-464c-a931-c22cccd94877
                                      - key: own
                                        value: 'true'
                                        description: >-
                                          Boolean [optional]. Permite limitar la
                                          búsqueda de avisos para que solo se
                                          obtengan los que pertenecen al usuario
                                          del contexto (logueado).
                                        uuid: f059bb42-f19b-4491-9d36-22f6967b41f8
                                      - key: lat
                                        value: ''
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (latitud).
                                        uuid: 09cf7cfa-6df8-4f6e-8645-af5ddb62ae73
                                      - key: long
                                        value: '-3.62548828125'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (longitud).
                                        uuid: a47772b2-d557-4d57-a5d5-26be8b381d58
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "ERROR: lat or long was not found\n"
                                      }
                                  ]
                              - id: 1138ce2f-3858-49e0-a28a-4485ad61b4ce
                                name: Get Request By Coordinates Empty response
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:145.0) Gecko/20100101 Firefox/145.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        4dtdtqj5op0kckcgo4skwswoswsw0oo0o0cgwc0g4kccsgoccg
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Y2ZlYWY3MWI3ZjVkZmZhYjZkNTdlMjRjNWMzZTEyYTRhOTkwZGEwZDEwY2UzZDI5NzAyNmZjMmNjMTNkOWQyZg
                                    - key: Origin
                                      value: https://mapa-pre.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-pre.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests/coordinates?jurisdiction_ids=org.alcobendas%2C%20es.madrid&limit=90&own=true&lat=0.0000&long=0.0000
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                      - coordinates
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas%2C%20es.madrid
                                        description: >-
                                          String. [optional]. Permite realizar la
                                          búsqueda de avisos utilizando el
                                          jurisdiction_id. En caso de enviar
                                          múltiples jurisdicciones, estas deben
                                          ser separadas por comas.
                                      - key: limit
                                        value: '90'
                                        description: >-
                                          Int [optional]. Permite limitar la
                                          cantidad de resultados obtenidos por
                                          página.
                                      - key: own
                                        value: 'true'
                                        description: >-
                                          Boolean [optional]. Permite limitar la
                                          búsqueda de avisos para que solo se
                                          obtengan los que pertenecen al usuario
                                          del contexto (logueado).
                                      - key: lat
                                        value: '0.0000'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (latitud).
                                      - key: long
                                        value: '0.0000'
                                        description: >-
                                          Float [optional]. Permite establecer la
                                          búsqueda de avisos a partir de
                                          coordenadas especificadas (longitud).
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                          - name: Requests Owns
                            id: b0f69891-8891-49cb-9a28-e7ff1855af50
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: GET
                              header:
                                - key: Authorization
                                  value: >-
                                    Bearer
                                    MzEwNjIyNTlhMGMyZjBkYjNkZTExOGI5MTdiNWYxYjU5YmUxMzBlMWVhNTVkMGNmZTkyYzBiMjBiNDc1OGZlZg
                                - key: Cookie
                                  value: lunetics_locale=en
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_owns?app_key=1234555
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_owns
                                query:
                                  - key: app_key
                                    value: '1234555'
                                    description: >-
                                      String. (opcional). Si se proporciona,
                                      filtra los requests solo de las
                                      jurisdicciones asociadas a esa aplicación.
                                      Si no se proporciona, busca en todas las
                                      jurisdicciones activas.
                              description: >-
                                **Description**


                                Obtiene todas las solicitudes (requests) que
                                pertenecen al usuario autenticado. Busca
                                requests donde el usuario es el propietario, ya
                                sea por su email o por su ID de usuario.
                            response:
                              - id: 03fe5255-525f-42d7-ae65-f248c0de799c
                                name: Response OK Requests Owns
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        MzEwNjIyNTlhMGMyZjBkYjNkZTExOGI5MTdiNWYxYjU5YmUxMzBlMWVhNTVkMGNmZTkyYzBiMjBiNDc1OGZlZg
                                    - key: Cookie
                                      value: lunetics_locale=en
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_owns?app_key=1234555
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_owns
                                    query:
                                      - key: app_key
                                        value: '1234555'
                                        description: >-
                                          (String). Si se proporciona, filtra los
                                          requests solo de las jurisdicciones
                                          asociadas a esa aplicación. Si no se
                                          proporciona, busca en todas las
                                          jurisdicciones activas.
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 8473a563-a28b-4832-a639-c4dec09467dd
                                name: Not Found Requests Owns
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        MzEwNjIyNTlhMGMyZjBkYjNkZTExOGI5MTdiNWYxYjU5YmUxMzBlMWVhNTVkMGNmZTkyYzBiMjBiNDc1OGZlZg
                                    - key: Cookie
                                      value: lunetics_locale=en
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_owns?app_key=1234555
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_owns
                                    query:
                                      - key: app_key
                                        value: '1234555'
                                        description: >-
                                          (String). Si se proporciona, filtra los
                                          requests solo de las jurisdicciones
                                          asociadas a esa aplicación. Si no se
                                          proporciona, busca en todas las
                                          jurisdicciones activas.
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 403,
                                          "description": "user was not found"
                                      }
                                  ]
                          - name: Requests Follows
                            id: 385a4f67-c9a2-4a6d-94e2-f0e8f549ae97
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: >-
                                      MDIxYmY1YzFiNWMwMTQ1ZDljNmU2OTViMTRlNGY5YTQ3ZjBjZWQzZTJkYTJkZTRlZDVjNTZjMTM2Y2ZjNjZhYQ
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_follows?app_key=1
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_follows
                                query:
                                  - key: app_key
                                    value: '1'
                                    description: >-
                                      string. (Opcional) Identificador único
                                      numérico de la aplicación cliente.
                                      Determina las jurisdicciones disponibles
                                      para filtrar las solicitudes. Si no se
                                      proporciona o no es válido, devuelve una
                                      lista vacía.
                              description: >-
                                **Description**


                                Obtiene la lista de peticiones (requests) que el
                                usuario autenticado está siguiendo.
                            response:
                              - id: 2f9a91d4-daf5-4448-892c-1941b21766de
                                name: Response Ok Requests Follows
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: ''
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "deleted": false,
                                      "jurisdiction_name": "Alcobendas",
                                      "service_id": "570b55b26aa918db008b4567",
                                      "service_code": "60",
                                      "service_name": "Ascensor calle Granada",
                                      "requested_datetime": "2025-11-04T16:02:51+00:00",
                                      "supporting_count": 0,
                                      "following_count": 1,
                                      "evaluations_count": 0,
                                      "address": "P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain",
                                      "updated_datetime": "2025-12-12T21:25:53+00:00",
                                      "evaluations_avg": -1,
                                      "reiterations_count": 0,
                                      "complaints_count": 0,
                                      "jurisdiction_id": "org.alcobendas",
                                      "status_node_type": "initial_node",
                                      "files": [],
                                      "is_evaluable": false,
                                      "typology": {
                                      "hasLocation": true,
                                      "id": "5850dca2e22c6d9f51b00c0f",
                                      "color": "#ebc113",
                                      "description_legend": "Ej: farola fundida",
                                      "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png",
                                      "location_type": "geolocation",
                                      "name": "Aviso",
                                      "order": 1,
                                      "public": true,
                                      "typology_description": "Tengo un problema con un elemento en la calle",
                                      "visible_name": "Aviso",
                                      "with_authorized_users": true,
                                      "with_description": true,
                                      "with_files": true,
                                      "with_geolocation_data": true,
                                      "with_medias": true,
                                      "with_temporality_data": true
                                      },
                                      "current_status_assignments": [],
                                      "public_visibility": false,
                                      "accepted": false,
                                      "additional_data": [],
                                      "comments_count": 0,
                                      "complaining": false,
                                      "current_node_estimated_final_datetime": "2025-11-06T16:02:52+00:00",
                                      "current_node_estimated_start_datetime": "2025-11-04T16:02:52+00:00",
                                      "description": "prueba",
                                      "estimated_final_datetime": "2025-11-17T16:02:52+00:00",
                                      "estimated_start_datetime": "2025-11-04T16:02:52+00:00",
                                      "evaluation": 0,
                                      "following": {
                                      "isFollowing": true,
                                      "channels": {
                                          "email": false,
                                          "push": false
                                      }
                                      },
                                      "medias": [],
                                      "address_string": "P.º de la Chopera, 3, 28100 Alcobendas, Madrid, Spain",
                                      "lat": 40.54628714504,
                                      "long": -3.6569023132324,
                                      "priority": {
                                      "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/priority_icons/5b5c685b5950e.png"
                                      },
                                      "public": true,
                                      "seen": false,
                                      "service": {
                                      "deleted": false,
                                      "parent_service_name": "Ascensores en vía pública",
                                      "group": "570b50756aa918d6008b4567",
                                      "visible_name": "Ascensor calle Granada (Aviso)",
                                      "id": "570b55b26aa918db008b4567",
                                      "service_code": "60",
                                      "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db194ce9e815.png"
                                      },
                                      "service_request_id": "ALC44145",
                                      "status_node": {
                                      "status_node_type": "initial_node",
                                      "name": "Nuevo",
                                      "color": "#f1c40f",
                                      "typology_node_id": "5850dca2e22c6d9f51b00c59",
                                      "visible_name": "Nuevo",
                                      "id": "5850dd34e22c6d9f51b016ef",
                                      "order": 1,
                                      "planned": false
                                      },
                                      "supporting": false,
                                      "tags": [],
                                      "token": "690a23ac4e4e725ed4022cf5",
                                      "user": {
                                      "hasPassword": false,
                                      "nickname": "user_cf6b655f8bdc6b8ce17c",
                                      "avatar": "https://lh3.googleusercontent.com/a/ACg8ocJylebvofiVCRVdAdWAP8Ytps68TyvsFpN9c8mOY0C3Wk-GlUg=s96-c?sz=600",
                                      "id": "68b064f122eb8e9dcf08aad6"
                                      }
                                  }
                              - id: 72cf3725-8da8-415a-9fe2-4f6559442aff
                                name: Not Found Requests Follows
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_follows
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_follows
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 403,
                                          "description": "user was not found"
                                      }
                                  ]
                              - id: 454479a8-f39b-4ce5-bed5-71fe616b5025
                                name: Not app_key Requests Follows
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_follows
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_follows
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '[]'
                          - name: Create Request
                            id: 6603e506-ff7c-4490-82dc-78e801d11aa6
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "additionalData": [
                                          {
                                              "question": "64706cd7a18ec0136f01dea5",
                                              "value": "resp1"
                                          },
                                          {
                                              "question": "5d30696fc5f2f3ac018b4568",
                                              "value": "fgfdg"
                                          },
                                          {
                                              "question": "5d3069ba9e0d8faa018b4571",
                                              "value": "sdfsdf"
                                          },
                                          {
                                              "question": "5d3069dac5f2f3aa018b4567",
                                              "value": "1"
                                          },
                                          {
                                              "question": "6674818e3e995542e9017df3",
                                              "value": [
                                                  "vbvcbvb"
                                              ]
                                          }
                                      ],
                                      "address_string": "Calle Padilla, 17 , Salamanca, Castellana",
                                      "description": "sdgsfsdfsdfsd",
                                      "device_id": "5850de88e22c6d9f51b17722",
                                      "device_type": "5850de88e22c6d9f51b17722",
                                      "email": "witijah950@erapk.com",
                                      "email_notification": true,
                                      "first_name": "Pepito",
                                      "jurisdiction_element": "5c9b55579650e67d42985e80",
                                      "jurisdiction_id": "es.madrid",
                                      "last_name": "Perez",
                                      "lat": 40.54720023441049,
                                      "long": -3.6370539665222172,
                                      "phone": "5551234",
                                      "public": true,
                                      "push_notification": true,
                                      "service_id": "5620ec856aa918b1008b4567",
                                      "sms_notification": true
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests?jurisdiction_id=es.madrid
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests
                                query:
                                  - key: jurisdiction_id
                                    value: es.madrid
                                    description: >-
                                      String [required]. (es.madrid)
                                      Identificador del proyecto utilizado para
                                      individualizar el origen del aviso o
                                      ticket, permitiendo asociar el ticket a un
                                      proyecto específico.
                              description: >-
                                **Description**


                                Este endpoint permite crear un nuevo ticket
                                (aviso) utilizando los datos proporcionados. La
                                creación del ticket está sujeta a validaciones
                                basadas en la jurisdicción, y se restringe a
                                usuarios registrados si así lo requiere la
                                configuración de la jurisdicción.


                                **Body**


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | additionalData | Array | \[required\] Lista de
                                objetos que contienen preguntas y respuestas
                                asociadas. |

                                | address_string | String | \[required\]
                                Dirección física en formato de texto. |

                                | description | String | \[required\]
                                Descripción del servicio o entidad asociada. |

                                | device_id | String | \[required\]
                                Identificador único del dispositivo que realiza
                                la solicitud. |

                                | device_type | String | \[required\] Tipo de
                                dispositivo desde el cual se realiza la
                                solicitud. |

                                | email | String | \[required\] Dirección de
                                correo electrónico del usuario. |

                                | email_notification | Bool | \[required\]
                                Indica si el usuario ha habilitado las
                                notificaciones por correo electrónico. |

                                | first_name | String | \[required\] Nombre del
                                usuario. |

                                | jurisdiction_element | String | \[required\]
                                Identificador del elemento dentro de la
                                jurisdicción. |

                                | jurisdiction_id | String | \[required\]
                                Identificador de la jurisdicción a la que
                                pertenece. |

                                | last_name | String | \[required\] Apellido del
                                usuario. |

                                | lat | Float | \[required\] Coordenada de
                                latitud geográfica. |

                                | long | Float | \[required\] Coordenada de
                                longitud geográfica. |

                                | phone | String | \[required\] Número de
                                teléfono del usuario. |

                                | public | Bool | \[required\] Indica si la
                                información es pública o privada. |

                                | push_notification | Bool | \[required\] Indica
                                si el usuario ha habilitado las notificaciones
                                push. |

                                | service_id | String | \[required\]
                                Identificador único del servicio asociado. |

                                | sms_notification | Bool | \[required\] Indica
                                si el usuario ha habilitado las notificaciones
                                por SMS. |
                            response:
                              - id: dac9e20e-e978-4485-bcba-04526e4c7af0
                                name: Create Request OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "additionalData": [
                                              {
                                                  "question": "64706cd7a18ec0136f01dea5",
                                                  "value": "resp1"
                                              },
                                              {
                                                  "question": "5d30696fc5f2f3ac018b4568",
                                                  "value": "fgfdg"
                                              },
                                              {
                                                  "question": "5d3069ba9e0d8faa018b4571",
                                                  "value": "sdfsdf"
                                              },
                                              {
                                                  "question": "5d3069dac5f2f3aa018b4567",
                                                  "value": "1"
                                              },
                                              {
                                                  "question": "6674818e3e995542e9017df3",
                                                  "value": [
                                                      "vbvcbvb"
                                                  ]
                                              }
                                          ],
                                          "address_string": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "description": "sdgsfsdfsdfsd",
                                          "device_id": "5850de88e22c6d9f51b17722",
                                          "device_type": "5850de88e22c6d9f51b17722",
                                          "email": "witijah950@erapk.com",
                                          "email_notification": true,
                                          "first_name": "Pepito",
                                          "jurisdiction_element": "5c9b55579650e67d42985e80",
                                          "jurisdiction_id": "es.madrid",
                                          "last_name": "Perez",
                                          "lat": 40.54720023441049,
                                          "long": -3.6370539665222172,
                                          "phone": "5551234",
                                          "public": true,
                                          "push_notification": true,
                                          "service_id": "5620ec856aa918b1008b4567",
                                          "sms_notification": true
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests?jurisdiction_id=es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                    query:
                                      - key: jurisdiction_id
                                        value: es.madrid
                                        description: >-
                                          [required]. String. Identificador de
                                          proyecto para individualizar el origen
                                          del aviso o ticket
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "service_request_id": "ALC43688",
                                          "status_node": {
                                              "name": "Nuevo",
                                              "color": "#f1c40f",
                                              "visible_name": "Nuevo",
                                              "id": "5850dd1ee22c6d9f51b0157b"
                                          },
                                          "token": "67d423553596bff44f0a79c5"
                                      }
                              - id: ecaa2906-e49b-49c9-8be9-892c301df7b9
                                name: Create Request with service name
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "additionalData": [
                                              {
                                                  "question": "64706cd7a18ec0136f01dea5",
                                                  "value": "resp1"
                                              },
                                              {
                                                  "question": "5d30696fc5f2f3ac018b4568",
                                                  "value": "fgfdg"
                                              },
                                              {
                                                  "question": "5d3069ba9e0d8faa018b4571",
                                                  "value": "sdfsdf"
                                              },
                                              {
                                                  "question": "5d3069dac5f2f3aa018b4567",
                                                  "value": "1"
                                              },
                                              {
                                                  "question": "6674818e3e995542e9017df3",
                                                  "value": [
                                                      "vbvcbvb"
                                                  ]
                                              }
                                          ],
                                          "address_string": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "description": "sdgsfsdfsdfsd",
                                          "device_id": "5850de88e22c6d9f51b17722",
                                          "device_type": "5850de88e22c6d9f51b17722",
                                          "email": "witijah950@erapk.com",
                                          "email_notification": true,
                                          "first_name": "Pepito",
                                          "jurisdiction_element": "5c9b55579650e67d42985e80",
                                          "jurisdiction_id": "es.madrid",
                                          "last_name": "Perez",
                                          "lat": 40.54720023441049,
                                          "long": -3.6370539665222172,
                                          "phone": "5551234",
                                          "public": true,
                                          "push_notification": true,
                                          "service_id": "Armarios de alumbrado en vía pública",
                                          "sms_notification": true
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests?jurisdiction_id=es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                    query:
                                      - key: jurisdiction_id
                                        value: es.madrid
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "service_request_id": "ALC43688",
                                          "status_node": {
                                              "name": "Nuevo",
                                              "color": "#f1c40f",
                                              "visible_name": "Nuevo",
                                              "id": "5850dd1ee22c6d9f51b0157b"
                                          },
                                          "token": "67d423553596bff44f0a79c5"
                                      }
                              - id: 1fd16b4a-947a-4c15-b4be-83e5207e5376
                                name: Create Request Annonymous User
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "additionalData": [
                                              {
                                                  "question": "64706cd7a18ec0136f01dea5",
                                                  "value": "resp1"
                                              },
                                              {
                                                  "question": "5d30696fc5f2f3ac018b4568",
                                                  "value": "fgfdg"
                                              },
                                              {
                                                  "question": "5d3069ba9e0d8faa018b4571",
                                                  "value": "sdfsdf"
                                              },
                                              {
                                                  "question": "5d3069dac5f2f3aa018b4567",
                                                  "value": "1"
                                              },
                                              {
                                                  "question": "6674818e3e995542e9017df3",
                                                  "value": [
                                                      "vbvcbvb"
                                                  ]
                                              }
                                          ],
                                          "address_string": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "description": "sdgsfsdfsdfsd",
                                          "device_id": "5850de88e22c6d9f51b17722",
                                          "device_type": "5850de88e22c6d9f51b17722",
                                          "email": "witijah950@erapk.com",
                                          "email_notification": true,
                                          "first_name": "Pepito",
                                          "jurisdiction_element": "5c9b55579650e67d42985e80",
                                          "jurisdiction_id": "es.madrid",
                                          "last_name": "Perez",
                                          "lat": 40.54720023441049,
                                          "long": -3.6370539665222172,
                                          "phone": "5551234",
                                          "public": true,
                                          "push_notification": true,
                                          "service_id": "5620ec856aa918b1008b4567",
                                          "sms_notification": true
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests?jurisdiction_id=es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                    query:
                                      - key: jurisdiction_id
                                        value: es.madrid
                                        description: >-
                                          [required]. String. Identificador de
                                          proyecto para individualizar el origen
                                          del aviso o ticket
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 403,
                                          "description": "Jurisdiction does NOT allow Anonymous Users to create a Request"
                                      }
                              - id: 66faf7d6-7fa2-4bf0-9b89-c26ddfe662cf
                                name: Create Request Failed
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "additionalData": [
                                              {
                                                  "question": "64706cd7a18ec0136f01dea5",
                                                  "value": "resp1"
                                              },
                                              {
                                                  "question": "5d30696fc5f2f3ac018b4568",
                                                  "value": "fgfdg"
                                              },
                                              {
                                                  "question": "5d3069ba9e0d8faa018b4571",
                                                  "value": "sdfsdf"
                                              },
                                              {
                                                  "question": "5d3069dac5f2f3aa018b4567",
                                                  "value": "1"
                                              },
                                              {
                                                  "question": "6674818e3e995542e9017df3",
                                                  "value": [
                                                      "vbvcbvb"
                                                  ]
                                              }
                                          ],
                                          "address_string": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "description": "sdgsfsdfsdfsd",
                                          "device_id": "5850de88e22c6d9f51b17722",
                                          "device_type": "5850de88e22c6d9f51b17722",
                                          "email": "witijah950@erapk.com",
                                          "email_notification": true,
                                          "first_name": "Pepito",
                                          "jurisdiction_element": "5c9b55579650e67d42985e80",
                                          "jurisdiction_id": "es.madrid",
                                          "last_name": "Perez",
                                          "lat": 40.54720023441049,
                                          "long": -3.6370539665222172,
                                          "phone": "5551234",
                                          "public": true,
                                          "push_notification": true,
                                          "service_id": "5620ec856aa918b1008b4567",
                                          "sms_notification": true
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests?jurisdiction_id=es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests
                                    query:
                                      - key: jurisdiction_id
                                        value: es.madrid
                                        description: >-
                                          [required]. String. Identificador de
                                          proyecto para individualizar el origen
                                          del aviso o ticket
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": ""
                                      }
                          - name: Create Request Media
                            id: 3acd1912-4ccb-4563-856a-46d2477a8f3f
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - key: media
                                    description: >-
                                      [required]. File. Aquí se recibe el
                                      elemento multimedia que se quiere adjuntar
                                      al ticket o aviso. Formatos permitidos
                                      'png', 'jpg', 'jpeg', 'gif', 'wav', 'mp3',
                                      'mp4', 'srt'
                                    type: file
                                    uuid: 2a1ca954-2d92-4553-a295-f5035508b20f
                                    src: >-
                                      postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721
                                  - key: type
                                    value: '1'
                                    description: >-
                                      [optional]. String. Permite establecer el
                                      tipo de elemento multimedia a adjuntar en
                                      el aviso (FILE_TYPE = 1)
                                    type: text
                                    uuid: d5c41213-664b-4e5e-9357-e80947f7d881
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_medias
                                query:
                                  - key: token
                                    value: 6564b1d0e00dc8a92a0d3597
                                    description: >-
                                      String [required].
                                      (6564b1d0e00dc8a92a0d3597) Identificador
                                      del aviso o ticket al cual se le va a
                                      ajuntar el archivo multimedia.
                                  - key: jurisdiction_id
                                    value: org.alcobendas
                                    description: >-
                                      String [required]. (org.alcobendas)
                                      Identificador de jurisdicción que permite
                                      filtrar la búsqueda del aviso a su
                                      jurisdicción asociada
                              description: >-
                                Este endpoint permite adjuntar archivos
                                multimedia (como imágenes) a una solicitud, los
                                cuales pueden ser utilizados para verificar la
                                atención o resolución de un ticket. La carga de
                                archivos está sujeta a un límite máximo de
                                medios por solicitud y a restricciones de
                                formato para garantizar la compatibilidad y
                                seguridad del sistema.
                            response:
                              - id: 1e16465d-a786-4514-8b77-9ddaf0608394
                                name: Create Request Media Ok
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: media
                                        description: >-
                                          [required]. File. Aquí se recibe el
                                          elemento multimedia que se quiere
                                          adjuntar al ticket o aviso. Formatos
                                          permitidos 'png', 'jpg', 'jpeg', 'gif',
                                          'wav', 'mp3', 'mp4', 'srt'
                                        type: file
                                        uuid: 2a1ca954-2d92-4553-a295-f5035508b20f
                                        src:
                                          - /home/radmas/Pictures/Selection_001.png
                                      - key: type
                                        value: '1'
                                        description: >-
                                          [optional]. String. Permite establecer
                                          el tipo de elemento multimedia a
                                          adjuntar en el aviso (FILE_TYPE = 1)
                                        type: text
                                        uuid: d5c41213-664b-4e5e-9357-e80947f7d881
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_medias
                                    query:
                                      - key: token
                                        value: 6564b1d0e00dc8a92a0d3597
                                        description: >-
                                          [required]. String. Identificador del
                                          aviso o ticket al cual se le va a
                                          ajuntar el archivo multimedia.
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                        description: >-
                                          [required]. String. Identificador de
                                          jurisdicción que permite filtrar la
                                          búsqueda del aviso a su jurisdicción
                                          asociada
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "type": "1",
                                      "media_url": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/open010/67d0b73dcaeda232574653.png",
                                      "created_datetime": "2025-03-11T22:20:45+00:00",
                                      "media_code": "67d0b73fc78ebbfae40bb1b2"
                                  }
                              - id: a93e9858-2448-4b30-a761-2364ce1c2367
                                name: Create Request Media Invalid Format
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: media
                                        description: >-
                                          [required]. File. Aquí se recibe el
                                          elemento multimedia que se quiere
                                          adjuntar al ticket o aviso. Formatos
                                          permitidos 'png', 'jpg', 'jpeg', 'gif',
                                          'wav', 'mp3', 'mp4', 'srt'
                                        type: file
                                        uuid: 2a1ca954-2d92-4553-a295-f5035508b20f
                                        src:
                                          - /home/radmas/Downloads/RAD-8626.js
                                      - key: type
                                        value: '1'
                                        description: >-
                                          [optional]. String. Permite establecer
                                          el tipo de elemento multimedia a
                                          adjuntar en el aviso (FILE_TYPE = 1)
                                        type: text
                                        uuid: d5c41213-664b-4e5e-9357-e80947f7d881
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_medias
                                    query:
                                      - key: token
                                        value: 6564b1d0e00dc8a92a0d3597
                                        description: >-
                                          [required]. String. Identificador del
                                          aviso o ticket al cual se le va a
                                          ajuntar el archivo multimedia.
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                        description: >-
                                          [required]. String. Identificador de
                                          jurisdicción que permite filtrar la
                                          búsqueda del aviso a su jurisdicción
                                          asociada
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 403,
                                      "description": "Media format js not allowed"
                                  }
                              - id: 95c7955f-4646-48a1-aa34-90ea4ad2ae8b
                                name: Create Request Media Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: media
                                        description: >-
                                          [required]. File. Aquí se recibe el
                                          elemento multimedia que se quiere
                                          adjuntar al ticket o aviso. Formatos
                                          permitidos 'png', 'jpg', 'jpeg', 'gif',
                                          'wav', 'mp3', 'mp4', 'srt'
                                        type: file
                                        uuid: 2a1ca954-2d92-4553-a295-f5035508b20f
                                        src:
                                          - >-
                                            postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721
                                      - key: type
                                        value: '1'
                                        description: >-
                                          [optional]. String. Permite establecer
                                          el tipo de elemento multimedia a
                                          adjuntar en el aviso (FILE_TYPE = 1)
                                        type: text
                                        uuid: d5c41213-664b-4e5e-9357-e80947f7d881
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_medias?jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_medias
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                        description: >-
                                          [required]. String. Identificador de
                                          jurisdicción que permite filtrar la
                                          búsqueda del aviso a su jurisdicción
                                          asociada
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "token was not provided"
                                  }
                              - id: b3ebb9ef-36a6-4992-86ab-e917654e4f7f
                                name: Create Request Media Not found Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: media
                                        description: >-
                                          [required]. File. Aquí se recibe el
                                          elemento multimedia que se quiere
                                          adjuntar al ticket o aviso. Formatos
                                          permitidos 'png', 'jpg', 'jpeg', 'gif',
                                          'wav', 'mp3', 'mp4', 'srt'
                                        type: file
                                        uuid: 2a1ca954-2d92-4553-a295-f5035508b20f
                                        src:
                                          - >-
                                            postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721
                                      - key: type
                                        value: '1'
                                        description: >-
                                          [optional]. String. Permite establecer
                                          el tipo de elemento multimedia a
                                          adjuntar en el aviso (FILE_TYPE = 1)
                                        type: text
                                        uuid: d5c41213-664b-4e5e-9357-e80947f7d881
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_medias?token=6564b1d0e00dc8a92a0d3597&jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_medias
                                    query:
                                      - key: token
                                        value: 6564b1d0e00dc8a92a0d3597
                                        description: >-
                                          [required]. String. Identificador del
                                          aviso o ticket al cual se le va a
                                          ajuntar el archivo multimedia.
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                        description: >-
                                          [required]. String. Identificador de
                                          jurisdicción que permite filtrar la
                                          búsqueda del aviso a su jurisdicción
                                          asociada
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "token was not found"
                                  }
                          - name: Search Request By Query
                            id: 526799af-4db4-42a4-b931-70e45461e966
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "jurisdiction_element_ids": ["es.madrid"],
                                      "service_ids": ["Arquetas de alumbrado", "Cableado aéreo de alumbrado público"],
                                      "status": ["Nuevo"],
                                      "typologies": ["Reporte", "Aviso"]
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/requests-list
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests-list
                              description: >-
                                Este endpoint permite la búsqueda de solicitudes
                                o avisos mediante diversos criterios de
                                filtrado. Lo que facilita la localización de
                                tickets o avisos específicos dentro de un
                                conjunto de datos.


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | jurisdiction_element_ids | Array |
                                \[Opcional\]. Permite filtrar la búsqueda de
                                avisos o tickets utilizando el ID o el nombre
                                del subproyecto asociado. Si se desean incluir
                                múltiples valores, estos deben separarse por
                                comas. |

                                | service_ids | Array | \[Opcional\]. Permite
                                filtrar la búsqueda de avisos o tickets
                                utilizando el iID o el nombre de la categoria
                                asociado. Si se desean incluir múltiples
                                valores, estos deben separarse por comas. |

                                | status | Array | \[Opcional\]. Permite filtrar
                                la búsqueda de avisos o tickets utilizando el
                                iID o el nombre del status asociado. Si se
                                desean incluir múltiples valores, estos deben
                                separarse por comas. |

                                | typologies | Array | \[Opcional\]. Permite
                                filtrar la búsqueda de avisos o tickets
                                utilizando el iID o el nombre del tipologia
                                asociado. Si se desean incluir múltiples
                                valores, estos deben separarse por comas. |
                            response:
                              - id: 5594b1fe-540e-49c3-9de8-9d452e33ef22
                                name: Search Request By ServiceName
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "service_ids": ["Arquetas de alumbrado", "Cableado aéreo de alumbrado público"]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests-list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests-list
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "service_id": "5620ed7e6aa918b1008b456e",
                                          "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png",
                                          "service_name": "Cableado aéreo de alumbrado público",
                                          "requested_datetime": "2025-03-05T12:41:48+00:00",
                                          "reiterations_count": 0,
                                          "complaints_count": 0,
                                          "jurisdiction_id": "es.madrid",
                                          "status_node_type": "initial_node",
                                          "typology": {
                                              "id": "5850dca2e22c6d9f51b00c0f",
                                              "color": "#ebc113",
                                              "description_legend": "Ej: farola fundida",
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png",
                                              "location_type": "geolocation",
                                              "order": 1,
                                              "public": true,
                                              "typology_description": "Tengo un problema con un elemento en la calle",
                                              "visible_name": "Aviso",
                                              "with_authorized_users": false,
                                              "with_description": true,
                                              "with_files": true,
                                              "with_geolocation_data": true,
                                              "with_medias": true,
                                              "with_temporality_data": true
                                          },
                                          "public_visibility": true,
                                          "address": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "comments_count": 2,
                                          "complaining": false,
                                          "current_node_estimated_final_datetime": "2025-03-08T12:40:22+00:00",
                                          "current_node_estimated_start_datetime": "2025-03-05T12:40:22+00:00",
                                          "description": "Prueba",
                                          "estimated_final_datetime": "2025-03-18T12:40:22+00:00",
                                          "estimated_start_datetime": "2025-03-05T12:40:22+00:00",
                                          "evaluation": 0,
                                          "jurisdiction_element": {
                                              "map_layers": [
                                                  {
                                                      "backend": "OWS",
                                                      "endpoint": "https://gis-pre.mejoratuciudad.org/geoserver",
                                                      "id": "5d9ee7bcde2efef4018b4569",
                                                      "is_default": false,
                                                      "color": "#000000",
                                                      "internal_name": "zones_prod:Alc_Distritos",
                                                      "name": "Distritos",
                                                      "description": "Distritos",
                                                      "preset": false,
                                                      "public": true,
                                                      "tags": [],
                                                      "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                                      "type": "ADMINISTRATIVE"
                                                  }
                                              ],
                                              "extent": [
                                                  -3.70038574,
                                                  40.50117283,
                                                  -3.55027416,
                                                  40.58886137
                                              ],
                                              "guided_module": false,
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png",
                                              "id": "5c9b55579650e67d42985e80",
                                              "location_additional_data": {},
                                              "name": "es.madrid",
                                              "type": "city",
                                              "visible_name": "madrid",
                                              "is_main": false
                                          },
                                          "address_string": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "lat": 40.518565156005,
                                          "long": -3.6294673401779,
                                          "service_request_id": "ALC43677",
                                          "status_node": {
                                              "typology_node_id": "5850dca2e22c6d9f51b00c59",
                                              "visible_name": "Nuevo",
                                              "id": "5850dd1ee22c6d9f51b0157b",
                                              "order": 1,
                                              "planned": false
                                          },
                                          "supporting": false,
                                          "tags": [],
                                          "token": "67c8468d2c6336655f0044f7",
                                          "worknotes_count": 1
                                      }
                              - id: 686205c9-ae59-4141-be2b-3648a0d4a5de
                                name: Search Request By Status Name
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "status": ["Nuevo"]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests-list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests-list
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "service_id": "5620ed7e6aa918b1008b456e",
                                          "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/service_icons/5db1946d5f9e6.png",
                                          "service_name": "Cableado aéreo de alumbrado público",
                                          "requested_datetime": "2025-03-05T12:41:48+00:00",
                                          "reiterations_count": 0,
                                          "complaints_count": 0,
                                          "jurisdiction_id": "es.madrid",
                                          "status_node_type": "initial_node",
                                          "typology": {
                                              "id": "5850dca2e22c6d9f51b00c0f",
                                              "color": "#ebc113",
                                              "description_legend": "Ej: farola fundida",
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/typology_icons/5b5c6827519b7.png",
                                              "location_type": "geolocation",
                                              "order": 1,
                                              "public": true,
                                              "typology_description": "Tengo un problema con un elemento en la calle",
                                              "visible_name": "Aviso",
                                              "with_authorized_users": false,
                                              "with_description": true,
                                              "with_files": true,
                                              "with_geolocation_data": true,
                                              "with_medias": true,
                                              "with_temporality_data": true
                                          },
                                          "public_visibility": true,
                                          "address": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "comments_count": 2,
                                          "complaining": false,
                                          "current_node_estimated_final_datetime": "2025-03-08T12:40:22+00:00",
                                          "current_node_estimated_start_datetime": "2025-03-05T12:40:22+00:00",
                                          "description": "Prueba",
                                          "estimated_final_datetime": "2025-03-18T12:40:22+00:00",
                                          "estimated_start_datetime": "2025-03-05T12:40:22+00:00",
                                          "evaluation": 0,
                                          "jurisdiction_element": {
                                              "map_layers": [
                                                  {
                                                      "backend": "OWS",
                                                      "endpoint": "https://gis-pre.mejoratuciudad.org/geoserver",
                                                      "id": "5d9ee7bcde2efef4018b4569",
                                                      "is_default": false,
                                                      "color": "#000000",
                                                      "internal_name": "zones_prod:Alc_Distritos",
                                                      "name": "Distritos",
                                                      "description": "Distritos",
                                                      "preset": false,
                                                      "public": true,
                                                      "tags": [],
                                                      "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                                      "type": "ADMINISTRATIVE"
                                                  }
                                              ],
                                              "extent": [
                                                  -3.70038574,
                                                  40.50117283,
                                                  -3.55027416,
                                                  40.58886137
                                              ],
                                              "guided_module": false,
                                              "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/jurisdiction_element/674ddb7deef43095450720.png",
                                              "id": "5c9b55579650e67d42985e80",
                                              "location_additional_data": {},
                                              "name": "es.madrid",
                                              "type": "city",
                                              "visible_name": "madrid",
                                              "is_main": false
                                          },
                                          "address_string": "Calle Alcala, 200 A, Salamanca, Fuente Del Berro",
                                          "lat": 40.518565156005,
                                          "long": -3.6294673401779,
                                          "service_request_id": "ALC43677",
                                          "status_node": {
                                              "typology_node_id": "5850dca2e22c6d9f51b00c59",
                                              "visible_name": "Nuevo",
                                              "id": "5850dd1ee22c6d9f51b0157b",
                                              "order": 1,
                                              "planned": false
                                          },
                                          "supporting": false,
                                          "tags": [],
                                          "token": "67c8468d2c6336655f0044f7",
                                          "worknotes_count": 1
                                      }
                              - id: 64ec70b9-887f-4211-8392-3d1ab12ff3e1
                                name: Search Request By Jurisdiction Element Name
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_element_ids": ["es.madrid"]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests-list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests-list
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: b34c8574-669c-4bf9-9192-cc6846945eb6
                                name: Search Request By Typology Name
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "typologies": ["Reporte", "Aviso"]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests-list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests-list
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 51cfa1e5-c2dd-4e14-9f0d-91ce6f57698e
                                name: Error Lat or Long Was Not Found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_element_ids": ["es.madrid"],
                                          "service_ids": ["Arquetas de alumbrado", "Cableado aéreo de alumbrado público"],
                                          "status": ["Nuevo"],
                                          "typologies": ["Reporte", "Aviso"]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests-list
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests-list
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "message": "lat or long was not found"
                                  }
                          - name: Support Request
                            id: f0b05da3-4c36-4c28-903f-022b7a4d2cf0
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "jurisdiction_id": "org.alcobendas",
                                      "service_request_id": "ALC12345"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_supports
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_supports
                              description: >-
                                Este endpoint permite apoyar un ticket (aviso)
                                utilizando los datos del usuario logeado. Una
                                vez se apoya el ticket reportado se recibirán
                                las notificaciones y novedades del mismo hasta
                                su resolución.


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | jurisdiction_id | String | \[required\].
                                Identificador de la jurisdicción a la que
                                pertenece. |

                                | service_request_id | String | \[required\]
                                Identificador del aviso al que se dará aṕoyo. |
                            response:
                              - id: 1270e859-6ab3-4d65-9c75-1b5f9d9ff280
                                name: Support Request OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/public-api/requests_supports
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - public-api
                                      - requests_supports
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 70cb0bec-dffd-4564-81ac-c83f5dd3b530
                                name: Support Request without service_request_id
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/public-api/requests_supports
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - public-api
                                      - requests_supports
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 400,
                                      "description": "service_request_id was not provided"
                                    }
                                  ]
                              - id: 005a3506-4642-4ac9-b9df-23987c4392a0
                                name: Support Request already
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_supports
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_supports
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 400,
                                      "description": "Already supported request"
                                    }
                                  ]
                          - name: Complaint Request
                            id: bbfc89cb-b97e-4309-a030-c673822f0c0d
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "jurisdiction_id": "org.alcobendas",
                                      "service_request_id": "ALC12345"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_complaints
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_complaints
                              description: >-
                                Este endpoint permite instaurar quejas por parte
                                del usuario hacía un aviso (ticket) específico.


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | jurisdiction_id | String | \[required\].
                                Identificador de la jurisdicción a la que
                                pertenece. |

                                | service_request_id | String | \[required\]
                                Identificador del aviso al que se le asignará la
                                queja. |
                            response:
                              - id: 35e6d454-66aa-4c97-9dee-4f5e0f9b3b54
                                name: Complaint Request OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/public-api/requests_complaints
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - public-api
                                      - requests_complaints
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "deleted": false,
                                    "jurisdiction_name": "Madrid",
                                    "service_id": "69332a4331a53edef30755e8",
                                    "service_code": "1",
                                    "service_name": "Limpieza y Residuos",
                                    "created_date": "27/11/2025",
                                    "requested_datetime": "2025-11-27T18:54:19+00:00",
                                    "created_time": "19:54",
                                    "supporting_count": 0,
                                    "following_count": 0,
                                    "repeated": false,
                                    "evaluations_count": 0,
                                    "address": "Dirección de prueba48",
                                    "updated_datetime": "2025-12-05T18:54:43+00:00",
                                    "evaluations_avg": -1,
                                    "reiterations_count": 0,
                                    "complaints_count": 0,
                                    "jurisdiction_id": "es.madrid",
                                    "status_node_type": "initial_node",
                                    "typology": {
                                      "id": "69332a3a31a53edef30755b1",
                                      "color": "#337ab7",
                                      "icon": "https://mtc.vdeveloper.lan/uploads/local/typology_icons/5bab78af77a61.png",
                                      "name": "avisos",
                                      "visible_name": "Avisos"
                                    },
                                    "accepted": false,
                                    "comments_count": 0,
                                    "complaining": false,
                                    "current_node_estimated_final_datetime": "2025-12-05T19:54:19+00:00",
                                    "current_node_estimated_start_datetime": "2025-12-05T18:54:19+00:00",
                                    "description": "0 - 0 - Madrid - Limpieza y Residuos",
                                    "estimated_final_datetime": "2025-12-05T19:54:19+00:00",
                                    "estimated_start_datetime": "2025-12-05T18:54:19+00:00",
                                    "evaluation": 0,
                                    "following": false,
                                    "address_string": "Dirección de prueba48",
                                    "lat": 40.371,
                                    "long": -3.643,
                                    "priority": {
                                      "icon": "https://mtc.vdeveloper.lan/uploads/local/priority_icons/5bab796235896.png"
                                    },
                                    "public": true,
                                    "seen": false,
                                    "service_request_id": "MAD1001",
                                    "status_node": {
                                      "name": "nuevo",
                                      "color": "#7da038",
                                      "typology_node_id": "69332a3a31a53edef30755b2",
                                      "visible_name": "Nuevo",
                                      "id": "69332a4331a53edef30755e1",
                                      "manual_actions": [
                                        "assign",
                                        "reassign",
                                        "auto_assign",
                                        "comment",
                                        "change_status",
                                        "mark_as_duplicated",
                                        "reiterate",
                                        "complaint",
                                        "generate_work_order",
                                        "edit",
                                        "pause_resume",
                                        "evaluate"
                                      ],
                                      "medias_config": {
                                        "arrival": {
                                          "comment": {
                                            "image": false
                                          },
                                          "note_internal": {
                                            "image": false
                                          }
                                        },
                                        "exit": {
                                          "comment": {
                                            "image": false
                                          },
                                          "note_internal": {
                                            "image": false
                                          }
                                        }
                                      },
                                      "order": 1,
                                      "planned": false,
                                      "status_data_config": {
                                        "answer": false,
                                        "cancellation_reason": false
                                      },
                                      "status_options_config": {},
                                      "worklog_configuration": {}
                                    },
                                    "supporting": false,
                                    "token": "69332a5b31a53edef30756f8",
                                    "user": {
                                      "nickname": "hely.suarez",
                                      "id": "69332a3a31a53edef30755ab"
                                    },
                                    "media_url": "https://mtc.vdeveloper.lan/uploads/local/open010/69332a5b1b13b565139824.jpg"
                                  }
                              - id: f24239e2-6afa-434a-906d-02f1166ef770
                                name: Complaint Request without user
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_complaints
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_complaints
                                status: Internal Server Error
                                code: 500
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 500,
                                      "description": "Call to a member function getEmail() on null"
                                    }
                                  ]
                              - id: 36840db9-1b0a-43b6-b383-8df9698985a5
                                name: Complaint Request without jurisdictionId
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_complaints
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_complaints
                                status: Internal Server Error
                                code: 500
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 500,
                                      "description": "App\\Repository\\Jurisdiction\\JurisdictionRepository::getAndValidate(): Argument #1 ($id) must be of type string, null given, called in /var/www/mtx-backoffice/src/Controller/PublicApi/Open010APIController.php on line 98"
                                    }
                                  ]
                              - id: 8e6ebb35-c4a3-4570-ac82-2bf30e38ca3e
                                name: Complaint Request without service_request_id
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_complaints
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_complaints
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 400,
                                      "description": "service_request_id was not provided"
                                    }
                                  ]
                              - id: 623ce224-655b-4816-b750-135190b83c12
                                name: Complaint Request with existent complaint
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "service_request_id": "ALC12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_complaints
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_complaints
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                    {
                                      "code": 400,
                                      "description": "Already complainted request"
                                    }
                                  ]
                          - name: Requests follows
                            id: 72bee7b4-42ef-484d-8cda-a1536caa0a62
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: >-
                                      YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg
                                    type: string
                              method: POST
                              header:
                                - key: Authorization
                                  value: >-
                                    Bearer
                                    YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg
                                - key: Cookie
                                  value: lunetics_locale=es
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_follows?jurisdiction_id=org.alcobendas&service_request_id=ALC44145&email_notification=true&push_notification=true&sms_notification=true
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_follows
                                query:
                                  - key: jurisdiction_id
                                    value: org.alcobendas
                                    description: >-
                                      String (required) Identificador de la
                                      jurisdicción a la que pertenece la
                                      solicitud
                                  - key: service_request_id
                                    value: ALC44145
                                    description: >-
                                      String (required) Identificador de la
                                      solicitud que se desea seguir
                                  - key: email_notification
                                    value: 'true'
                                    description: >-
                                      bool (opcional)  Activar notificaciones
                                      por email (default: false)
                                    type: text
                                  - key: push_notification
                                    value: 'true'
                                    description: >-
                                      bool (opcional) Activar notificaciones
                                      push (default: false) 
                                    type: text
                                  - key: sms_notification
                                    value: 'true'
                                    description: >-
                                      bool (opcional) Activar notificaciones SMS
                                      (default: false)
                                    type: text
                              description: >-
                                **Description**


                                Registra al usuario autenticado como seguidor de
                                la solicitud identificada por service_request_id
                                dentro de la jurisdicción especificada,
                                permitiendo configurar los canales de
                                notificación deseados.
                            response:
                              - id: 40433374-3198-4690-9428-a61e5cccbbe1
                                name: Response OK Requests follows
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_follows?jurisdiction_id=org.alcobendas&service_request_id=ALC44145
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_follows
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                        uuid: 488f2af4-9165-4267-abd3-0ce2b1252c85
                                      - key: service_request_id
                                        value: ALC44145
                                        uuid: 92399b5c-3917-4f4f-97e9-afd91810338e
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 57883655-c9e2-40aa-bbd7-3a54a655006a
                                name: Requests follows
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_follows.json
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_follows.json
                                status: Internal Server Error
                                code: 500
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 500,
                                          "description": "App\\Repository\\Jurisdiction\\JurisdictionRepository::getAndValidate(): Argument #1 ($id) must be of type string, null given, called in /var/www/mtx-backoffice/src/Controller/PublicApi/Open010APIController.php on line 98"
                                      }
                                  ]
                              - id: 192beb5e-50b1-4da5-939a-f98ebf8895db
                                name: Not Service Request ID Requests follows
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        YTA4ZjhiMGExODMxMDMyYTYzZDQ3YjZiZDJjMTVkODA0ZGIwMzcyMGQ0MDlkM2RjNWQ0ODkwNmMzZDgwMjkwNg
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_follows?jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_follows
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "service_request_id was not provided"
                                      }
                                  ]
                        id: 2ff28b50-776f-4ba5-b95d-ed9c12915c44
                        description: ' '
                      - name: Request Evaluation
                        item:
                          - name: Get Request Evaluations
                            id: 8b8a6c2f-997b-46cb-bb3b-e96b869b5135
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_evaluations/{{request_token}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_evaluations
                                  - '{{request_token}}'
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | ID de la request
                                sobre la cual se desea consultar. |


                                Este endpoint devuelve todas las
                                **evaluaciones** asociadas a un _Request_
                                específico, identificado por su `token`,
                                respetando los permisos de acceso del módulo de
                                evaluaciones.
                            response:
                              - id: de9e442a-5872-46d5-8722-8fde1db6f25d
                                name: Get Request Evaluations OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_evaluations/{{request_token}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_evaluations
                                      - '{{request_token}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "evaluation": 3,
                                          "id": "6930a3be811b8ea85f061fc7",
                                          "user": {
                                              "nickname": "user_16806e2ff266a479e61f",
                                              "id": "672a1a9a12c5ab351b07c644"
                                          }
                                      }
                                  ]
                          - name: Post Request Evaluations
                            id: 069f6dc7-13ac-4c08-b709-20cc41b39891
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "token": "685f09d1f5d925be3d0d5af7",
                                      "evaluation": 3
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_evaluations
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_evaluations
                              description: >-
                                **Body**


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | evaluation | Int | \[required\] Valor de la
                                evaluación asignada a la solicitud. |

                                | token | String | \[required\] Token único que
                                identifica la solicitud (request) a evaluar. |


                                **Description**


                                Este endpoint permite **registrar una evaluación
                                sobre una solicitud existente**, asociándola al
                                usuario autenticado que es autor de la
                                solicitud, la evaluación se guarda siempre que
                                la solicitud exista, sea evaluable, pertenezca
                                al usuario y no haya sido evaluada previamente
                                por él.
                            response:
                              - id: cf683850-363c-4777-9493-6a22d6ec517a
                                name: Post Request Evaluations OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "token": "685f09d1f5d925be3d0d5af7",
                                          "evaluation": 3
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_evaluations
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_evaluations
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "evaluation": "3",
                                      "id": "694465cec869708db10c5cf3",
                                      "user": {
                                          "hasPassword": true,
                                          "nickname": "user_ea05d696b1e00926d803",
                                          "avatar": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/avatars/686dded53b0a9.jpg",
                                          "channels": [
                                              {
                                                  "external": true,
                                                  "id": "673c50e7f9de27ecb80e5cc2",
                                                  "name": "Test"
                                              }
                                          ],
                                          "id": "685efd3de403e56420059cb8",
                                          "notification_channels": [
                                              {
                                                  "external": true,
                                                  "id": "673c50e7f9de27ecb80e5cc2",
                                                  "name": "Test"
                                              }
                                          ],
                                          "last_geofences": [],
                                          "jurisdiction_element_channels": []
                                      }
                                  }
                              - id: 4d11f530-0990-4ea9-bb6f-6d3314927f58
                                name: Post Request Evaluations Request Evaluated
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "token": "685f09d1f5d925be3d0d5af7",
                                          "evaluation": 3
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_evaluations
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_evaluations
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 403,
                                          "description": "Request has already been evaluated"
                                      }
                                  ]
                              - id: 3516c74c-adb3-4e5e-8cc2-94ba77a5f20c
                                name: Post Request Evaluations Not Provided
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "token": "685f09d1f5d925be3d0d5af7"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_evaluations
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_evaluations
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 403,
                                          "description": "Request has already been evaluated"
                                      }
                                  ]
                              - id: 3e8fd0f0-6d7b-4eb7-a0c0-0d0c8ce48ba1
                                name: Post Request Evaluations Token Not Provided
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "evaluation": 3
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_evaluations
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_evaluations
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "token was not provided"
                                      }
                                  ]
                        id: e65a6e5f-1392-471b-8f46-42113670184f
                      - name: Request File
                        item:
                          - name: Get Request Files
                            id: 932ebd80-ece8-43b0-a434-38a10b16e491
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/files
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - files
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | ID de la request
                                sobre la cual se desea consultar los archivos
                                asociados. (Ej. 690368126e14fe090900d728) |


                                Este endpoint permite obtener una lista ordenada
                                de los archivos asociados a una solicitud
                                específica, identificada por el `request_token`.
                                Antes de acceder a los archivos, el sistema
                                verifica si el usuario tiene los permisos
                                adecuados para visualizar dicha información. Si
                                el usuario cuenta con los permisos necesarios,
                                se devuelve la lista completa de archivos
                                relacionados con la petición, organizada de
                                manera estructurada.
                            response:
                              - id: 0dc45125-f393-48ab-aa8a-7a756d532eb5
                                name: Response OK Get Request Files
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "created_at": "2023-11-24T13:35:16+00:00",
                                      "id": "6560a694fb3a56c096076992",
                                      "public": false,
                                      "type": "1",
                                      "url": "https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf",
                                      "description": "documento de prueba.pdf"
                                  }
                              - id: 32298c05-8c1b-42eb-a19a-e990621a9c8f
                                name: Error Request Access Module Not Active
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 403,
                                    "message": "REQUESTS_ACCESS_MODULE not active"
                                  }
                          - name: Add Request File
                            id: d6e1edec-43c9-4ad7-98d0-38295ab87d35
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - key: files[0]
                                    type: file
                                    description: >-
                                      Array. [optional].  Archivos adjuntos a la
                                      nota.
                                    src: >-
                                      /home/radmas/Downloads/CURSO Y MANUAL
                                      RGPD.pdf
                                  - key: descriptions[0]
                                    value: CURSO Y MANUAL RGPD.pdf
                                    type: text
                                    description: >-
                                      String. [optional] (CURSO Y MANUAL
                                      RGPD.pdf). Texto que describe el archivo.
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/files
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - files
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | Es el ID que se
                                utiliza para identificar una solicitud
                                específica en el sistema. |


                                Este endpoint permite adjuntar uno o varios
                                archivos a una solicitud específica. Por cada
                                archivo proporciona una descripción, se usa el
                                nombre original del archivo. Antes de guardar
                                los archivos, el sistema verifica que sean de un
                                tipo permitido para garantizar la seguridad.
                            response:
                              - id: b6a2e224-590c-460d-86b9-ce834259bf94
                                name: Response OK Add Request File
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: files[0]
                                        type: file
                                        src:
                                          - >-
                                            /home/radmas/Downloads/CURSO Y MANUAL
                                            RGPD.pdf
                                      - key: descriptions[0]
                                        value: CURSO Y MANUAL RGPD.pdf
                                        type: text
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "created_at": "2024-11-13T15:30:54+00:00",
                                      "id": "6734c62ebe78a901cb04b655",
                                      "public": false,
                                      "type": "1",
                                      "url": "https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf",
                                      "description": "CURSO Y MANUAL RGPD.pdf"
                                  }
                              - id: 32434d73-2dcd-4967-8091-d0e291398d5e
                                name: Add Request File Format Not Allowed
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: files[0]
                                        type: file
                                        description: >-
                                          Array. [optional].  Archivos adjuntos a
                                          la nota.
                                        src:
                                          - /home/radmas/Pictures/Selection_571.png
                                      - key: descriptions[0]
                                        value: CURSO Y MANUAL RGPD.pdf
                                        type: text
                                        description: >-
                                          String. [optional] (CURSO Y MANUAL
                                          RGPD.pdf). Texto que describe el
                                          archivo.
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 403,
                                      "description": "File format not allowed"
                                  }
                              - id: a55afc9b-4d5b-49b0-9ce5-e8d6ccde514a
                                name: Add Request File invalid Content
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: files[0]
                                        type: file
                                        description: >-
                                          Array. [optional].  Archivos adjuntos a
                                          la nota.
                                        src:
                                          - /home/radmas/Pictures/Selection_571.png
                                      - key: descriptions[0]
                                        value: CURSO Y MANUAL RGPD.pdf
                                        type: text
                                        description: >-
                                          String. [optional] (CURSO Y MANUAL
                                          RGPD.pdf). Texto que describe el
                                          archivo.
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "An error ocurred while uploading the files"
                                  }
                          - name: Edit Request File
                            id: 268bae4c-bcf8-4721-810f-ae35721fb5d2
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: PATCH
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "public": true
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/files/{{file_id}}/edit
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - files
                                  - '{{file_id}}'
                                  - edit
                              description: "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| request_id | String | Es el ID de Request que se utiliza para identificar una solicitud en el sistema. |\n| file_id | String | Es el ID del archivo que se desea eliminar. Se utiliza para localizar un archivo específico asociado a una solicitud en el sistema. |\n| public | Bool | \\[required\\]. Es el campo encargado de asignar como publico el archivo asociado a la request. |\n\nEste endpoint permite a los usuarios modificar el estado de un archivo que ya está\_adjunto a una solicitud. El sistema primero verifica que tienes permiso, luego\_busca el archivo que quieres modificar, guarda las modificaciones. Si algo sale mal, el sistema lo\_hace saber con un mensaje de error."
                            response:
                              - id: fb6ea050-3f60-4a0f-a2fd-cdfcaa584038
                                name: Response OK Edit Request File
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "public": true
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}/edit
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                      - edit
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "created_at": "2024-11-13T16:00:22+00:00",
                                      "id": "6734cd167933b741750f8794",
                                      "public": true,
                                      "type": "1",
                                      "url": "https://mtc.vdeveloper.lan/uploads/sic_pro/open010/6560a694a968b872662722.pdf",
                                      "description": "CURSO Y MANUAL RGPD.pdf"
                                  }
                              - id: 9cf29384-e67b-4c20-b4fd-3039507ce5fd
                                name: Edit Request File Not RequestFile Found
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "public": true
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}/edit
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                      - edit
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":404,
                                      "description":"File not found"
                                  }
                              - id: 7d253a9d-261d-4f56-8388-3ea01bae3e56
                                name: Edit Request Invalid File Content
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: file
                                        type: file
                                        src:
                                          - /home/radmas/Pictures/Selection_571.png
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}/edit
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                      - edit
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":403,
                                      "description":"File format not allowed"
                                  }
                              - id: f8060812-85ba-4ece-87b9-ec93d6cfb6d3
                                name: Edit Request File Edit File
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: file
                                        type: file
                                        src:
                                          - /home/radmas/Pictures/Selection_571.png
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}/edit
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                      - edit
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":400,
                                      "description":"Error to edit RequestFile"
                                  }
                          - name: Delete Request File
                            id: 015aa61a-770d-4eed-ad68-59f0c5a83095
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: DELETE
                              header: []
                              body:
                                mode: formdata
                                formdata: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/files/{{file_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - files
                                  - '{{file_id}}'
                              description: "| **Campo** | **Tipo** | **Descripción** |\n| --- | --- | --- |\n| request_id | String | Es el ID de Request que se utiliza para identificar una solicitud en el sistema. |\n| file_id | String | Es el ID del archivo que se desea eliminar. Se utiliza para localizar un archivo específico asociado a una solicitud en el sistema. |\n\nEste\_endpoint permite eliminar un archivo que\_fue previamente adjuntado a una solicitud específica. Para poder realizar\_esta acción, el usuario debe tener los\_permisos necesarios para editar la solicitud. Si el archivo existe y se elimina correctamente, el sistema confirmará la eliminación. En caso de que el archivo no se\_encuentre o haya algún problema durante el proceso de\_eliminación, el sistema notificará el error correspondiente al\_usuario."
                            response:
                              - id: 25b76e9b-c44d-4a26-a872-d80837159316
                                name: Response OK Delete Request File
                                originalRequest:
                                  method: DELETE
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                status: No Content
                                code: 204
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: c1b85861-f84d-44cc-90b7-24d3860c3b31
                                name: Delete Request File Not Found
                                originalRequest:
                                  method: DELETE
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: file
                                        value: ''
                                        type: text
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":404,
                                      "description":"File not found"
                                  }
                              - id: 28adde83-641e-4869-96ff-c586186a890c
                                name: Delete Request File Media Not Found
                                originalRequest:
                                  method: DELETE
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: file
                                        value: ''
                                        type: text
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":404,
                                      "description":"File not found"
                                  }
                              - id: c5581171-a61f-41f8-9e49-8ac2613169bd
                                name: Delete Request File Fail
                                originalRequest:
                                  method: DELETE
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - key: file
                                        type: file
                                        src:
                                          - /home/radmas/Downloads/message(12).txt
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_id}}/files/{{file_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_id}}'
                                      - files
                                      - '{{file_id}}'
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":400,
                                      "description":"File could not be deleted"
                                  }
                        id: 297f970f-de9f-471a-a116-1793fb5d6383
                        description: ' '
                      - name: Request Reiteration
                        item:
                          - name: Get Request Reiterations
                            id: c4984959-bbe7-47f0-aa87-79a2f0c414f6
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_token}}/reiterations
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_token}}'
                                  - reiterations
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | ID de la request
                                sobre la cual se desea consultar. |


                                Este endpoint devuelve todas las
                                **reiteraciones** asociadas a un _Request_
                                específico, identificado por su `token`, este
                                endpoint permite consultar ese historial de
                                reiteraciones para mostrar seguimiento,
                                actividad o evolución del aviso.
                            response:
                              - id: 8aff77a9-d8c1-4f8c-b677-afa2013c4990
                                name: Get Request Reiterations OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/{{request_token}}/reiterations
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - '{{request_token}}'
                                      - reiterations
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "datetime": "2025-11-30T17:52:26+00:00",
                                          "id": "692c845a9d906168ea03cd4b",
                                          "source": {
                                              "alias": "Workapp (Android)",
                                              "id": "5850de88e22c6d9f51b17718"
                                          }
                                      }
                                  ]
                          - name: Request Reiteration
                            id: 4adda1ec-28ec-4a95-aed1-4988f57c2ac7
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header:
                                - key: User-Agent
                                  value: >-
                                    Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                    rv:136.0) Gecko/20100101 Firefox/136.0
                                - key: Accept
                                  value: application/json
                                - key: Accept-Language
                                  value: es
                                - key: Accept-Encoding
                                  value: gzip, deflate, br, zstd
                                - key: Content-Type
                                  value: application/json
                                - key: X-Client-Id
                                  value: >-
                                    52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4
                                - key: Authorization
                                  value: >-
                                    Bearer
                                    Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA
                                - key: Origin
                                  value: https://mapa-canary.mejoratuciudad.org
                                - key: Connection
                                  value: keep-alive
                                - key: Referer
                                  value: https://mapa-canary.mejoratuciudad.org/
                                - key: Sec-Fetch-Dest
                                  value: empty
                                - key: Sec-Fetch-Mode
                                  value: cors
                                - key: Sec-Fetch-Site
                                  value: same-site
                                - key: Priority
                                  value: u=0
                                - key: TE
                                  value: trailers
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "description": "Muy buen aviso",
                                      "email_notification": "true",
                                      "follow_request": "true",
                                      "push_notification": "true",
                                      "sms_notification": "true",
                                      "source": "5850de88e22c6d9f51b17721"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/request/{{request_id}}/reiteration
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - request
                                  - '{{request_id}}'
                                  - reiteration
                              description: >-
                                | Campo | Tipo |  |

                                | --- | --- | --- |

                                | request_id | String | \[required\] ID de la
                                solicitud (request) a la cual se desea realizar
                                la reiteración |


                                Este endpoint permite al usuario realizar una
                                reiteración de un ticket existente, facilitando
                                la actualización o seguimiento de la solicitud
                                sin generar duplicados en el sistema. La
                                reiteración asegura que los informes
                                relacionados con el mismo problema se gestionen
                                de manera eficiente y sin redundancias.


                                | Campo | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | description | String | \[required\] Mensaje
                                descriptivo sobre el aviso. |

                                | email_notification | Bool | \[required\]
                                Indica si se enviará una notificación por correo
                                electrónico. |

                                | follow_request | Bool | \[required\] Indica si
                                se debe realizar una solicitud de seguimiento. |

                                | push_notification | Bool | \[required\] Indica
                                si se enviará una notificación push al usuario.
                                |

                                | sms_notification | Bool | \[required\] Indica
                                si se enviará una notificación por SMS. |

                                | source | String | \[required\] Identificador
                                de la fuente (dispositivo de origen) que apoya
                                el aviso. |
                            response:
                              - id: 0f20dda1-ae6c-49e0-92db-cc5cdf4ef9a3
                                name: Request Reiteration OK
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:136.0) Gecko/20100101 Firefox/136.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA
                                    - key: Origin
                                      value: https://mapa-canary.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-canary.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "description": "Muy buen aviso",
                                          "email_notification": "true",
                                          "follow_request": "true",
                                          "push_notification": "true",
                                          "sms_notification": "true",
                                          "source": "5850de88e22c6d9f51b17722"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/675854bccb214872520b3bfc/reiteration
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - 675854bccb214872520b3bfc
                                      - reiteration
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "datetime": "2025-03-13T21:55:25+00:00",
                                      "description": "Muy buen aviso",
                                      "email": "witijah950@erapk.com",
                                      "first_name": "Pepito",
                                      "follow_request": "true",
                                      "id": "67d3544d4e10cee6cc011a3f",
                                      "last_name": "Perez",
                                      "phone": "5551234",
                                      "request": {
                                          "following_count": 1,
                                          "reiterations_count": 1,
                                          "complaints_count": 0,
                                          "token": "675854bccb214872520b3bfc"
                                      },
                                      "source": {
                                          "alias": "Canal Web",
                                          "id": "5850de88e22c6d9f51b17722"
                                      },
                                      "user": {
                                          "id": "67d2f56f887735a7be00f7bb",
                                          "nickname": "witijah950"
                                      }
                                  }
                              - id: 910dbfe1-8871-4855-a9f9-96736313217f
                                name: Request Reiteration Bad Request
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:136.0) Gecko/20100101 Firefox/136.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA
                                    - key: Origin
                                      value: https://mapa-canary.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-canary.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "description": "Muy buen aviso",
                                          "email_notification": "true",
                                          "follow_request": "true",
                                          "push_notification": "true",
                                          "sms_notification": "true",
                                          "source": "5850de88e22c6d9f51b17722",
                                          "extra_field": "example"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/675854bccb214872520b3bfc/reiteration
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - 675854bccb214872520b3bfc
                                      - reiteration
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "ERROR: Este formulario no debería contener campos adicionales.\n"
                                      }
                              - id: f6b87a6a-cc38-4c1c-a3a2-72d939840ade
                                name: Request Reiteration Without Permissions
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: User-Agent
                                      value: >-
                                        Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
                                        rv:136.0) Gecko/20100101 Firefox/136.0
                                    - key: Accept
                                      value: application/json
                                    - key: Accept-Language
                                      value: es
                                    - key: Accept-Encoding
                                      value: gzip, deflate, br, zstd
                                    - key: Content-Type
                                      value: application/json
                                    - key: X-Client-Id
                                      value: >-
                                        52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        Yzc1MGUwMGE5OWU1YWRlMmIzODM0NWQ2YTY0ZGQ1NWQxM2ExNjUzNTYxMmNjOTNlODI5MjU1OTdiZTBhYjY5MA
                                    - key: Origin
                                      value: https://mapa-canary.mejoratuciudad.org
                                    - key: Connection
                                      value: keep-alive
                                    - key: Referer
                                      value: https://mapa-canary.mejoratuciudad.org/
                                    - key: Sec-Fetch-Dest
                                      value: empty
                                    - key: Sec-Fetch-Mode
                                      value: cors
                                    - key: Sec-Fetch-Site
                                      value: same-site
                                    - key: Priority
                                      value: u=0
                                    - key: TE
                                      value: trailers
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "description": "Muy buen aviso",
                                          "email_notification": "true",
                                          "follow_request": "true",
                                          "push_notification": "true",
                                          "sms_notification": "true",
                                          "source": "5850de88e22c6d9f51b17722"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/request/675854bccb214872520b3bfc/reiteration
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - request
                                      - 675854bccb214872520b3bfc
                                      - reiteration
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 403,
                                          "description": "REQUESTS_ACCESS_MODULE not active"
                                      }
                        id: 68d5acdd-0b30-4f0a-a625-bccc96bbacf8
                    id: cdabafc9-44b6-40cf-9688-f3356733a42a
                    description: >-
                      Un ticket en es una solicitud digital para gestionar
                      incidencias, tareas o requerimientos. Incluye información
                      clave como descripción, prioridad, estado y asignación.
                  - name: RequestComment
                    item:
                      - name: Comment
                        item:
                          - name: Requests Comments
                            id: f832520f-e8c9-4925-bd60-88b205ac8672
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/requests_comments/{{request_token}}?jurisdiction_id=org.alcobendas
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - requests_comments
                                  - '{{request_token}}'
                                query:
                                  - key: jurisdiction_id
                                    value: org.alcobendas
                                    description: >-
                                      String. [opcional]. Es el identificador de
                                      la jurisdicción que permitira filtrar las
                                      categorias por área geográfica.
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | request_token | String | ID de la request
                                sobre la cual se desea consultar. |


                                Este endpoint devuelve todos los comentarios
                                asociados a un _Request_ específico,
                                identificado por su `token`, permite obtener el
                                historial completo de comentarios registrados en
                                el aviso, respetando las reglas de acceso por
                                jurisdicción y permisos del módulo de
                                solicitudes.
                            response:
                              - id: f148c3de-9cd8-45a0-817e-160b6a5ba2df
                                name: Requests Comments OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/requests_comments/{{request_token}}?jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - requests_comments
                                      - '{{request_token}}'
                                    query:
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "created_datetime": "2025-12-02T15:01:56+00:00",
                                          "comment_code": "692eff645f8583139f0a1ea1",
                                          "description": "¡Hola Michael Santiago!  \n\nEl Ayuntamiento de Alcobendas ya ha recibido tu nuevo aviso referente a Cableado aéreo de alumbrado público. Puedes identificarlo como ALC54673 .\n\n**Te iremos informando de todos los avances que vayamos realizando con respecto al mismo.** Recuerda que puedes darle seguimiento en tiempo real a través de la app móvil.  \n\n_Gracias por mejorar Alcobendas_  \n\n¡Qué tengas un buen día!",
                                          "medias_urls": []
                                      }
                                  ]
                        id: a33b805d-e5a3-411c-a1ca-f53b31920121
                    id: 149a530b-f88c-4413-b9cc-5fb7a115137f
                  - name: SearchEngine
                    item:
                      - name: SearchEngine
                        item:
                          - name: Config
                            id: 5eccb239-6dcc-4e2f-8a78-17ae0ec9debc
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/search_engine/config
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - search_engine
                                  - config
                              description: >-
                                Este endpoint devuelve la configuración dinámica
                                del motor de búsqueda para el usuario
                                autenticado, sirve para construir la interfaz
                                del buscador: filtros, tipos disponibles,
                                jurisdicciones permitidas, preferencias, etc.
                            response:
                              - id: 19746c80-77ce-492f-a984-a825bab81510
                                name: Config OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/search_engine/config
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - search_engine
                                      - config
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "available_types": [
                                          "backofficeUser",
                                          "release",
                                          "request",
                                          "service",
                                          "user",
                                          "predeterminedResponse"
                                      ]
                                  }
                          - name: Search
                            id: fe39471c-9301-4321-a565-ab1402d9c427
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/search_engine/search?jurisdictionIds[]=org.alcobendas&limit=10&own=false&page=1&q=prueba&types[]=request,service&typologyIds[]=67157912d6fb285be7042e43
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - search_engine
                                  - search
                                query:
                                  - key: jurisdictionIds[]
                                    value: org.alcobendas
                                    description: >-
                                      Array. [optional]. Permite realizar la
                                      búsqueda de avisos utilizando el
                                      jurisdiction_id de mongo de una o varias
                                      jurisdicciones asociadas. En caso de
                                      enviar múltiples jurisdicciones, estas
                                      deben ser separadas por comas.
                                  - key: limit
                                    value: '10'
                                    description: Int [optional]. Resultados por página.
                                  - key: own
                                    value: 'false'
                                    description: >-
                                      Bool [optional]. Si va en true, filtra por
                                      usuario autenticado.
                                  - key: page
                                    value: '1'
                                    description: Int [optional]. Página.
                                  - key: q
                                    value: prueba
                                    description: >-
                                      String [optional]. Parámetro de búsqueda
                                      opcional utilizado para filtrar las rutas
                                      de POIs por una palabra clave o frase.
                                  - key: types[]
                                    value: request,service
                                    description: >-
                                      String. [optional]. Especifica el tipo de
                                      configuracion personalizada de la
                                      consulta.
                                  - key: typologyIds[]
                                    value: 67157912d6fb285be7042e43
                                    description: >-
                                      String [optional]. Permite realizar
                                      búsquedas de avisos a partir de la
                                      tipologia a la que pertenezcan.
                              description: >-
                                Este endpoint ejecuta una búsqueda general en el
                                sistema, permite buscar _requests_, _services_ y
                                _predetermined responses_ filtrando por texto,
                                jurisdicciones, tipologías, paginación y si se
                                desea limitar los resultados al usuario
                                autenticado.
                            response:
                              - id: 3b398978-7d9f-433d-9856-4c82c5d7f56f
                                name: Search OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/search_engine/search?jurisdictionIds[]=org.alcobendas&limit=10&own=false&page=1&q=prueba&types[]=request,service&typologyIds[]=67157912d6fb285be7042e43
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - search_engine
                                      - search
                                    query:
                                      - key: jurisdictionIds[]
                                        value: org.alcobendas
                                      - key: limit
                                        value: '10'
                                      - key: own
                                        value: 'false'
                                      - key: page
                                        value: '1'
                                      - key: q
                                        value: prueba
                                      - key: types[]
                                        value: request,service
                                      - key: typologyIds[]
                                        value: 67157912d6fb285be7042e43
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "services": [
                                          {
                                              "service_id": "67157a0fedc96f822e06ce0d",
                                              "description": "Prueba",
                                              "jurisdiction": {
                                                  "id": "561e04ed6aa918910c8b4592",
                                                  "name": "Alcobendas",
                                                  "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                              },
                                              "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/67157ae8b5622248310935.png",
                                              "service_name": "Categoría A2",
                                              "typology": {
                                                  "id": "67157912d6fb285be7042e43",
                                                  "visible_name": "Tipología de pruebas"
                                              }
                                          }
                                      ],
                                      "requests": [
                                          {
                                              "description": "PRUEBA PAQUI",
                                              "service": {
                                                  "service_id": "56fbc8296aa918ee008b4567",
                                                  "description": "Esta categoría es solamente para hacer encargos del Departamento de Vías Públicas",
                                                  "jurisdiction": {
                                                      "id": "561e04ed6aa918910c8b4592",
                                                      "name": "Alcobendas",
                                                      "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                                  },
                                                  "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/5db2be2787fe3.png",
                                                  "service_name": "Encargos a Seromal del Dpto. de Vías Públicas",
                                                  "typology": {
                                                      "id": "5850dca2e22c6d9f51b00c0f",
                                                      "visible_name": "Aviso",
                                                      "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png"
                                                  }
                                              },
                                              "service_request_id": "ALC1510",
                                              "token": "57d8f44c6aa918861b8b4c44"
                                          }
                                      ],
                                      "users": [
                                          {
                                              "full_name": "pruebatestloginradmas ",
                                              "avatar": "https://lh3.googleusercontent.com/a/ACg8ocL1pSnwuE-30ycqboOla78olRl3nZJ2GThgmNRoVkZZjZtR3w=s96-c?sz=600",
                                              "email": "pruebatestloginradmas@gmail.com",
                                              "first_name": "pruebatestloginradmas",
                                              "id": "6745ed9ffaf87f5227001f83",
                                              "last_name": "",
                                              "username": "user_381cc6dedb41c804bdf1"
                                          }
                                      ],
                                      "predeterminedResponses": [
                                          {
                                              "enquiry": {
                                                  "company": {
                                                      "name": "ALC_UPruebas01"
                                                  }
                                              },
                                              "id": "66e60e7103db7073be0996e9",
                                              "body": "Prueba qA 01",
                                              "title": "Prueba de respuesta predefinida"
                                          }
                                      ],
                                      "backofficeUsers": [
                                          {
                                              "id": "66f31aab3c74bf2587090267",
                                              "full_name": "Pruebas Permisos",
                                              "first_name": "Pruebas",
                                              "last_name": "Permisos",
                                              "avatar": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68edfc1ee036b817881213.png"
                                          }
                                      ],
                                      "releases": [
                                          {
                                              "company": {
                                                  "avatar_url": "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/company/68639e2b6a1c88.56054492.png",
                                                  "name": "ALC_ADDA_OPS"
                                              },
                                              "description": "Prueba de comunicación",
                                              "id": "692ca2d59d25f20f8602793f",
                                              "name": "Comunicado de prueba III"
                                          }
                                      ]
                                  }
                        id: 94f306f4-06d4-417c-b16a-f7233637d167
                    id: 51909a0f-e75e-424e-a87d-d3acaa12834b
                  - name: Security
                    item:
                      - name: Security
                        item:
                          - name: Login Through External
                            id: 297b364b-9e0e-413d-8303-3174895f1cda
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "facebook_token": "EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA",
                                      "first_name": "Pepito",
                                      "google_token": "ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW",
                                      "jurisdiction_id": "es.madrid",
                                      "lasr_name": "Perez",
                                      "legal_terms_Accepted": true,
                                      "origin_device": "5850de88e22c6d9f51b17715",
                                      "password": "Radmas*2025",
                                      "register": true,
                                      "user_id": "530dcc3251bbe7f27a702dc6",
                                      "username": "pepito@example.com"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/login/{{jurisdiction_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login
                                  - '{{jurisdiction_id}}'
                              description: >-
                                | Campo | Tipo | **Descripcion** |

                                | --- | --- | --- |

                                | jurisdiction_id | String | \[Required\]
                                jurisdiction_id de mongo de la jurisdiccion
                                correspondiente. |


                                Este endpoint permite a un User realizar el
                                ingreso a la plataforma bajo tres parámetros
                                principales (client_id, username y password)
                                como en el acceso común con la diferencia que
                                aquí es necesaria definir una jusidicción que
                                permita accesos externos. Así mismo, permite
                                realizar el registro de un dispositivo móvil en
                                caso de que el login se realice desde el mismo
                                y/o de un usuario nuevo.


                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | facebook_token | String | \[optional\]. Es una
                                cadena larga alfanumérica generada por Facebook
                                para autenticar a los usuarios en aplicaciones
                                que utilizan su servicio de login. Es único para
                                cada sesión y aplicación, y puede variar en
                                longitud. |

                                | first_name | String | \[optional\]. En caso de
                                registro de User permite especificar el nombre
                                que tendrá el mismo |

                                | google_token | String | \[optional\]. Es una
                                cadena alfanumérica generada por Google para
                                autenticar a los usuarios en aplicaciones o
                                servicios que utilizan Google Sign-In. Unico
                                para cada sesión |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | last_name | String | \[optional\]. En caso de
                                registro de User permite especificar el apellido
                                que tendrá el mismo |

                                | legal_terms_accepted | Boolean | \[required\].
                                Permite identificar si el User a registrar a
                                aceptados los términos y condiciones para el uso
                                de la plataforma |

                                | origin_device | String | \[optional\]. Sirve
                                para identificar el dispositivo desde el cual se
                                está realizando la solicitud de autenticación |

                                | password | String | \[required\]. Se debe
                                ingresar la contraseña concerniente al User
                                deseado o en caso de registro, asignar una
                                contraseña |

                                | register | Boolean | \[required\]. Permite
                                identificar si el User está realizando login o
                                un registro nuevo |

                                | user_id | String | \[optional\]. Permite
                                ingresar el identificador del User para logins
                                externos |

                                | username | String | \[required\]. Permite
                                ingresar el email del User que desea realizar un
                                login a la plataforma |

                                | device | Object | \[optional\]. Permite
                                realizar el registro de un dispositivo móvil
                                junto con el registro de un nuevo User. Esto
                                facilita vincular los dispositivos con el
                                usuario lo que permitirá un criterio adicional
                                de seguridad |
                            response:
                              - id: 3331c3fd-1197-43c1-b827-379cfa05dec3
                                name: Login Through External Session
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login/es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                      - es.madrid
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ"
                                  }
                              - id: 1388ddcd-a7b9-4ac9-968e-37730826c5c2
                                name: Login Through External User Register
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "first_name": "Pepito",
                                          "jurisdiction_id": "es.madrid",
                                          "lasr_name": "Perez",
                                          "legal_terms_Accepted": true,
                                          "password": "mock_12345!",
                                          "register": true,
                                          "username": "pepito"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login/es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                      - es.madrid
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "MzZlZWU2ZDU0MjJkZDIzYTA3YjBhMTA4OTM4MzQ2ZDVkMTExMDJjOTA2ODNmMDljODBmZGQ0NGQ0OGNmNzM2Mg",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "MmUwYjBiZTk2NGExZDllNTkzY2RlNTMwNzg1OTZjMzY1ODA2MDI3MjM2MmM2MDE5YjU2NTk3NDBiZTAxOGY2ZA"
                                  }
                              - id: 4691f935-958a-4d65-a961-1967071f68ca
                                name: Login Through External Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "jurisdiction_id": "es.madrid",
                                          "password": "PruebaCambio-20244!",
                                          "username": "pepito_2@mock.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login/es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                      - es.madrid
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "Username or password are invalid"
                                      }
                              - id: 8e9883aa-b6e4-4a24-9494-d7ce68dc6b11
                                name: Login Through Blocked Login
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_123451"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login/es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                      - es.madrid
                                status: Too Many Requests
                                code: 429
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 429,
                                          "description": "error.login.blocked"
                                      }
                          - name: Login
                            id: 91aa93da-10c9-4f3f-8b5b-29e187a5623b
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |
                                  {
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "facebook_token": "EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA",
                                      "google_token": "ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW",
                                      "jurisdiction_id": "es.madrid",
                                      "legal_terms_accepted": true,
                                      "origin_device": "5850de88e22c6d9f51b17715",
                                      "password": "Radmas*2025",
                                      "register": true,
                                      "user_id": "530dcc3251bbe7f27a702dc6",
                                      "username": "pepito@example.com"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | facebook_token | String | \[optional\]. Es una
                                cadena larga alfanumérica generada por Facebook
                                para autenticar a los usuarios en aplicaciones
                                que utilizan su servicio de login. Es único para
                                cada sesión y aplicación, y puede variar en
                                longitud. |

                                | first_name | String | \[optional\]. En caso de
                                registro de User permite especificar el nombre
                                que tendrá el mismo |

                                | google_token | String | \[optional\]. Es una
                                cadena alfanumérica generada por Google para
                                autenticar a los usuarios en aplicaciones o
                                servicios que utilizan Google Sign-In. Unico
                                para cada sesión |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | last_name | String | \[optional\]. En caso de
                                registro de User permite especificar el apellido
                                que tendrá el mismo |

                                | legal_terms_accepted | Boolean | \[required\].
                                Permite identificar si el User a registrar a
                                aceptados los términos y condiciones para el uso
                                de la plataforma |

                                | origin_device | String | \[optional\]. Sirve
                                para identificar el dispositivo desde el cual se
                                está realizando la solicitud de autenticación |

                                | password | String | \[required\]. Se debe
                                ingresar la contraseña concerniente al User
                                deseado o en caso de registro, asignar una
                                contraseña |

                                | register | Boolean | \[required\]. Permite
                                identificar si el User está realizando login o
                                un registro nuevo |

                                | user_id | String | \[optional\]. Permite
                                ingresar el identificador del User para logins
                                externos |

                                | username | String | \[required\]. Permite
                                ingresar el email del User que desea realizar un
                                login a la plataforma |

                                | device | Object | \[optional\]. Permite
                                realizar login a un User mediante un dispositivo
                                móvil |


                                Este endpoint permite a un User realizar el
                                ingreso a la plataforma bajo tres parámetros
                                principales (client_id, username y password) .
                                Así mismo, permite realizar el registro de un
                                usuario nuevo añadiendo unos campos básicos
                                (first_name, last_name, username, password, etc)
                                y un dispositivo que se vinculará al usuario.
                            response:
                              - id: 9eefd8e0-acc3-477f-b831-8f177ded64bf
                                name: Login OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ"
                                  }
                              - id: c6d18f4f-f35b-4794-8b04-44495fb81e30
                                name: Login User Register
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "first_name": "Pepito",
                                          "jurisdiction_id": "es.madrid",
                                          "lasr_name": "Perez",
                                          "legal_terms_Accepted": true,
                                          "password": "mock_12345!",
                                          "register": true,
                                          "username": "pepito"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ"
                                  }
                              - id: 7b2f6961-19ba-4544-839c-580da5dd1053
                                name: Login Register without LegalTerms accepted
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "first_name": "Pepito",
                                          "jurisdiction_id": "es.madrid",
                                          "lasr_name": "Perez",
                                          "legal_terms_Accepted": false,
                                          "password": "mock_12345!",
                                          "register": true,
                                          "username": "pepito"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "ERROR: Este formulario no debería contener campos adicionales.\nusername:\n    ERROR: Este valor no es una dirección de email válida.\n"
                                      }
                              - id: 2e09a22a-ed47-45db-8e76-838a2b2a401b
                                name: Login Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_123451"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "Username or password are invalid"
                                      }
                              - id: a7cd5c7e-36c8-4871-ac89-c094faaf3dd4
                                name: Login Blocked Login
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_123451"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                status: Too Many Requests
                                code: 429
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 429,
                                          "description": "error.login.blocked"
                                      }
                              - id: 4229b8c9-58be-415c-b842-dfb55986d0ec
                                name: Login Two Factor Auth Fail
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "first_name": "Pepito",
                                          "jurisdiction_id": "es.madrid",
                                          "lasr_name": "Perez",
                                          "legal_terms_Accepted": true,
                                          "password": "mock_12345!",
                                          "register": false,
                                          "username": "pepito"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error": "Two factor authentication disabled"
                                  }
                          - name: Login Process
                            id: c948c580-7531-4c6e-ad81-1022c7358543
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |
                                  {
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "facebook_token": "EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA",
                                      "google_token": "ya29.A0AfH6SMCZyXxP6a0GcQPmZVVkHq59Z_WC1XeQ1GiPzUvJ_YWes6b9Z2D7dYk9zD2GxvZK-CZ_HrtaeIAQHpW",
                                      "jurisdiction_id": "es.madrid",
                                      "legal_terms_accepted": true,
                                      "origin_device": "5850de88e22c6d9f51b17715",
                                      "password": "Radmas*2025",
                                      "register": true,
                                      "user_id": "530dcc3251bbe7f27a702dc6",
                                      "username": "pepito@example.com"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login_process
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login_process
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | facebook_token | String | \[optional\]. Es una
                                cadena larga alfanumérica generada por Facebook
                                para autenticar a los usuarios en aplicaciones
                                que utilizan su servicio de login. Es único para
                                cada sesión y aplicación, y puede variar en
                                longitud. |

                                | first_name | String | \[optional\]. En caso de
                                registro de User permite especificar el nombre
                                que tendrá el mismo |

                                | google_token | String | \[optional\]. Es una
                                cadena alfanumérica generada por Google para
                                autenticar a los usuarios en aplicaciones o
                                servicios que utilizan Google Sign-In. Unico
                                para cada sesión |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | last_name | String | \[optional\]. En caso de
                                registro de User permite especificar el apellido
                                que tendrá el mismo |

                                | legal_terms_accepted | Boolean | \[required\].
                                Permite identificar si el User a registrar a
                                aceptados los términos y condiciones para el uso
                                de la plataforma |

                                | origin_device | String | \[optional\]. Sirve
                                para identificar el dispositivo desde el cual se
                                está realizando la solicitud de autenticación |

                                | password | String | \[required\]. Se debe
                                ingresar la contraseña concerniente al User
                                deseado o en caso de registro, asignar una
                                contraseña |

                                | register | Boolean | \[required\]. Permite
                                identificar si el User está realizando login o
                                un registro nuevo |

                                | user_id | String | \[optional\]. Permite
                                ingresar el identificador del User para logins
                                externos |

                                | username | String | \[required\]. Permite
                                ingresar el email del User que desea realizar un
                                login a la plataforma |

                                | device | Object | \[optional\]. Permite
                                realizar login a un User mediante un dispositivo
                                móvil |


                                Este endpoint permite realizar el ingreso a la
                                plataforma bajo tres parámetros principales
                                (client_id, username y password), así mismo,
                                permite realizar el registro de un usuario nuevo
                                añadiendo unos campos básicos (first_name,
                                last_name, username, password, etc) y un
                                dispositivo que se vinculará al usuario.
                            response:
                              - id: 4d6a2552-c80a-4b29-8aff-5dc547c412c1
                                name: Login Process OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_12345"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_process
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ"
                                  }
                              - id: 5362945e-5577-43e7-bbf6-17c06d263d61
                                name: Login Process User Register
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "first_name": "Pepito",
                                          "jurisdiction_id": "es.madrid",
                                          "lasr_name": "Perez",
                                          "legal_terms_Accepted": true,
                                          "password": "mock_12345!",
                                          "register": true,
                                          "username": "pepito"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_process
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ"
                                  }
                              - id: c9b9b4b3-c5b0-4036-bef2-40cfa11d7ae7
                                name: >-
                                  Login Process Register without LegalTerms
                                  accepted
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "first_name": "Pepito",
                                          "jurisdiction_id": "es.madrid",
                                          "lasr_name": "Perez",
                                          "legal_terms_Accepted": false,
                                          "password": "mock_12345!",
                                          "register": true,
                                          "username": "pepito"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_process
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "ERROR: Este formulario no debería contener campos adicionales.\nusername:\n    ERROR: Este valor no es una dirección de email válida.\n"
                                      }
                              - id: 3136c04f-f3e8-4c52-b120-b4478aeaf62d
                                name: Login Process Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_123451"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_process
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "Username or password are invalid"
                                      }
                              - id: 9c015a83-4cac-4deb-a2c2-3e8e23b85bc9
                                name: Login Process Blocked Login
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "username": "pepito",
                                          "password": "mock_123451"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_process
                                status: Too Many Requests
                                code: 429
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 429,
                                          "description": "error.login.blocked"
                                      }
                              - id: 44c97ed2-f797-42b5-9d4d-06e2042751fe
                                name: Login Process Two Factor Auth Fail
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "first_name": "Pepito",
                                          "jurisdiction_id": "es.madrid",
                                          "lasr_name": "Perez",
                                          "legal_terms_Accepted": true,
                                          "password": "mock_12345!",
                                          "register": false,
                                          "username": "pepito"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_process
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error": "Two factor authentication disabled"
                                  }
                          - name: Two factor auth confirmation
                            id: fae35c87-dec5-49fe-ac4b-54eb5cb485db
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "code": "7333",
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "hash": "a2215fe1c8a17984d33aac9fe80b5660"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/security/2fa-confirmation
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - security
                                  - 2fa-confirmation
                              description: >-
                                Este endpoint permite acceder a la plataforma
                                por medio del doble factor de autenticación.
                                Para tener un ingreso exitoso es necesario que
                                el usuario confirme el código de autenticación
                                que llegará por el medio externo registrado.


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | code | String | \[required\]. Número generado
                                de manera aleatoria de longitud 4. Permite la
                                comprobación junto con el hash de la fiabilidad
                                del intento de login con doble factor. Este es
                                recibido a través de correo electrónico |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los BackofficeUser son
                                manager_client |

                                | hash | String | \[required\]. Código aleatorio
                                de tipo md5 de una longitud de 32 caracteres que
                                permite la verificación del intento de login con
                                doble factor. |
                            response:
                              - id: c7608223-d2d5-4ad9-baf9-0e37ad5edf3b
                                name: Two factor auth confirmation OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "code": "7333",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "hash": "a2215fe1c8a17984d33aac9fe80b5660"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/2fa-confirmation
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - 2fa-confirmation
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "access_token" : "YTljZjkzZDU5ZjA2NmE3MjgxZWIwYzRlYzNiYTRhMjY3ODY1NmRjYmI0MmY3OTdhNjMzNjU2M2ZlN2Q0ODg1ZA",
                                    "expires_in" : 2592000,
                                    "token_type" : "bearer",
                                    "scope" : null,
                                    "refresh_token" : "NmI0YzgwYjcwNzczMmNmNWFmODExMDg1MjI5ZjUyZjJjMjZhMGY5NDliZGY5YTcxOGI3ZmIxODE5ZDRkODUwNw"
                                  }
                              - id: c818e8a0-db10-4ad9-8741-5c7e58625370
                                name: Two factor auth confirmation invalid hash
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "code": "7333",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "hash": "a2215fe1c8a17984d33aac9fe80b5660"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/2fa-confirmation
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - 2fa-confirmation
                                status: Unauthorized
                                code: 401
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 401,
                                    "message": "Hash sent does not exists or has expired!"
                                  }
                              - id: 66126be8-a4b4-4ca0-85d8-36faad04e100
                                name: Two factor auth confirmation invalid client id
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "code": "7333",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg41",
                                          "hash": "a2215fe1c8a17984d33aac9fe80b5660"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/2fa-confirmation
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - 2fa-confirmation
                                status: Unauthorized
                                code: 401
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "description": "Client_id is invalid",
                                      "error_code": 1058
                                  }
                              - id: a9a0eaa7-aabe-4484-955e-1b8c7cbedf86
                                name: Two factor auth confirmation invalid code
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "code": "7313",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "hash": "a2215fe1c8a17984d33aac9fe80b5660"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/2fa-confirmation
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - 2fa-confirmation
                                status: Conflict
                                code: 409
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "description": "Code sent does not match. Recheck your email",
                                      "error_code": 1201
                                  }
                              - id: acae3141-1ba3-4ff2-99c3-f92c05072b84
                                name: Two factor auth confirmation
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "code": "7333",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "hash": "a2215fe1c8a17984d33aac9fe80b5660"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/2fa-confirmation
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - 2fa-confirmation
                                status: Unauthorized
                                code: 401
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "description": "Code sent does not match. You ran out of retries. You must restart the whole login process",
                                      "error_code": 1200
                                  }
                          - name: Logout
                            id: 4474d093-9032-4731-afc1-99b75e36c549
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "app_key": 2,
                                      "device_id": "5b5c5ef0e6b72aa8018b4569"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/logout
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - logout
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | app_key | Int | \[required\]. Permite
                                identificar la validez de la solicitud
                                controlando que el dispositivo que cierra sesión
                                se encuentre dentro de los autorizados |

                                | device_id | String | \[optional\]. Permite
                                identificar los inicios de sesión que posee el
                                dispositivo en diferentes navegadores. Además,
                                permite vincular el dispositivo con un User. |


                                Este endpoint permite al usuario loggeado salir
                                de la aplicación de manera segura. Una vez
                                realizado el llamado de este endpoint, el
                                usuario tendrá que loggearse nuevamente si desea
                                acceder a la plataforma.
                            response:
                              - id: c03c2af3-33b9-4061-bf20-d2916aa9c4ee
                                name: Logout OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "device_id": "5b5c5ef0e6b72aa8018b4569"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: mtc.vdeveloper.lan/public-api/logout
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - logout
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":200,
                                      "description":"successfully logged out"
                                  }
                              - id: 63020f8d-33b2-4635-a515-1eac23359cdf
                                name: Logout without login
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "device_id": "5b5c5ef0e6b72aa8018b4569"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/logout
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - logout
                                status: Unauthorized
                                code: 401
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "message": "No API token provided"
                                  }
                              - id: 7251bfe8-dd4e-4737-aabe-6b008f59c66a
                                name: Logout failed
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "device_id": "5b5c5ef0e6b72aa8018b4569"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/logout
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - logout
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "message": "logout failed"
                                  }
                          - name: Login Google
                            id: 1736d53f-7628-4346-a776-1562133df621
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "app_key": 2,
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "google_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                      "jurisdiction_id": "org.alcobendas",
                                      "remote_access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                      "user_id": "530dcc3251bbe7f27a702dc6"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login_google
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login_google
                              description: >-
                                | Campo | Tipo | Descripcion |

                                | --- | --- | --- |

                                | app_key | Int | \[optional\]. Permite
                                identificar la validez de la solicitud
                                controlando que el dispositivo que cierra sesión
                                se encuentre dentro de los autorizados |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | google_token | String | \[required\]. Es una
                                cadena alfanumérica generada por Google para
                                autenticar a los usuarios en aplicaciones o
                                servicios que utilizan Google Sign-In. Unico
                                para cada sesión |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | remote_access_token | String | \[optional\].
                                Token que se enviará a Google para validarlo
                                (mismo valor de google_token). |

                                | user_id | String | \[optional\]. Permite
                                ingresar el identificador del User para logins
                                externos |


                                Este endpoint permite realizar el acceso a la
                                plataforma a través de una cuenta de Google
                                previamente registrada en dicha plataforma.
                            response:
                              - id: f4dad527-08cd-4b1c-9587-c1f6638496fb
                                name: Login Google OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "google_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                          "jurisdiction_id": "org.alcobendas",
                                          "remote_access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                          "user_id": "530dcc3251bbe7f27a702dc6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login_google
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_google
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "access_token" : "MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw",
                                    "expires_in" : 2592000,
                                    "token_type" : "bearer",
                                    "scope" : null,
                                    "refresh_token" : "ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ"
                                  }
                              - id: 2c2c32bc-2f22-4210-a060-bf27c3713530
                                name: Login Google Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "jurisdiction_id": "org.alcobendas",
                                          "user_id": "530dcc3251bbe7f27a702dc6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login_google
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_google
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":400,
                                      "description":"remote_access_token:\n    ERROR: remote access token was not provided\n"
                                  }
                          - name: Login Google Process
                            id: d877cbd5-c17e-4645-a641-ceffa39562f1
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "app_key": 2,
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "google_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                      "jurisdiction_id": "org.alcobendas",
                                      "remote_access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                      "user_id": "530dcc3251bbe7f27a702dc6"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/login_google_process
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login_google_process
                              description: >-
                                | Campo | Tipo | Descripcion |

                                | --- | --- | --- |

                                | app_key | Int | \[optional\]. Permite
                                identificar la validez de la solicitud
                                controlando que el dispositivo que cierra sesión
                                se encuentre dentro de los autorizados |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | google_token | String | \[required\]. Es una
                                cadena alfanumérica generada por Google para
                                autenticar a los usuarios en aplicaciones o
                                servicios que utilizan Google Sign-In. Unico
                                para cada sesión |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | remote_access_token | String | \[optional\].
                                Token que se enviará a Google para validarlo
                                (mismo valor de google_token). |

                                | user_id | String | \[optional\]. Permite
                                ingresar el identificador del User para logins
                                externos |


                                Este endpoint permite **iniciar sesión usando
                                Google OAuth**, procesando el `id_token` enviado
                                por el cliente.
                            response:
                              - id: ae55190e-c48b-4e5d-85f2-286f8809999c
                                name: Login Google Process OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "google_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                          "jurisdiction_id": "org.alcobendas",
                                          "remote_access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjEzMGZkY2VmY2M4ZWQ3YmU2YmVkZmE2ZmM4Nzk3MjIwNDBjOTJiMzgiLCJ0eXAiOiJKV1QifQ",
                                          "user_id": "530dcc3251bbe7f27a702dc6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_google_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_google_process
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "access_token" : "MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw",
                                    "expires_in" : 2592000,
                                    "token_type" : "bearer",
                                    "scope" : null,
                                    "refresh_token" : "ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ"
                                  }
                              - id: 88c2579f-9504-4672-9457-67b49e1d80f7
                                name: Login Google Process Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "jurisdiction_id": "org.alcobendas",
                                          "user_id": "530dcc3251bbe7f27a702dc6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_google_process
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_google_process
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code":400,
                                      "description":"remote_access_token:\n    ERROR: remote access token was not provided\n"
                                  }
                          - name: Login Apple
                            id: e0800a6c-dd07-4af5-a418-1978a114d17d
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "avatar": "http://moock_images.com/123456.jpg",
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "origin_device": "5850de88e22c6d9f51b17715",
                                      "remote_access_token": "eyJraWQiOiJFRUQ4TzVDNDkiLCJhbGciOiJFUzI1NiJ9.eyJzdWIiOiIwMDExMjM0NTY3ODkwIiwiaXNzIjoiY29tLmFwcGxlLmlkIiwiaWF0IjoxNjAwMDU2MjAwLCJleHAiOjE2MDAwNjAyMDB9.ASFHXJdjw5EfV5t0EPEv9H2L2O9pZyoqaJq0kV1nJJoQOehwCtfMFuz9B3",
                                      "username": "pepito@mock.com"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login_apple
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login_apple
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | avatar | String | \[optional\]. Tiene la
                                función de almacenar o mostrar la imagen de
                                perfil del usuario que proviene del proveedor
                                externo de autenticación |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | origin_device | String | \[optional\]. Sirve
                                para identificar el dispositivo desde el cual se
                                está realizando la solicitud de autenticación |

                                | remote_access_token | String | \[required\].
                                Es emitido por Apple cuando un usuario inicia
                                sesión en una aplicación que utiliza "Sign in
                                with Apple". Estos tokens son utilizados para
                                autenticar al usuario y validar su sesión |

                                | username | String | \[optional\]. Permite
                                ingresar el username o email del User que desea
                                realizar un login a la plataforma |


                                Este endpoint permite realizar el acceso a la
                                plataforma a través de una cuenta de Apple
                                previamente registrada en dicha plataforma.
                            response:
                              - id: 4b07cc02-b05b-4112-97c2-a95c1b7ee478
                                name: Login Apple OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "avatar": "http://moock_images.com/123456.jpg",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "origin_device": "5850de88e22c6d9f51b17715",
                                          "remote_access_token": "eyJraWQiOiJFRUQ4TzVDNDkiLCJhbGciOiJFUzI1NiJ9.eyJzdWIiOiIwMDExMjM0NTY3ODkwIiwiaXNzIjoiY29tLmFwcGxlLmlkIiwiaWF0IjoxNjAwMDU2MjAwLCJleHAiOjE2MDAwNjAyMDB9.ASFHXJdjw5EfV5t0EPEv9H2L2O9pZyoqaJq0kV1nJJoQOehwCtfMFuz9B3",
                                          "username": "pepito@mock.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login_apple
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_apple
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ"
                                  }
                              - id: 55d5bd1d-7995-4d76-8278-e0219f3a6470
                                name: Login Apple Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "avatar": "http://moock_images.com/123456.jpg",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "origin_device": "5850de88e22c6d9f51b17715",
                                          "username": "pepito@mock.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login_apple
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_apple
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "remote_access_token:\n    ERROR: remote access token was not provided\n"
                                  }
                              - id: 6a823b2f-6a5e-4529-a47b-b8670428fa78
                                name: Login Apple Not Logged
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "avatar": "http://moock_images.com/123456.jpg",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "origin_device": "5850de88e22c6d9f51b17715",
                                          "remote_access_token": "eyJraWQiOiJFRUQ4TzVDNDkiLCJhbGciOiJFUzI1NiJ9.eyJzdWIiOiIwMDExMjM0NTY3ODkwIiwiaXNzIjoiY29tLmFwcGxlLmlkIiwiaWF0IjoxNjAwMDU2MjAwLCJleHAiOjE2MDAwNjAyMDB9.ASFHXJdjw5EfV5t0EPEv9H2L2O9pZyoqaJq0kV1nJJoQOehwCtfMFuz9B3",
                                          "username": "pepito@mock.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login_apple
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_apple
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "not logged"
                                  }
                          - name: Login Facebook
                            id: 6d1f2cf4-e1fe-4465-b87d-55bda5ca7266
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "app_key": 2,
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "jurisdiction_id": "es.madrid",
                                      "remote_access_token": "EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA",
                                      "user_id": "66fc095b2fbcedfe5e0c8ff6"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login_facebook
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login_facebook
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | app_key | String | \[optional\]. Permite
                                identificar la validez de la solicitud
                                controlando que el dispositivo que cierra sesión
                                se encuentre dentro de los autorizados |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | remote_access_token | String | \[required\].
                                Es una cadena larga alfanumérica generada por
                                Facebook para autenticar a los usuarios en
                                aplicaciones que utilizan su servicio de login.
                                Es único para cada sesión y aplicación, y puede
                                variar en longitud. |

                                | user_id | String | \[optional\]. Permite
                                ingresar el identificador del User para logins
                                externos |


                                Este endpoint permite realizar el acceso a la
                                plataforma a través de una cuenta de Facebook
                                previamente registrada en dicha plataforma.
                            response:
                              - id: d6907fdf-8c5b-4313-8319-f23a1f297744
                                name: Login Facebook OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "jurisdiction_id": "es.madrid",
                                          "remote_access_token": "EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA",
                                          "user_id": "66fc095b2fbcedfe5e0c8ff6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_facebook
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_facebook
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ"
                                  }
                              - id: 649ed04f-91d5-4760-9aad-285532fa8002
                                name: Login Facebook without token
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "jurisdiction_id": "es.madrid",
                                          "user_id": "66fc095b2fbcedfe5e0c8ff6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_facebook
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_facebook
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 403,
                                      "description": "facebook credentials not provided"
                                  }
                              - id: e79dc255-c0c7-41cc-874b-66c74ee5799b
                                name: Login Facebook Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "jurisdiction_id": "es.madrid",
                                          "remote_access_token": "EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA",
                                          "user_id": "66fc095b2fbcedfe5e0c8ff6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_facebook
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_facebook
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "facebook does not provide email"
                                  }
                              - id: 308f5c42-ec12-4dae-b0cd-5f0bc517ea02
                                name: Login Facebook Request Error
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "jurisdiction_id": "es.madrid",
                                          "remote_access_token": "EAAGm0PX4ZCpsBAPZBzZAyZCZCpZAgZC3ZAQpZACh1ZA2ZCZCaZBZCZAXXAVXV7DZCBlrtr5ZA2ZAyZCZA5ZA76ZAeAzAhPhmZB9ZA3yybZA64kpZB9ZA8ZA",
                                          "user_id": "66fc095b2fbcedfe5e0c8ff6"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login_facebook
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login_facebook
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "Request error"
                                  }
                          - name: Login JWT
                            id: 43c398db-652f-4bd8-abdc-65eb9f97b24b
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ3aGF0c2FwcF9pZCI6IndoYXRzYXBwOis1MjEzMzI0OTA1ODQ4In0.0f7YWZUamhmvzgbodKNylN9s98RgVO5hc2m5zfjT9GQ"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login-jwt
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login-jwt
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | token | String | \[required\]. Al iniciar
                                sesión, el servidor genera un token que incluye
                                la información del usuario y lo envía al
                                cliente. El cliente almacena este token y lo
                                envía con cada solicitud subsecuente para
                                acceder a recursos protegidos |


                                Este endpoint permite realizar un login o
                                registro de un nuevo usuario a partir de un bot
                                autorizado para tal fin. Los datos del usuario
                                son encriptados mediante un hash JWT.
                            response:
                              - id: d615f537-5bfb-4c77-92df-d0d393d5190e
                                name: Login JWT OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ3aGF0c2FwcF9pZCI6IndoYXRzYXBwOis1MjEzMzI0OTA1ODQ4In0.0f7YWZUamhmvzgbodKNylN9s98RgVO5hc2m5zfjT9GQ"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: mtc.vdeveloper.lan/public-api/login-jwt
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - login-jwt
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "MWQyYTQ5ODFiZTg0ODJhYTQ3MDFhMzVjMzkzNzdiYzI0N2JmNzE0MTczN2MzY2M4ZWUxNDY1MmIxYzY5N2MxNw",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "ODI4NTg1ZTkzZDQwOWUwM2U4NzYzYTRlYTlmYTE1ZTg2NTMxYzQ0NjIzYWFlMTM3MDM5YzhhNDU2MmZlNDU1NQ"
                                  }
                              - id: 09b9c12d-97d8-47db-ad2d-cda1f187d273
                                name: Login JWT Client Id null
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ3aGF0c2FwcF9pZCI6IndoYXRzYXBwOis1MjEzMzI0OTA1ODQ4In0.0f7YWZUamhmvzgbodKNylN9s98RgVO5hc2m5zfjT9GQ"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login-jwt
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login-jwt
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "client_id required"
                                  }
                              - id: a877a6ce-00fb-4065-a33d-19b2204426d6
                                name: Login JWT Token null
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/login-jwt
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login-jwt
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "Request error"
                                  }
                          - name: Reset Password
                            id: 59c3149b-997d-4e2f-b52b-1442a85a2890
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "app_key": "53982173e940f6d7408b4568",
                                      "jurisdiction_id": "es.madrid",
                                      "username": "mock@correo.com"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/reset_password
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - reset_password
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | app_key | String | \[optional\]. Permite
                                identificar la validez de la solicitud
                                controlando que el dispositivo que cierra sesión
                                se encuentre dentro de los autorizados |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | username | String | \[required\]. Permite
                                ingresar el username o email del User que desea
                                realizar un login a la plataforma |


                                Este endpoint permite al usuario restaurar la
                                contraseña de su cuenta. El proceso requiere el
                                username registrado de la cuenta y si el valor
                                es válido llegará un correo de recuperación a la
                                cuenta respectiva si existe un correo
                                registrado.
                            response:
                              - id: bb91bf54-1f9b-44bc-bc51-0ee8c8e347d6
                                name: Reset Password OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "jurisdiction_id": "es.madrid",
                                          "username": "mock@correo.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/reset_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - reset_password
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 200,
                                      "description": "E-mail sent to user"
                                  }
                              - id: b96c7fd5-6384-4570-a5fc-f86533811709
                                name: Reset Password user not found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "jurisdiction_id": "es.madrid",
                                          "username": "mock@correo.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/reset_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - reset_password
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "User mock@correo.com was not found"
                                  }
                              - id: 76ff179d-99a0-4b45-8ee0-95f913291776
                                name: Reset Password email not send
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "jurisdiction_id": "es.madrid",
                                          "username": "mock_user"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/reset_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - reset_password
                                status: Unprocessable Content
                                code: 422
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 422,
                                      "description": "Cant send an email to User mock_user since he/she has no email!"
                                  }
                              - id: 793ee055-f3b9-470d-b855-6cdaa4e4a4bb
                                name: Reset Password Invalid Form
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": 2,
                                          "jurisdiction_id": "es.madrid",
                                          "username": "mock@correo.com",
                                          "mock_field": "asd"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/reset_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - reset_password
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "ERROR: This form should not contain extra fields.\n"
                                  }
                          - name: Recover Password
                            id: 2d8167e9-8650-4877-b40f-468e6d54a4c0
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "app_key": "68c194511794bfe7fa02734a",
                                      "jurisdiction_id": "org.alcobendas",
                                      "username": "michael.martinez@gopenux.com"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/recover_password
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - recover_password
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | app_key | String | \[optional\]. Permite
                                identificar la validez de la solicitud
                                controlando que el dispositivo que cierra sesión
                                se encuentre dentro de los autorizados |

                                | jurisdiction_id | String | \[optional\].
                                Permite especificar la jurisdicción a la que
                                pertenecerá el User |

                                | username | String | \[required\]. Permite
                                ingresar el username o email del User que desea
                                realizar un login a la plataforma |


                                Este endpoint permite **iniciar el proceso de
                                recuperación de contraseña** de un usuario,
                                recibe el ID del usuario y, opcionalmente, el
                                `app_key` y `jurisdiction_id`.
                            response:
                              - id: e4698f7a-d19e-4dcd-beb1-ad7a647804e8
                                name: Recover Password OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": "68c194511794bfe7fa02734a",
                                          "jurisdiction_id": "org.alcobendas",
                                          "username": "michael.martinez@gopenux.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/recover_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - recover_password
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 200,
                                      "description": "E-mail sent to user"
                                  }
                              - id: d4dd9afb-c730-407d-b557-c75ea6c654f0
                                name: Recover Password user not found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": "68c194511794bfe7fa02734a",
                                          "jurisdiction_id": "org.alcobendas",
                                          "username": "mock@correo.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/recover_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - recover_password
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "User mock@correo.com was not found"
                                      }
                                  ]
                              - id: 87915d4b-0ab8-477a-86fa-d83fd1e84501
                                name: Recover Password email not send
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": "68c194511794bfe7fa02734a",
                                          "jurisdiction_id": "org.alcobendas",
                                          "username": "mock_user"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/recover_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - recover_password
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "User mock_user was not found"
                                      }
                                  ]
                              - id: d101be4b-a5f5-4ffa-8b28-0a3f1e5e0fb9
                                name: Recover Password Invalid Form
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "app_key": "68c194511794bfe7fa02734a",
                                          "jurisdiction_id": "org.alcobendas",
                                          "username": "michael.martinez@gopenux.com",
                                          "mock_field": "asd"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/recover_password
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - recover_password
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "ERROR: Este formulario no debería contener campos adicionales.\n"
                                      }
                                  ]
                          - name: LegalTerms
                            id: 97ca1404-c13b-4139-a9d5-6689b9df611f
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              url:
                                raw: https://api-pgics.sevilla.org/accept_terms
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - accept_terms
                              description: >-
                                Este endpoint permite realizar el registro de la
                                aceptación de términos legales de un User
                                previamente registrado. La aceptación de estos
                                términos permitirá al usuario hacer uso de la
                                plataforma. En caso negativo, no se permitirá el
                                uso de la misma.
                            response:
                              - id: 63466035-261f-4c18-8a1a-982ebc7693d2
                                name: LegalTerms OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  url:
                                    raw: mtc.vdeveloper.lan/public-api/accept_terms
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - accept_terms
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "description": "Legal Terms Accepted",
                                      "code": 200
                                  }
                              - id: 0e6f5214-f1bd-4791-9f61-ac5ee0d18e0d
                                name: LegalTerms Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  url:
                                    raw: https://api-pgics.sevilla.org/accept_terms
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - accept_terms
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "There was an error accepting the legal terms"
                                  }
                          - name: Generate Biotoken
                            id: 602035ff-1076-4bad-bd34-46356bdb8692
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "device_id": "9fc2029079531695"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/generate-biotoken
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - generate-biotoken
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | device_id | String | \[required\]. Valor del
                                identificador del dispositivo vinculado a un
                                User |


                                Este endpoint permite generar un biotoken a
                                partir de los accesos mediante dispositivos
                                móviles, el mismo se genera basado en datos
                                biométricos autorizados por el usuario.
                            response:
                              - id: d9400fec-248d-4c8e-9245-ffbafed9aeac
                                name: Generate Biotoken OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9fc2029079531695"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/generate-biotoken
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - generate-biotoken
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "biotoken": "a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada",
                                      "greeting": "Pepito "
                                  }
                              - id: be241c4e-e65f-4498-b91b-a3712163785c
                                name: Generate Biotoken Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9fc2029079531695"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/generate-biotoken
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - generate-biotoken
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "Request error"
                                  }
                          - name: Login Biotoken
                            id: 9e1c9bf0-bea2-44c3-bd25-f6289f99b21c
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "biotoken": "a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada",
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "device_id": "9fc2029079531695"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login-biotoken
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login-biotoken
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | biotoken | String | \[required\]. Token de
                                autenticación o identificación que está
                                relacionado con datos biométricos, como huellas
                                dactilares, reconocimiento facial,
                                reconocimiento de voz, o cualquier otra forma de
                                identificación basada en características físicas
                                o de comportamiento única |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | device_id | String | \[required\]. Valor del
                                identificador del dispositivo vinculado a un
                                User |


                                Este endpoint permite realizar un acceso o login
                                a la aplicación mediante datos biométricos
                                autorizados por el usuario. Lo anterior quiere
                                decir que debe existir un dispositivo vinculado
                                al usuario y que permita realizar la toma de
                                datos biométricos.
                            response:
                              - id: 96760687-6c3e-4c05-8351-ff5ef165d1b0
                                name: Login Biotoken OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "biotoken": "a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "device_id": "9fc2029079531695"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/login-biotoken
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - login-biotoken
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "oauth": {
                                          "access_token": "MjE4M2I5YTdiNzhhZmU0ZjZmNDY1MGYxNWNkZTIzNGYzNjM3YzYzMjhmMGFkMGFkMzI2Y2NiNTA1NTAzMjdhMA",
                                          "expires_in": 2592000,
                                          "token_type": "bearer",
                                          "scope": null,
                                          "refresh_token": "OGFmYTExM2JhMTM3YTBiNjBiNTAwYjQzMDEzOWU3ZjY0M2RmN2NkOGFkMzY0N2NiYjdmZjk2Yjk4Y2Y0Mzg3Mw"
                                      },
                                      "bioauth": {
                                          "biotoken": "ffb3cfef97dfdb38f7aa0ad09f1f0c35da50c1bfd90a444a2f80b5853d8e612cc8f8ab2a2b88bf4ce95cb71ffd26d80c070b81cb501a9c70e05effff82e3d790",
                                          "greeting": "Pepito "
                                      }
                                  }
                              - id: f304268e-6290-40ec-b6d1-486b135efd84
                                name: Login Biotoken Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "device_id": "9fc2029079531695"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login-biotoken
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login-biotoken
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": ""
                                  }
                              - id: 3f3a346c-f9d5-476e-829d-b46a8dc9af5e
                                name: Login Biotoken Invalid DeviceID
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "biotoken": "a4bda5e96116622271709484e36db31eefc35a7c7092f73b22d60dcf60862b47dc79b6a7564e59ac37c75326543797b8b6a8b9c36216b68c22b2467a8072aada",
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "device_id": "9fc20290795316951"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login-biotoken
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login-biotoken
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": ""
                                  }
                          - name: Login Anonymous
                            id: c044f731-b614-4c24-8f88-b8abae1518c0
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "device_id": "9fc20290795316951"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/login-anonymous
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login-anonymous
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | device_id | String | \[required\]. Valor del
                                identificador del dispositivo vinculado a un
                                User |


                                Permite a un usuario realizar una autenticación
                                anonimizada si la misma es permitida. Así mismo
                                permite realizar la autenticación si el usuario
                                no se encuentra registrado, generando el nuevo
                                registro que poseerá como username el device id
                                del dispositivo donde realiza el login.
                            response:
                              - id: f99c9072-cd78-4a06-aa1c-abbfd1909fc8
                                name: Login Anonymous OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "device_id": "9fc20290795316951"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/login-anonymous
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - login-anonymous
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "OGNlOWIyMzI5OWNmMzlmMzA2YjVkODgxNzdjNGIyNWIzN2FiNDYwMjVhYjgxZDBlMmI2NWNmYzYwOWE2MTQ3OQ",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "MjcxMzdlOWJhZDBhZjQwODY1YTE3MGE5NTU4OGVmODE2M2I5ZGUzOWY0MDk3MGRlMzA5ZWY2ZWIyMzdhYTMxNg"
                                  }
                              - id: 1785f671-1c38-40f1-bcd6-033bf05729c3
                                name: Login Anonymous Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "device_id": "9fc20290795316951",
                                          "mock_field": 1
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login-anonymous
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login-anonymous
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "ERROR: Este formulario no debería contener campos adicionales.\n"
                                  }
                          - name: Login Open ID Action
                            id: 23e3dbdb-3f88-47ce-9827-5b5ef3cb8f53
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: noauth
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                      "code": "CODE_RECEIVED&",
                                      "code_verifier": "CODE_VERIFIER",
                                      "redirect_uri": "https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token",
                                      "clientKey": "sedfwe"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/login-open-id?client_key=mockid
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - login-open-id
                                query:
                                  - key: client_key
                                    value: mockid
                              description: >-
                                | **Campo** | **Tipo** | **Descripcion** |

                                | --- | --- | --- |

                                | client_id | String | \[required\]. Se debe
                                ingresar el valor estipulado por el tipo de
                                cliente. En este caso los User son
                                open010_client |

                                | code | String | \[required\]. String aleatorio
                                y criptográficamente seguro que se genera en la
                                aplicación cliente antes de iniciar el proceso
                                de autorización |

                                | code_verifier | String | \[required\]. Código
                                de autorización que se devuelve a la aplicación
                                cliente por el servidor de autorización después
                                de que el usuario ha iniciado sesión y ha
                                autorizado el acceso |

                                | redirect_uri | String | \[required\]. URL a la
                                que la aplicación redirige al usuario para que
                                inicie sesión y otorgue permisos. Esta URL
                                pertenece al proveedor de identidad (IDP) que
                                está manejando la autenticación |


                                Este endpoint permite una autenticación
                                federada. Esto significa que permite a los
                                usuarios autenticarse en múltiples sitios web
                                usando una única cuenta de un proveedor de
                                autenticación confiable (Ej: Google, Microsoft,
                                etc).
                            response:
                              - id: 08b85078-06d9-4bd2-be16-3e6eb2934b34
                                name: Login Open ID Action OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "code": "CODE_RECEIVED&",
                                          "code_verifier": "CODE_VERIFIER",
                                          "redirect_uri": "https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      mtc.vdeveloper.lan/public-api/login-open-id
                                    host:
                                      - mtc
                                      - vdeveloper
                                      - lan
                                    path:
                                      - public-api
                                      - login-open-id
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "access_token": "NzViNjU4OTJmYzQ0MjZhNGZjNmRkYjZlZTEwMzU2Zjc4YzVjOWFiZjc4YzQ5ZGE2NGUwNGM2NDkwNTUyZWY3NQ",
                                      "expires_in": 2592000,
                                      "token_type": "bearer",
                                      "scope": null,
                                      "refresh_token": "N2Y3ZDkwMTE0MjhhNDZmNDFjOTBlNWVjY2M5Mzc2ZDNiMGJlYWFkZmI1MmMyYzZhMjQ5YzA3YjQyOTdkODRkOQ"
                                  }
                              - id: 562a5f2d-ff58-48eb-8a01-dc78f915d8b5
                                name: Login Open ID Action Bad Request
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "code": "CODE_RECEIVED&",
                                          "code_verifier": "CODE_VERIFIER",
                                          "redirect_uri": "https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login-open-id
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login-open-id
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "AADB2C90090: The provided JWE is not a valid 5 segment token.\r\nCorrelation ID: 4b6ec555-1bb3-4c00-ab76-9a7c5c7fb691\r\nTimestamp: 2024-10-03 14:01:35Z\r\n"
                                  }
                              - id: 847c2ea0-87fa-449e-ba88-90b5a66aa6ad
                                name: Login Open ID Action Invalid Form
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "client_id": "52fb43b4a780378d298b456b_1kthjgfcfmas8o8c4c40848gsc0s0cso0sgkwwksks4o0g4cg4",
                                          "code": "CODE_RECEIVED&",
                                          "code_verifier": "CODE_VERIFIER",
                                          "redirect_uri": "https://madridingameb2c.b2clogin.com/madridingameb2c.onmicrosoft.com/b2c_1_loginsignupemail/oauth2/v2.0/token",
                                          "mock_field": 1
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/login-open-id
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - login-open-id
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "ERROR: Este formulario no debería contener campos adicionales.\n"
                                  }
                        id: 93a823c8-67ab-4df1-805c-38e93250c6ee
                        description: ' '
                    id: 3441c7ae-2028-4ec7-9ee7-dbd736111919
                    description: >-
                      El apartado de seguridad incluye endpoints para gestionar
                      el acceso y la sesión de usuarios, como login, logout,
                      registro y restablecimiento de contraseña, garantizando
                      control y seguridad en la plataforma
                  - name: Service
                    item:
                      - name: Service
                        item:
                          - name: List Service
                            id: 056aaa14-1394-4885-baea-bcae0cdc85f7
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/services?jurisdiction_ids=es.madrid&lat=40.5334137&lng=-3.6480234&typology_ids=5850dca2e22c6d9f51b00c0f
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - services
                                query:
                                  - key: jurisdiction_ids
                                    value: es.madrid
                                    description: >-
                                      String. [opcional] (org.alcobendas). Son
                                      los identificadores de la jurisdicción que
                                      permitiran filtrar las categorias por área
                                      geográfica.
                                  - key: lat
                                    value: '40.5334137'
                                    description: >-
                                      Float. [optional] (40.5334137). Permite
                                      estableces coordenadas geográficas
                                      (latitud) para un filtrado más exacto de
                                      los resultados (formato decimal).
                                  - key: lng
                                    value: '-3.6480234'
                                    description: >-
                                      Float. [optional] (-3.6480234). Permite
                                      estableces coordenadas geográficas
                                      (longitud) para un filtrado más exacto de
                                      los resultados (formato decimal).
                                  - key: typology_ids
                                    value: 5850dca2e22c6d9f51b00c0f
                                    description: >-
                                      String. [opcional]
                                      (5850dca2e22c6d9f51b00c0f). Son los
                                      identificadores de tipología que permiten
                                      filtrar las categorías según su tipo.
                              description: >-
                                Este Endpoint permite obtener una lista de
                                servicios según ciertos parámetros de consulta,
                                como jurisdiction_ids (para filtrar por
                                jurisdicciones específicas con validación
                                personalizada), lng y lat (para definir
                                coordenadas geográficas), y typology_ids (para
                                filtrar por tipologías con validación
                                específica).
                            response:
                              - id: 926a5612-dc29-4f04-b012-495b7a261703
                                name: Response OK Lists Services
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/services?jurisdiction_ids=es.madrid&lat=40.5334137&lng=-3.6480234&typology_ids=5850dca2e22c6d9f51b00c0f
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - services
                                    query:
                                      - key: jurisdiction_ids
                                        value: es.madrid
                                      - key: lat
                                        value: '40.5334137'
                                      - key: lng
                                        value: '-3.6480234'
                                      - key: typology_ids
                                        value: 5850dca2e22c6d9f51b00c0f
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "parent_service_name": "",
                                      "group": "",
                                      "jurisdiction_id": "es.madrid",
                                      "visible_name": "Alumbrado público (Aviso)",
                                      "id": "5620e9176aa91815008b4567",
                                      "social": true,
                                      "evaluation": true,
                                      "color": "#FBC02D",
                                      "description": "",
                                      "keywords": "",
                                      "mandatory_description": true,
                                      "mandatory_files": false,
                                      "mandatory_medias": false,
                                      "max_upload_files": 5,
                                      "max_upload_medias": 5,
                                      "public": true,
                                      "public_requests": false,
                                      "service_icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/service_icons/66b265542dadc277946226.png",
                                      "service_name": "Alumbrado público",
                                      "typology": {
                                          "id": "5850dca2e22c6d9f51b00c0f",
                                          "color": "#ebc113",
                                          "description_legend": "Ej: farola fundida",
                                          "icon": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/typology_icons/6729ec91b9764447503445.png",
                                          "location_type": "geolocation",
                                          "order": 1,
                                          "public": true,
                                          "typology_description": "Tengo un problema con un elemento en la calle",
                                          "visible_name": "Aviso",
                                          "with_authorized_users": true,
                                          "with_description": true,
                                          "with_files": true,
                                          "with_geolocation_data": false,
                                          "with_medias": true,
                                          "with_temporality_data": false
                                      },
                                      "with_informant": false
                                  }
                              - id: 302c70ad-1c70-495a-8398-31e58fbafec4
                                name: Error Jurisdiction Not Valid Lists Services
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/services?jurisdiction_ids=es.madri&typology_ids=5850dca2e22c6d9f51b00c0f
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - services
                                    query:
                                      - key: jurisdiction_ids
                                        value: es.madri
                                      - key: typology_ids
                                        value: 5850dca2e22c6d9f51b00c0f
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "Parameter \"jurisdiction_ids\" of value \"es.madri\" violated a constraint \"Jurisdiction ids not valid\""
                                  }
                              - id: 12727924-bc4f-49b7-b839-72459776ae98
                                name: Error Typology Not Valid Lists Services
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/services?jurisdiction_ids=es.madrid&typology_ids=5850dca2e22c
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - services
                                    query:
                                      - key: jurisdiction_ids
                                        value: es.madrid
                                      - key: typology_ids
                                        value: 5850dca2e22c
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "Parameter \"typology_ids\" of value \"5850dca2e22c\" violated a constraint \"Ids are not valid\""
                                  }
                          - name: Service Detail
                            id: 36099251-a537-4818-9060-9f3c42bcceb8
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/services/{{service_id}}?jurisdiction_id=es.madrid
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - services
                                  - '{{service_id}}'
                                query:
                                  - key: jurisdiction_id
                                    value: es.madrid
                                    description: >-
                                      String. [required]. Son los
                                      identificadores de la jurisdicción que
                                      permitiran filtrar las categorias por área
                                      geográfica
                              description: >-
                                **Request param**


                                | **Campo** | Tipo | **Descripción** |

                                | --- | --- | --- |

                                | service_id | String |
                                \[required\](5620e9176aa91815008b4567). ID de
                                mongo del que se quiere obtener el detalle. |


                                Este endpoint permite obtener los detalles de un
                                servicio específico utilizando su `service_id`
                                (identificador Mongo) y la jurisdicción
                                asociada. Proporciona información completa sobre
                                el servicio, verificando su configuración y
                                cargando los datos relacionados con su tipología
                                y flujo de trabajo.
                            response:
                              - id: 1b54cef3-01a3-4ffa-863a-424abc7a6dfd
                                name: Service Detail with data
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/services/64fa7c4cf978d8061c03e151?jurisdiction_id=es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - services
                                      - 64fa7c4cf978d8061c03e151
                                    query:
                                      - key: jurisdiction_id
                                        value: es.madrid
                                        description: >-
                                          String. [required]. Son los
                                          identificadores de la jurisdicción que
                                          permitiran filtrar las categorias por
                                          área geográfica
                                        uuid: b9a92d76-08b7-4fec-a257-607545a52030
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 4cf788b9-217f-466f-8985-348ae1853bc7
                                name: Service Detail not found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/services/64fa7c4cf978d8061c03e151?jurisdiction_id=es.madrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - services
                                      - 64fa7c4cf978d8061c03e151
                                    query:
                                      - key: jurisdiction_id
                                        value: es.madrid
                                        description: >-
                                          String. [required]. Son los
                                          identificadores de la jurisdicción que
                                          permitiran filtrar las categorias por
                                          área geográfica
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "service_id was not found "
                                  }
                        id: fad6bb46-4653-4ed2-ba46-e75aecb08356
                        description: ' '
                    id: bad2ded1-9473-4e71-a806-a6d655d37453
                    description: >-
                      Las categorías de servicio permiten la creación de tickets
                      para órdenes de trabajo o solicitudes.
                  - name: SocialMedia
                    item:
                      - name: SocialMedia
                        item:
                          - name: Get Twitter Timeline
                            id: 764d2fb8-7270-447a-b44a-a24c385c7234
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/twitter-timeline/{{acount}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - twitter-timeline
                                  - '{{acount}}'
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | account | String | \[required\] nombre de la
                                cuenta a solicitar |


                                Este endpoint permite obtener lel timeline de
                                una cuenta concreta de twitter
                            response:
                              - id: cb3c7cb0-daaa-4974-8397-c09f1b5d82ed
                                name: Get Twitter Timeline OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/twitter-timeline/ComunidadMadrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - twitter-timeline
                                      - ComunidadMadrid
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                          - name: Get Twitter Users
                            id: 4eb36562-20b5-4b72-b25f-200bac15d010
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/twitter-users/{{acount}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - twitter-users
                                  - '{{acount}}'
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | account | String | \[required\] nombre de la
                                cuenta a solicitar |


                                Este endpoint permite obtener la información de
                                una cuenta concreta de twitter
                            response:
                              - id: de05118c-6111-429a-91dc-8b170d670874
                                name: Get Twitter Users OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/twitter-users/ComunidadMadrid
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - twitter-users
                                      - ComunidadMadrid
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "name": "Comunidad de Madrid",
                                          "profile_banner_url": "https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs.jpg",
                                          "profile_image_url": "https://pbs.twimg.com/profile_images/1582850980571406366/D9nEHuqs_normal.jpg",
                                          "screen_name": "ComunidadMadrid"
                                      }
                                  ]
                          - name: Get Youtube Videos
                            id: 2a0c1dbb-211e-46bf-a1c4-2f447e29f89e
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/youtube/videos/{{acount}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - youtube
                                  - videos
                                  - '{{acount}}'
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | account | String | \[required\] nombre de la
                                cuenta a solicitar |


                                Este endpoint permite obtener los videos
                                disponibles de una cuenta concreta de youtube
                            response:
                              - id: 8854b2e9-f831-4b9c-82a0-39fe6bd91228
                                name: Get Youtube Videos OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/youtube/videosel7desol/
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - youtube
                                      - videosel7desol
                                      - ''
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                          - name: Get Youtube Channels
                            id: c577a6f8-aae5-4d9e-918b-8b8a81844dbd
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/youtube/channels/{{acount}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - youtube
                                  - channels
                                  - '{{acount}}'
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | account | String | \[required\] nombre de la
                                cuenta a solicitar |


                                Este endpoint permite obtener la información de
                                una cuenta concreta de youtube
                            response:
                              - id: f6e59dba-242a-4066-85a1-36b43dbdf4d7
                                name: Get Youtube Channels OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/youtube/channels/el7desol
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - youtube
                                      - channels
                                      - el7desol
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "account_name": "el7desol",
                                          "icon": "https://yt3.ggpht.com/ytc/AIdro_mQseSgBEjDjDFM2yNpaw51hr1G-VboXzEkbesKdcoc-cA=s88-c-k-c0x00ffffff-no-rj",
                                          "id": "UCTS_hF6ho1Vsjz7266Qik2w",
                                          "title": "Comunidad de Madrid"
                                      }
                                  ]
                        id: e8719019-78e7-45e8-bb1b-3956b70ab872
                    id: 28f5129b-9d80-4f2a-86dc-185bae18d0ae
                  - name: Typology
                    item:
                      - name: Typology
                        item:
                          - name: Typologies
                            id: 8f905271-edb5-4853-ab8e-5b7b99c92f11
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/typologies?jurisdiction_ids=org.alcobendas&jurisdiction_element_id=5e5a3f17179796a7cbb93934&typology_ids=678eb20693b212646c00646c,
                                  591b08fd4e4ea839018b456e&lng=-3.6290685486407&lat=40.425015653227&page=1&limit=90
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - typologies
                                query:
                                  - key: jurisdiction_ids
                                    value: org.alcobendas
                                    description: >-
                                      String [optional] permite devolver las
                                      tipologías asociadas a servicios que
                                      pertenezcan a alguna de las jurisdicciones
                                      indicadas. lista separada por comas
                                  - key: jurisdiction_element_id
                                    value: 5e5a3f17179796a7cbb93934
                                    description: >-
                                      String [optional] permite obtener los
                                      servicios vinculados a ese elemento, y en
                                      consecuencia las tipologías asociadas a
                                      esos servicios
                                  - key: typology_ids
                                    value: >-
                                      678eb20693b212646c00646c,
                                      591b08fd4e4ea839018b456e
                                    description: >-
                                      String [optional]. permite devolver las
                                      tipologías asociadas a servicios cuya
                                      tipología coincida con alguno de los IDs
                                      indicados.
                                  - key: lng
                                    value: '-3.6290685486407'
                                    description: >-
                                      Float [optional] Coordenada de longitud
                                      geográfica.
                                  - key: lat
                                    value: '40.425015653227'
                                    description: >-
                                      Float [optional] Coordenada de latitud
                                      geográfica.
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. Permite definir la página
                                      de los resultados encontrados según la
                                      cantidad de los resultados encontrados.
                                      Por defecto el valor es 1
                                  - key: limit
                                    value: '90'
                                    description: >-
                                      Int [optional]. Permite definir el limite
                                      de cada página de resultados. Por defecto
                                      es 90
                              description: >-
                                Este endpoint permite obtener las tipologías
                                asociadas a categorías públicas, filtradas según
                                los criterios definidos en los parámetros de la
                                petición. Las tipologías se obtienen a partir de
                                los servicios vinculados a las categorías
                                correspondientes y se devuelven en un formato
                                paginado.
                            response:
                              - id: 1b371405-1a1d-4b7e-abf6-dbcce2954601
                                name: Typologies OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/typologies?jurisdiction_ids=org.alcobendas,
                                      es.rivas&jurisdiction_element_id=5e5a3f17179796a7cbb93934&typology_ids=678eb20693b212646c00646c,
                                      591b08fd4e4ea839018b456e&lng=-3.6290685486407&lat=40.425015653227&page=1&limit=90
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - typologies
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas, es.rivas
                                        description: >+
                                          [optional] Permite obtener los
                                          subproyectos a partir de los Ids
                                          separados por comas de un proyecto.




                                      - key: jurisdiction_element_id
                                        value: 5e5a3f17179796a7cbb93934
                                        description: >+
                                          [optional] Permite obtener un único
                                          subproyecto utilizando su identificador
                                          único de mongo.





                                      - key: typology_ids
                                        value: >-
                                          678eb20693b212646c00646c,
                                          591b08fd4e4ea839018b456e
                                        description: >+
                                          [optional] Permite obtener las
                                          tipologías a partir de los Ids de mongo
                                          separados por comas de un proyecto.






                                      - key: lng
                                        value: '-3.6290685486407'
                                        description: >+
                                          [optional] Coordenada de longitud
                                          geográfica.





                                      - key: lat
                                        value: '40.425015653227'
                                        description: >+
                                          [optional] Coordenada de latitud
                                          geográfica.






                                      - key: page
                                        value: '1'
                                        description: >-
                                          [optional]. Permite definir la página de
                                          los resultados encontrados según la
                                          cantidad de los resultados encontrados.
                                          Por defecto el valor es 1
                                      - key: limit
                                        value: '90'
                                        description: >
                                          [optional]. Permite definir el limite de
                                          cada página de resultados. Por defecto
                                          es 90
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "related_typologies": [
                                              {
                                                  "id": "5a8e9d664e4ea8bf018b4567",
                                                  "visible_name": "Aviso"
                                              },
                                              {
                                                  "id": "66ee2414967b5ac8010cfaa3",
                                                  "visible_name": "Infraestructuras"
                                              }
                                          ],
                                          "recategorizable_typologies": [
                                              {
                                                  "id": "66ee2414967b5ac8010cfaa3",
                                                  "visible_name": "Infraestructuras"
                                              },
                                              {
                                                  "id": "5a8e9d664e4ea8bf018b4567",
                                                  "visible_name": "Aviso"
                                              }
                                          ],
                                          "id": "5a8e9d664e4ea8bf018b4567",
                                          "color": "#ecb113",
                                          "description_legend": "Por ejemplo: una farola fundida, un bache en la acera, una rama caída…",
                                          "icon": "https://core-pgics.sevilla.org/uploads/sevilla_pro/typology_icons/5b30a87b38e70.png",
                                          "location_type": "geolocation",
                                          "name": "aviso",
                                          "order": 1,
                                          "public": true,
                                          "typology_description": "Tengo un problema con un elemento de la ciudad",
                                          "visible_name": "Aviso",
                                          "with_authorized_users": false,
                                          "with_description": true,
                                          "with_files": true,
                                          "with_geolocation_data": true,
                                          "with_medias": true,
                                          "with_temporality_data": true
                                      }
                              - id: 8a847888-bd60-454c-adb2-bef962c6eca4
                                name: Typologies Invalid Form
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/typologies?jurisdiction_ids=org.alcobendas,
                                      es.rivas&jurisdiction_element_id=5e5a3f17179796a7cbb93934&typology_ids=678eb20693b212646c00646c,
                                      591b08fd4e4ea839018b456e&lng=-3.6290685486407&lat=40.425015653227&page=1&limit=90
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - typologies
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas, es.rivas
                                      - key: jurisdiction_element_id
                                        value: 5e5a3f17179796a7cbb93934
                                      - key: typology_ids
                                        value: >-
                                          678eb20693b212646c00646c,
                                          591b08fd4e4ea839018b456e
                                      - key: lng
                                        value: '-3.6290685486407'
                                      - key: lat
                                        value: '40.425015653227'
                                      - key: page
                                        value: '1'
                                      - key: limit
                                        value: '90'
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 400,
                                    "message": "Invalid form"
                                  }
                              - id: 9dd8ca78-1e1d-403f-b0ab-a29743979026
                                name: Typologies Zones Not Fount
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/typologies?jurisdiction_ids=org.alcobendas,
                                      es.rivas&jurisdiction_element_id=5e5a3f17179796a7cbb93934&typology_ids=678eb20693b212646c00646c,
                                      591b08fd4e4ea839018b456e&lng=-3.6290685486407&lat=40.425015653227&page=1&limit=90
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - typologies
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas, es.rivas
                                        description: >+
                                          [optional] Permite obtener los
                                          subproyectos a partir de los Ids
                                          separados por comas de un proyecto.




                                      - key: jurisdiction_element_id
                                        value: 5e5a3f17179796a7cbb93934
                                        description: >+
                                          [optional] Permite obtener un único
                                          subproyecto utilizando su identificador
                                          único de mongo.





                                      - key: typology_ids
                                        value: >-
                                          678eb20693b212646c00646c,
                                          591b08fd4e4ea839018b456e
                                        description: >+
                                          [optional] Permite obtener las
                                          tipologías a partir de los Ids de mongo
                                          separados por comas de un proyecto.






                                      - key: lng
                                        value: '-3.6290685486407'
                                        description: >+
                                          [optional] Coordenada de longitud
                                          geográfica.





                                      - key: lat
                                        value: '40.425015653227'
                                        description: >+
                                          [optional] Coordenada de latitud
                                          geográfica.






                                      - key: page
                                        value: '1'
                                        description: >-
                                          [optional]. Permite definir la página de
                                          los resultados encontrados según la
                                          cantidad de los resultados encontrados.
                                          Por defecto el valor es 1
                                      - key: limit
                                        value: '90'
                                        description: >
                                          [optional]. Permite definir el limite de
                                          cada página de resultados. Por defecto
                                          es 90
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "No zones found for provided coordinates"
                                      }
                                  ]
                          - name: Me Typologies
                            id: 4de7e281-62cc-48fc-85db-c8fb50178d72
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/typologies?jurisdiction_ids=org.alcobendas&jurisdiction_element_id=5e5a3f17179796a7cbb93934&typology_ids=678eb20693b212646c00646c,
                                  591b08fd4e4ea839018b456e&lng=-3.6290685486407&lat=40.425015653227&page=1&limit=90
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - typologies
                                query:
                                  - key: jurisdiction_ids
                                    value: org.alcobendas
                                    description: >-
                                      String [optional] permite devolver las
                                      tipologías asociadas a servicios que
                                      pertenezcan a alguna de las jurisdicciones
                                      indicadas. lista separada por comas
                                  - key: jurisdiction_element_id
                                    value: 5e5a3f17179796a7cbb93934
                                    description: >-
                                      String [optional] permite obtener los
                                      servicios vinculados a ese elemento, y en
                                      consecuencia las tipologías asociadas a
                                      esos servicios
                                  - key: typology_ids
                                    value: >-
                                      678eb20693b212646c00646c,
                                      591b08fd4e4ea839018b456e
                                    description: >-
                                      String [optional]. permite devolver las
                                      tipologías asociadas a servicios cuya
                                      tipología coincida con alguno de los IDs
                                      indicados.
                                  - key: lng
                                    value: '-3.6290685486407'
                                    description: >-
                                      Float [optional] Coordenada de longitud
                                      geográfica.
                                  - key: lat
                                    value: '40.425015653227'
                                    description: >-
                                      Float [optional] Coordenada de latitud
                                      geográfica.
                                  - key: page
                                    value: '1'
                                    description: >-
                                      Int [optional]. Permite definir la página
                                      de los resultados encontrados según la
                                      cantidad de los resultados encontrados.
                                      Por defecto el valor es 1
                                  - key: limit
                                    value: '90'
                                    description: >-
                                      Int [optional]. Permite definir el limite
                                      de cada página de resultados. Por defecto
                                      es 90
                              description: >-
                                Permite obtener las tipologías que pertenecen a
                                categorías públicas, siempre que esas categorías
                                estén asociadas a grupos filtrados según los
                                criterios definidos en los parámetros de la
                                petición.


                                Es un alias de**:** [GET
                                /typologies](#tag/Typology-greater-Typology/operation/getTypologies)  

                                Ambos endpoints comparten la misma lógica
                                interna y comportamiento, por lo que pueden
                                usarse de forma intercambiable.
                            response:
                              - id: 52c5b85e-28b1-4a2a-8c3e-5ebe197adbcf
                                name: Me Typologies OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/typologies
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - typologies
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 81f8ecac-975e-4225-934f-5716d30d55cf
                                name: Me Typologies Invalid Form
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/typologies
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - typologies
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 400,
                                    "message": "Invalid form"
                                  }
                        id: b08b13b2-97e2-4da3-8c24-fee256cf6e59
                        description: ' '
                    id: d507f3e7-2cb1-4279-9efc-2548157e9416
                    description: ' '
                  - name: User
                    item:
                      - name: User
                        item:
                          - name: Get Jurisdiction Element Channels User
                            id: 831dc0ad-27ac-49c4-83c8-dedbf7b34332
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/user/jurisdiction-element-channels/{{jurisdiction_element_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - user
                                  - jurisdiction-element-channels
                                  - '{{jurisdiction_element_id}}'
                              description: >-
                                **Request Params**


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | jurisdiction_element_id | String |
                                \[required\] Este campo corresponde al ID de
                                MongoDB del jurisdictionElement del cual se
                                desean obtener los canales. |


                                Este Endpoint devuelve el listado de canales
                                asociados a un `jurisdictionElement` específico
                                para el usuario autenticado. En cada canal se
                                incluirá el campo `is_notification`, cuyo valor
                                `true` indicará aquellos canales que el usuario
                                tiene activos para recibir notificaciones.
                            response:
                              - id: e1153c5b-bae3-4059-a429-e6c398827e52
                                name: Get Jurisdiction Element Channels User OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/jurisdiction-element-channels/66fea6b27e81963f330b5b3e
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - jurisdiction-element-channels
                                      - 66fea6b27e81963f330b5b3e
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Server
                                    value: nginx/1.16.1
                                  - key: Content-Type
                                    value: application/json
                                  - key: Transfer-Encoding
                                    value: chunked
                                  - key: Connection
                                    value: keep-alive
                                  - key: Cache-Control
                                    value: no-cache, private
                                  - key: Date
                                    value: Tue, 01 Oct 2024 08:23:06 GMT
                                  - key: X-Cache-Debug
                                    value: '1'
                                  - key: Access-Control-Expose-Headers
                                    value: Link, X-Last-Page, X-Total-Items, X-Count
                                  - key: Link
                                    value: ''
                                  - key: X-Last-Page
                                    value: ''
                                  - key: X-Total-Items
                                    value: ''
                                  - key: Vary
                                    value: Accept-Language
                                  - key: X-Debug-Token
                                    value: 8c3088
                                  - key: X-Debug-Token-Link
                                    value: http://mtc.vadiaz.lan/_profiler/8c3088
                                  - key: X-Robots-Tag
                                    value: noindex
                                cookie: []
                                body: |-
                                  {
                                          "channel": {
                                              "category": "interest",
                                              "external": true,
                                              "id": "670cc9fbbdb73a4bfca75607",
                                              "jurisdictions": [
                                                  {}
                                              ],
                                              "name": "Canal1 Publico",
                                              "order": 0,
                                              "self_assignable": false,
                                              "visible": false
                                          },
                                          "is_notification": true
                                      }
                              - id: 3c2b7c28-31c5-4409-b80c-605136f4c3eb
                                name: >-
                                  Get Jurisdiction Element Channels User Not
                                  Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/jurisdiction-element-channels/66fea6b27e81963f330b5b3e
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - jurisdiction-element-channels
                                      - 66fea6b27e81963f330b5b3e
                                status: OK
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Server
                                    value: nginx/1.16.1
                                  - key: Content-Type
                                    value: application/json
                                  - key: Transfer-Encoding
                                    value: chunked
                                  - key: Connection
                                    value: keep-alive
                                  - key: Cache-Control
                                    value: no-cache, private
                                  - key: Date
                                    value: Tue, 01 Oct 2024 08:23:06 GMT
                                  - key: X-Cache-Debug
                                    value: '1'
                                  - key: Access-Control-Expose-Headers
                                    value: Link, X-Last-Page, X-Total-Items, X-Count
                                  - key: Link
                                    value: ''
                                  - key: X-Last-Page
                                    value: ''
                                  - key: X-Total-Items
                                    value: ''
                                  - key: Vary
                                    value: Accept-Language
                                  - key: X-Debug-Token
                                    value: 8c3088
                                  - key: X-Debug-Token-Link
                                    value: http://mtc.vadiaz.lan/_profiler/8c3088
                                  - key: X-Robots-Tag
                                    value: noindex
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 404,
                                      "error_msg": "Object not found"
                                  }
                          - name: Get Jurisdiction Element Channels Me
                            id: 88fe2c11-0ae9-4cff-ac02-81bd5beb11c9
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/jurisdiction-element-channels/{{jurisdiction_element_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - jurisdiction-element-channels
                                  - '{{jurisdiction_element_id}}'
                              description: >-
                                **Request Params**


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | jurisdiction_element_id | String |
                                \[required\] Este campo corresponde al ID de
                                MongoDB del jurisdictionElement del cual se
                                desean obtener los canales. |


                                Este Endpoint devuelve el listado de canales
                                asociados a un `jurisdictionElement` específico
                                para el usuario autenticado. En cada canal se
                                incluirá el campo `is_notification`, cuyo valor
                                `true` indicará aquellos canales que el usuario
                                tiene activos para recibir notificaciones.


                                Es un alias de**:** [GET
                                /user/jurisdiction-element-channels/{{jurisdiction_element_id}}](#tag/User-greater-User/operation/getUserJurisdictionElementChannels)  

                                Ambos endpoints comparten la misma lógica
                                interna y comportamiento, por lo que pueden
                                usarse de forma intercambiable. Este alias está
                                pensado para facilitar las operaciones centradas
                                en el propio usuario (`/me`).
                            response:
                              - id: 5fe7e8c1-bc63-4007-a0ef-856dfadaae30
                                name: Get Jurisdiction Element Channels Me OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/jurisdiction-element-channels/{{jurisdiction_element_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - jurisdiction-element-channels
                                      - '{{jurisdiction_element_id}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "channel": {
                                              "category": "interest",
                                              "external": true,
                                              "id": "670cc9fbbdb73a4bfca75607",
                                              "jurisdictions": [
                                                  {}
                                              ],
                                              "name": "Canal1 Publico",
                                              "order": 0,
                                              "self_assignable": false,
                                              "visible": false
                                          },
                                          "is_notification": true
                                      }
                              - id: 3ef01c6d-4dc6-4f22-b3a7-64035e78679f
                                name: Get Jurisdiction Element Channels Me Not Found
                                originalRequest:
                                  auth:
                                    type: bearer
                                    bearer:
                                      - key: token
                                        value: '{{token_public}}'
                                        type: string
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/jurisdiction-element-channels/{{jurisdiction_element_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - jurisdiction-element-channels
                                      - '{{jurisdiction_element_id}}'
                                  description: >-
                                    Permite a un usuario externo obtener el
                                    listado de canales para un
                                    jurisdictionElement concreto. Se devolverá
                                    el campo is_notification=true para los
                                    canales que el usuario tiene activos para
                                    recibir notificaciones.


                                    Es un alias de**:** [GET
                                    /user/jurisdiction-element-channels/{{jurisdiction_element_id}}](#tag/User-greater-User/operation/getUserJurisdictionElementChannels)  

                                    Ambos endpoints comparten la misma lógica
                                    interna y comportamiento, por lo que pueden
                                    usarse de forma intercambiable. Este alias
                                    está pensado para facilitar las operaciones
                                    centradas en el propio usuario (`/me`).
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 404,
                                      "error_msg": "Object not found"
                                  }
                          - name: Ping Device
                            id: b310365c-c6b5-4402-abd0-fe19c7af3105
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/device/{{device_id}}/ping?app_key=1001&haste=true&tz=America%2FBogota
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - device
                                  - '{{device_id}}'
                                  - ping
                                query:
                                  - key: app_key
                                    value: '1001'
                                    description: >-
                                      Int [optional] Clave de la aplicación
                                      asociada al dispositivo.
                                  - key: haste
                                    value: 'true'
                                    description: >-
                                      Bool [optional] Indica si el ping debe
                                      ejecutarse con prioridad/urgencia; se
                                      transforma desde string a boolean.
                                  - key: tz
                                    value: America%2FBogota
                                    description: >-
                                      String [optional] Zona horaria del
                                      dispositivo o del usuario desde donde se
                                      realiza el ping.
                              description: >-
                                **Request Params**


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | device_id | String | \[required\] ID del
                                dispositivo a pingear. |


                                Este endpoint permite **enviar un “ping” a un
                                dispositivo asociado al usuario autenticado**,
                                con el fin de verificar su disponibilidad o
                                generar una notificación push, validando que el
                                dispositivo exista, pertenezca al usuario y
                                opcionalmente esté asociado a una aplicación
                                específica.
                            response:
                              - id: 6f0d5192-f4a9-42a6-a013-68c2d204f50b
                                name: Ping Device OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/device/{{device_id}}/ping?app_key=1001&haste=true&tz=America%2FBogota
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                      - '{{device_id}}'
                                      - ping
                                    query:
                                      - key: app_key
                                        value: '1001'
                                      - key: haste
                                        value: 'true'
                                      - key: tz
                                        value: America%2FBogota
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: ''
                              - id: 84755cf6-d5fa-4415-9a39-a31bfbeb7b25
                                name: Ping Device Not Exist
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/device/{{device_id}}/ping?app_key=1001&haste=true&tz=America%2FBogota
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                      - '{{device_id}}'
                                      - ping
                                    query:
                                      - key: app_key
                                        value: '1001'
                                      - key: haste
                                        value: 'true'
                                      - key: tz
                                        value: America%2FBogota
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "Error pinging a Device from user whatsapp:+573228958456. Device with device_id: 7a437be70f854a7d does NOT exist"
                                      }
                                  ]
                          - name: Add App Evaluation
                            id: fd0b0659-04d0-4456-b7f6-97840634023c
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "rating": 4,
                                      "comment": "La app funciona muy bien",
                                      "app_key": "14"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/app_evaluation
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - app_evaluation
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | app_key | String | \[required\]. ID de la app
                                que se quiere evaluar. |

                                | comment | String | \[required\]. Comentario
                                del usuario sobre la app. |

                                | rating | Integer | \[required\]. Calificación
                                de la app, suele estar en una escala. |


                                Este endpoint permite enviar una evaluación de
                                una aplicación, la evaluación incluye un
                                puntaje, un comentario, y el id de la aplicación
                                evaluada.
                            response:
                              - id: 3027db0c-b563-4c18-b77f-cedb7072fdc9
                                name: Response OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "rating": 4,
                                          "comment": "La app funciona muy bien",
                                          "app_key": "14"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/app_evaluation
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - app_evaluation
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "rating": 4,
                                      "comment": "La app funciona muy bien",
                                      "app_key": "14"
                                  }
                              - id: dee352b7-c34b-492a-95b6-04ef71e85ef7
                                name: Error User Was Not Found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "rating": 4,
                                          "comment": "La app funciona muy bien",
                                          "app_key": "14"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/app_evaluation
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - app_evaluation
                                status: Forbidden
                                code: 403
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 403,
                                    "message": "User was not found"
                                  }
                          - name: Update Avatar
                            id: 929742e8-6701-40c5-99a9-d994a9dfce01
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - type: file
                                    key: avatar_file
                                    description: >-
                                      [required]. Archivo de imagen para usar
                                      como avatar.
                                    src: /home/radmas/Downloads/download.jpeg
                              url:
                                raw: https://api-pgics.sevilla.org/profile/avatar
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - profile
                                  - avatar
                              description: >-
                                Este endpoint permite a un usuario subir una
                                imagen para establecer o actualizar su avatar,
                                la imagen se valida y luego se sube.
                            response:
                              - id: 6c20825f-d643-4ce9-9fbd-daaf0aa12e26
                                name: Error Image File Required
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - type: file
                                        key: avatar_file
                                        description: >-
                                          [required]. Archivo de imagen para usar
                                          como avatar.
                                        src:
                                          - /home/radmas/Downloads/download.jpeg
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/profile/avatar
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - profile
                                      - avatar
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 400,
                                    "message": "Image file required"
                                  }
                              - id: 370f6c26-1757-4a50-9c83-7d340fbdb0cf
                                name: Response OK Update Avatar
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: formdata
                                    formdata:
                                      - type: file
                                        key: avatar_file
                                        description: >-
                                          [required]. Archivo de imagen para usar
                                          como avatar.
                                        src:
                                          - /home/radmas/Downloads/download.jpeg
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/profile/avatar
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - profile
                                      - avatar
                                status: OK
                                code: 200
                                _postman_previewlanguage: Text
                                cookie: []
                                body: |-
                                  {
                                      "hasPassword": false,
                                      "main_address": {},
                                      "addresses": [],
                                      "app_evaluations": [],
                                      "avatar": "https://s3.eu-west-1.amazonaws.com/static.lab.open010.org/avatars/68c09867d54ed.png",
                                      "channels": [
                                          {}
                                      ],
                                      "configuration": {
                                          "app_notification": {
                                              "alerts": true,
                                              "comments": true,
                                              "follows": true,
                                              "requests": true
                                          },
                                          "email_notification": {
                                              "alerts": true,
                                              "comments": true,
                                              "follows": true,
                                              "requests": true
                                          }
                                      },
                                      "devices": [],
                                      "email": "daniel.sanchez@gopenux.com",
                                      "first_name": "Daniel Felipe",
                                      "id": "68af282bcfba85a93c09a573",
                                      "id_documents": [],
                                      "last_name": "Sanchez Ortega",
                                      "nickname": "daniel.sanchez",
                                      "notification_channels": [],
                                      "strongly_identified": false,
                                      "username": "daniel.sanchez",
                                      "anonymous": false,
                                      "jurisdiction_element_channels": []
                                  }
                          - name: Last Geofences
                            id: 513253d1-ba9f-4ca4-b05f-185acbbc7119
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "last_geofences" : [
                                          "my_layer.12",
                                          "my_layer.35"
                                      ]
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/last-geofences/{{device_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - last-geofences
                                  - '{{device_id}}'
                              description: >-
                                Permite setear las ultmas geofences en las que
                                ha estado un usuario externo. Si en ese momento
                                existe algún comunicado publicado para alguna de
                                las geofences indicadas, se notificará
                                automáticamente al dispositivo indicado en el
                                campo **device_id**


                                | **Campo** | **Descripción** |

                                | --- | --- |

                                | last_geofences | \[required\]  <br>Array con
                                los geoserverId de las últimas geofences del
                                usuario |
                            response:
                              - id: 600a124e-97f9-4804-bdbe-ca18982336e3
                                name: Respuesta OK
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: Content-Type
                                      name: Content-Type
                                      value: application/json
                                      type: text
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "last_geofences" : [
                                              "my_layer.12",
                                              "my_layer.35"
                                          ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/last-geofences/66fea6b27e81963f330b5ac8
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - last-geofences
                                      - 66fea6b27e81963f330b5ac8
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Server
                                    value: nginx/1.16.1
                                  - key: Content-Type
                                    value: application/json
                                  - key: Transfer-Encoding
                                    value: chunked
                                  - key: Connection
                                    value: keep-alive
                                  - key: Cache-Control
                                    value: no-cache, private
                                  - key: Date
                                    value: Tue, 01 Oct 2024 08:23:06 GMT
                                  - key: X-Cache-Debug
                                    value: '1'
                                  - key: Access-Control-Expose-Headers
                                    value: Link, X-Last-Page, X-Total-Items, X-Count
                                  - key: Link
                                    value: ''
                                  - key: X-Last-Page
                                    value: ''
                                  - key: X-Total-Items
                                    value: ''
                                  - key: Vary
                                    value: Accept-Language
                                  - key: X-Debug-Token
                                    value: 8c3088
                                  - key: X-Debug-Token-Link
                                    value: http://mtc.vadiaz.lan/_profiler/8c3088
                                  - key: X-Robots-Tag
                                    value: noindex
                                cookie: []
                                body: |-
                                  {
                                      "full_name": "pepito perez",
                                      "additional_data": [],
                                      "email": "pepito@mock.com",
                                      "first_name": "pepito",
                                      "id": "6563767ac68c18fb4107a202",
                                      "last_name": "perez",
                                      "nickname": "9rq865xbkb",
                                      "phone": "30112345678"
                                  }
                              - id: e578e0f1-3229-49a8-8a29-d14b2bd4a480
                                name: Error Not Found
                                originalRequest:
                                  method: POST
                                  header:
                                    - key: Content-Type
                                      name: Content-Type
                                      value: application/json
                                      type: text
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "last_geofences" : [
                                              "my_layer.12",
                                              "my_layer.35"
                                          ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/last-geofences/66fea6b27e81963f330b5ac8
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - last-geofences
                                      - 66fea6b27e81963f330b5ac8
                                status: OK
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Server
                                    value: nginx/1.16.1
                                  - key: Content-Type
                                    value: application/json
                                  - key: Transfer-Encoding
                                    value: chunked
                                  - key: Connection
                                    value: keep-alive
                                  - key: Cache-Control
                                    value: no-cache, private
                                  - key: Date
                                    value: Tue, 01 Oct 2024 08:23:06 GMT
                                  - key: X-Cache-Debug
                                    value: '1'
                                  - key: Access-Control-Expose-Headers
                                    value: Link, X-Last-Page, X-Total-Items, X-Count
                                  - key: Link
                                    value: ''
                                  - key: X-Last-Page
                                    value: ''
                                  - key: X-Total-Items
                                    value: ''
                                  - key: Vary
                                    value: Accept-Language
                                  - key: X-Debug-Token
                                    value: 8c3088
                                  - key: X-Debug-Token-Link
                                    value: http://mtc.vadiaz.lan/_profiler/8c3088
                                  - key: X-Robots-Tag
                                    value: noindex
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 404,
                                      "error_msg": "Object not found"
                                  }
                          - name: Add Device
                            id: cc87489f-909b-49fe-9c45-3f39109e49e0
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1",
                                      "type": "ios",
                                      "registration_id": "ej5zEduBrEM-vdXGrdkJ-i:APA91bGAOC1l0xWDCNBhpydLztZYTLUvz9zduLkOTYsbZ74CUknsPB_1kmsUToSm3JXlgyiV7Ga8P3aZeYCUA9jUdkrfWPBx02Y7T-xX0ItBpRfRx8oF7Rw",
                                      "app_key": 1752
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/me/device
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - device
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | app_key | String | \[required\]. Aplicación
                                asociada al dispositivo. |

                                | device_id | String | \[required\]. ID del
                                dispositivo. |

                                | registration_id | String | \[required\]. ID
                                del registro asociada al dispositivo. |

                                | type | Int | \[required\]. Tipo de
                                dispositivo. |


                                Este endpoint permite **registrar o actualizar
                                un dispositivo asociado al usuario
                                autenticado**, almacenando la información
                                necesaria para identificarlo y habilitar
                                funcionalidades como notificaciones push o
                                gestión de dispositivos vinculados al perfil del
                                usuario.
                            response:
                              - id: 66294a59-4c8c-41ee-a51d-2cd3320b0c7c
                                name: Add Device OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1",
                                          "type": "ios",
                                          "registration_id": "ej5zEduBrEM-vdXGrdkJ-i:APA91bGAOC1l0xWDCNBhpydLztZYTLUvz9zduLkOTYsbZ74CUknsPB_1kmsUToSm3JXlgyiV7Ga8P3aZeYCUA9jUdkrfWPBx02Y7T-xX0ItBpRfRx8oF7Rw",
                                          "app_key": 1752
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/me/device
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "id": "68a75a9abf426bbabd0644af",
                                      "hasPassword": true,
                                      "username": "d.solicitante.pgiba",
                                      "nickname": "Solicitante de PGIBA",
                                      "user_companies": [
                                          {
                                              "alias": "Agrupación Base Aérea",
                                              "id": "68893d192e776a8e96017542",
                                              "name": "PGIBA-BACV-ABA"
                                          }
                                      ],
                                      "preferences": {
                                          "map_layer_list": [
                                              {
                                                  "active": false,
                                                  "map_layer": {
                                                      "backend": "OWS",
                                                      "endpoint": "https://gis-pre.mejoratuciudad.org/geoserver",
                                                      "id": "67069e56c7ae6500d401b6bf",
                                                      "is_default": false,
                                                      "color": "#000000",
                                                      "display_properties": "%description%",
                                                      "editable_data": false,
                                                      "editable_geometry": false,
                                                      "internal_name": "buildings:bacsi_bacv_GU_B_geocode",
                                                      "internally_visible": true,
                                                      "name": "Complejo y edificios",
                                                      "description": "Complejo y edificios",
                                                      "path_updated": false,
                                                      "preset": false,
                                                      "public": false,
                                                      "tags": [],
                                                      "token": "489780ae-39e0-40bf-93e3-57565431454a",
                                                      "type": "WORK"
                                                  }
                                              }
                                          ]
                                      },
                                      "is_admin": false,
                                      "origin_create": [],
                                      "additional_data": [],
                                      "first_name": "Solicitante",
                                      "last_name": "Prueba PGIBA",
                                      "locale": "es",
                                      "avatar": "https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/canary/jurisdiction/68a748d869aaa892718960.png",
                                      "user_groups": [
                                          {
                                              "jurisdiction_id": "es.bacsi",
                                              "alias": "Solicitantes Mesa",
                                              "group_type": "applicant",
                                              "id": "68a75208bf426bbabd06449b",
                                              "name": "Grp_PGIBA-BACV-ABA_solicitantes_mesa"
                                          }
                                      ],
                                      "permissions": {
                                          "es.bacsi": [
                                              "REQUESTS_COMMENTS_ACCESS_MODULE",
                                              "REQUESTS_COMMENTS_CREATE",
                                              "REQUESTS_COMMENTS_MEDIAS",
                                              "COMMENTS_FREE_TEXT",
                                              "USER_EVALUATION_ACCESS_MODULE",
                                              "USER_EVALUATION_CREATE",
                                              "NOTIFICATIONS_ACCESS_MODULE",
                                              "REQUESTS_ACCESS_MODULE",
                                              "REQUESTS_CREATE",
                                              "REQUESTS_GENERATE_TICKET",
                                              "REQUESTS_EMAIL_TICKET",
                                              "REQUESTS_ADD_INTERNAL_INFORMANT"
                                          ]
                                      }
                                  }
                              - id: 18daa633-ccac-4588-b320-0ed992c3027f
                                name: Add Device Invalid Json
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1",
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/me/device
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error": {
                                          "code": 400,
                                          "message": "Invalid json message received"
                                      }
                                  }
                              - id: 9c295f38-b8c2-4eb8-8dc0-2e6575a081d5
                                name: Add Device Failed
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/me/device
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 1001,
                                      "error_msg": "Attempting to add a new Device failed",
                                      "extra_data": {
                                          "message": "->: A Device must have at least an Id, Registration, Type and App_key:;    ->registration_id: Este valor no debería estar vacío.:null;    ->app_key: application was not provided:null;    ",
                                          "errors": [
                                              {
                                                  "field": "",
                                                  "message": "A Device must have at least an Id, Registration, Type and App_key",
                                                  "parameters": ""
                                              },
                                              {
                                                  "field": "registration_id",
                                                  "message": "Este valor no debería estar vacío.",
                                                  "parameters": "null"
                                              },
                                              {
                                                  "field": "app_key",
                                                  "message": "application was not provided",
                                                  "parameters": "null"
                                              }
                                          ]
                                      }
                                  }
                          - name: Edit User JurisdictionElement Channels
                            id: 64a43ef8-0ef9-485a-9e02-c065967efafe
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: PATCH
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "channels" : {
                                          "5c9b5c80e13a48ed37bc0989" : ["Canal1 Publico","Canal2 Publico"]
                                      }
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/user/edit-jurisdiction-element-channels
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - user
                                  - edit-jurisdiction-element-channels
                              description: >-
                                Permite a un usuario externo modificar los
                                canales que tiene activos para un
                                jurisdictionElement concreto.


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | channels | Object | Objeto cuyas claves son
                                los ids o friendlyIds de jurisdictionElement,
                                con valores en forma de array que pueden
                                contener indistintamente ids o friendlyids de
                                los canales a añadir para dicho
                                jurisdictionElement |
                            response:
                              - id: 97376409-da09-4776-93e1-e60156ed776a
                                name: Response OK
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "channels" : {
                                              "5c9b5c80e13a48ed37bc0989" : ["Canal1 Publico","Canal2 Publico"]
                                          }
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/edit-jurisdiction-element-channels
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - edit-jurisdiction-element-channels
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "jurisdiction_element_channels": {
                                          "5c9b5c80e13a48ed37bc0989": {
                                              "670cc9fbbdb73a4bfca75607": true,
                                              "670ccbc4bdb73a4bfca75608": true
                                          }
                                      }
                                  }
                              - id: 7442b1e6-eba5-451b-95c0-b6cf6eddcf3f
                                name: >-
                                  Error User Does Not Belong to
                                  JurisdictionElement
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "channels" : {
                                              "5c9b5c80e13a48ed37bc0989" : ["Canal1 Publico","Canal2 Publico"]
                                          }
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/edit-jurisdiction-element-channels
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - edit-jurisdiction-element-channels
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "Channel 670cc9fbbdb73a4bfca75607 is not in given jurisdictionElement 5c9b5c80e13a48ed37bc0989"
                                      }
                              - id: 0af253f3-3803-4492-8efd-f83224cad5dd
                                name: Error User Not in Jurisdiction
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "channels" : {
                                              "5c9b5c80e13a48ed37bc0989" : ["Canal1 Publico","Canal2 Publico"]
                                          }
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/edit-jurisdiction-element-channels
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - edit-jurisdiction-element-channels
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                          "code": 400,
                                          "description": "User does not belong to jurisdictionElement's Jurisdiction"
                                      }
                          - name: Edit User JurisdictionElement Channels 2
                            id: 5ec40986-f023-40e5-ae94-63f63d44ebd2
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: PATCH
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/jurisdiction-element-channels/edit
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - jurisdiction-element-channels
                                  - edit
                              description: >-
                                Este endpoint permite al usuario autenticado
                                actualizar los canales asociados a sus elementos
                                de jurisdicción.


                                Es un alias de**:** [PATCH
                                /user/edit-jurisdiction-element-channels](#tag/User-greater-User/operation/editUserJurisdictionElementChannels)  

                                Ambos endpoints comparten la misma lógica
                                interna y comportamiento, por lo que pueden
                                usarse de forma intercambiable. Este alias está
                                pensado para facilitar las operaciones centradas
                                en el propio usuario (`/me`).
                            response:
                              - id: c301a2ba-5cbc-4ac8-94b3-b0c350c13b34
                                name: Response OK
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/jurisdiction-element-channels/edit
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - jurisdiction-element-channels
                                      - edit
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "60d5f9ae2f8e4e1a7c8b456d": [
                                      "email",
                                      "sms"
                                    ],
                                    "60d5f9ae2f8e4e1a7c8b456e": [
                                      "push"
                                    ]
                                  }
                              - id: b064526e-85ad-4111-b811-697aac490473
                                name: >-
                                  Error Editing User Jurisdiction Element
                                  Channel
                                originalRequest:
                                  auth:
                                    type: bearer
                                    bearer:
                                      - key: token
                                        value: '{{token_public}}'
                                        type: string
                                  method: PATCH
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/jurisdiction-element-channels/edit
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - jurisdiction-element-channels
                                      - edit
                                  description: >-
                                    Este endpoint permite al usuario autenticado
                                    actualizar los canales asociados a sus
                                    elementos de jurisdicción.


                                    Es un alias de**:** [PATCH
                                    /user/edit-jurisdiction-element-channels](#tag/User-greater-User/operation/editUserJurisdictionElementChannels)  

                                    Ambos endpoints comparten la misma lógica
                                    interna y comportamiento, por lo que pueden
                                    usarse de forma intercambiable. Este alias
                                    está pensado para facilitar las operaciones
                                    centradas en el propio usuario (`/me`).
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "code": 400,
                                    "message": "Error editing user jurisdiction element channels"
                                  }
                          - name: Create User Profile
                            id: 8bb0bbb2-8bad-42d8-ac6a-24a45198ae13
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: PUT
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                     "first_name":"User",
                                     "last_name": "Prueba",
                                     "phone": 555123456
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/create-profile
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - create-profile
                                query:
                                  - key: token
                                    value: '{{profileToken}}'
                                    disabled: true
                              description: >-
                                Permite al usuario rellenar los datos de su
                                perfil, y añadirlos a la request creada


                                **Request Params**


                                | **Campo** | **Descripción** |

                                | --- | --- |

                                | token | Este token (recibido por correo)
                                contiene el correo del usuario y un request_id
                                encriptados |
                            response:
                              - id: 1ec2c090-c074-4d6c-b7bf-c70ff9f53547
                                name: Response OK
                                originalRequest:
                                  method: PUT
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                         "first_name":"User",
                                         "last_name": "Prueba",
                                         "phone": 555123456
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/create-profile?token=LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - create-profile
                                    query:
                                      - key: token
                                        value: >-
                                          LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA
                                status: OK
                                code: 200
                                _postman_previewlanguage: Text
                                cookie: []
                                body: '"User Profile created succesfully"'
                              - id: a76dfcab-6f04-4e6d-8900-530e50008a43
                                name: Response Invalid Token
                                originalRequest:
                                  method: PUT
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                         "first_name":"User",
                                         "last_name": "Prueba",
                                         "phone": 555123456
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/create-profile?token=LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - create-profile
                                    query:
                                      - key: token
                                        value: >-
                                          LO_0GW-aB-q4oaV_La4-ka1eRnYyCWAHfpg5WK9ADORm0gsg3lDMhwfGcfC_UzBA
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: Text
                                cookie: []
                                body: '"Invalid Token"'
                          - name: Remove Device
                            id: e81690d8-57c9-4ec6-8e68-77b4dcb64653
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: DELETE
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1",
                                      "app_key": 1752
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: https://api-pgics.sevilla.org/me/device
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - device
                              description: >-
                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | app_key | String | \[required\]. Aplicación
                                asociada al dispositivo. |

                                | device_id | String | \[required\]. ID del
                                dispositivo. |


                                Este endpoint permite **eliminar un dispositivo
                                previamente registrado y asociado al usuario
                                autenticado**, identificándolo mediante su
                                `device_id` y la `app_key`, de modo que deje de
                                estar vinculado al perfil del usuario y no
                                reciba más interacciones como notificaciones
                                push.
                            response:
                              - id: 7cb398d6-dd1c-4588-9012-7b7eb79af38e
                                name: Remove Device OK
                                originalRequest:
                                  method: DELETE
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1",
                                          "app_key": 1752
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/me/device
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "hasPassword": true,
                                      "nickname": "whatsapp:+573228958456",
                                      "main_address": {},
                                      "addresses": [],
                                      "app_evaluations": [],
                                      "avatar": "https://lh3.googleusercontent.com/a/ACg8ocKjclGiC_0Bb7EaLTqQQ06wIzsT63h2wcxLXqgwqWEYRQiRsmM=s96-c?sz=600",
                                      "channels": [],
                                      "configuration": {
                                          "app_notification": {
                                              "alerts": true,
                                              "comments": true,
                                              "follows": true,
                                              "requests": true
                                          },
                                          "email_notification": {
                                              "alerts": true,
                                              "comments": true,
                                              "follows": true,
                                              "requests": true
                                          }
                                      },
                                      "devices": [],
                                      "email": "michael.martinez@gopenux.com",
                                      "first_name": "Michael Santiago",
                                      "id": "68e6897873e517338e0305b2",
                                      "id_documents": [],
                                      "last_name": "Martinez Lopez",
                                      "notification_channels": [],
                                      "phone": "3228958456",
                                      "strongly_identified": false,
                                      "username": "whatsapp:+573228958456",
                                      "telegram_id": "8465975270",
                                      "anonymous": false,
                                      "jurisdiction_element_channels": []
                                  }
                              - id: b63eb287-2e95-4475-ad93-2b4642cbd331
                                name: Remove Device Invalid Json
                                originalRequest:
                                  method: DELETE
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1",
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/me/device
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error": {
                                          "code": 400,
                                          "message": "Invalid json message received"
                                      }
                                  }
                              - id: 4f5e6020-164f-4614-87cc-0aee36921013
                                name: Remove Device Failed
                                originalRequest:
                                  method: DELETE
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "device_id": "9F621B00-2C4C-49C1-B0D9-2F583F866DE1"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: https://api-pgics.sevilla.org/me/device
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - device
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "App_Key not provided"
                                      }
                                  ]
                        id: 8296b3bf-51ef-4d7c-a960-4cc5463a9df9
                        description: ' '
                      - name: User Custom Configuration
                        item:
                          - name: Get User CustomConfiguration App Element Id
                            id: 2fca94ed-270c-4855-84b9-f55fec506fd5
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id=org.alcobendas
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - custom_configuration
                                  - '{{app_element_id}}'
                                query:
                                  - key: type
                                    value: cityapp
                                    description: >-
                                      String. [required]. Especifica el tipo de
                                      configuracion personalizada de la
                                      consulta.
                                  - key: jurisdiction_id
                                    value: org.alcobendas
                                    description: >-
                                      String  [required]. Identificador único de
                                      la jurisdicción para la cual se obtendrá
                                      la configuración.
                              description: >-
                                ```

                                https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id}}

                                 ```

                                Este endpoint permite obtener la configuración
                                personalizada de un usuario para un **elemento
                                de la aplicación** específico (identificado por
                                `app_element_id`). En la respuesta, se
                                proporcionan detalles sobre las tarjetas activas
                                pertenecientes a el id de la aplicación.


                                | **Campo** | **Descripcion** |

                                | --- | --- |

                                | app_element_id | String. \[Require\].
                                Identificador unico del elemento de la
                                aplicación. |
                            response:
                              - id: 35c5f54a-ad70-4ab4-b9ce-9b664b7f2d06
                                name: Get User CustomConfiguration App Element Id OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element._idj}}.json?type=cityapp&jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element._idj}}.json'
                                    query:
                                      - key: type
                                        value: cityapp
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "active_cards": [
                                          {
                                              "app_element": {
                                                  "$ref": "AppElement",
                                                  "$id": {
                                                      "$oid": "59774b1dfbcdf7da018b4590"
                                                  },
                                                  "$db": "open010",
                                                  "type": "requests_card"
                                              },
                                              "position": {
                                                  "$numberLong": "1"
                                              },
                                              "selected": false,
                                              "createdDatetime": {
                                                  "$date": "2018-03-12T01:43:09.083Z"
                                              },
                                              "updatedDatetime": {
                                                  "$date": "2018-03-12T01:43:09.083Z"
                                              }
                                          }
                                      ]
                                  }
                              - id: 4fad558b-f2c5-4fcc-bc11-900e8e60c501
                                name: >-
                                  Get User CustomConfiguration App Element Id
                                  Error Not Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element._idj}}.json?type=requests_card&jurisdiction_id=591ed3cd370349bf018b4569
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element._idj}}.json'
                                    query:
                                      - key: type
                                        value: requests_card
                                      - key: jurisdiction_id
                                        value: 591ed3cd370349bf018b4569
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |
                                  {
                                    "error": "Not Found",
                                    "code": 404
                                  }
                              - id: 45c7aa6a-534c-489f-a4d5-6c8e2b61890d
                                name: >-
                                  Get User CustomConfiguration App Element Id
                                  Error Jurisdiction_id Not Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id}}?type=cityapp&jurisdiction_id=591ed3cd370349bf018b4569
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element_id}}'
                                    query:
                                      - key: type
                                        value: cityapp
                                        description: >-
                                          String. [required]. Especifica el tipo
                                          de configuracion personalizada de la
                                          consulta.
                                      - key: jurisdiction_id
                                        value: 591ed3cd370349bf018b4569
                                        description: >-
                                          String (ObjectId). [required].
                                          Identificador único de la jurisdicción
                                          para la cual se obtendrá la
                                          configuración.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "jurisdiction_id was not found"
                                      }
                                  ]
                              - id: efab3587-835a-4556-882c-28ae5079da2a
                                name: >-
                                  Get User CustomConfiguration App Element Id
                                  Error CustomConfigurations Not Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id}}?type=requests_card&jurisdiction_id=org.alcobendas
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element_id}}'
                                    query:
                                      - key: type
                                        value: requests_card
                                        description: >-
                                          String. [required]. Especifica el tipo
                                          de configuracion personalizada de la
                                          consulta.
                                      - key: jurisdiction_id
                                        value: org.alcobendas
                                        description: >-
                                          String (ObjectId). [required].
                                          Identificador único de la jurisdicción
                                          para la cual se obtendrá la
                                          configuración.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "CustomConfigurations not found"
                                      }
                                  ]
                          - name: Get User Custom Configuration
                            id: 8ec769db-8c35-489b-9981-56fb193df61e
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: >-
                                      OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw
                                    type: string
                              method: GET
                              header:
                                - key: Authorization
                                  value: >-
                                    Bearer
                                    OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw
                                - key: Cookie
                                  value: lunetics_locale=es
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - custom_configuration
                                query:
                                  - key: jurisdiction_ids
                                    value: org.alcobendas
                                    description: >-
                                      String. [required]. Identificador único de
                                      la jurisdicción para la cual se obtendrá
                                      la configuración.
                                  - key: type
                                    value: cityapp
                                    description: >-
                                      String. [required]. Tipo de aplicación
                                      para la cual se obtendrá la configuración
                                      personalizada del usuario en la(s)
                                      jurisdicción(es) indicada(s). Debe
                                      coincidir con el tipo registrado de la
                                      aplicación
                              description: >-
                                ```

                                mtc.vdeveloper.lan/public-api/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp

                                 ```

                                Este endpoint obtiene la configuración
                                personalizada del usuario autenticado para un
                                tipo de aplicación específico (`type`) dentro de
                                una o varias jurisdicciones (`jurisdiction_ids`,
                                separadas por comas). La respuesta devuelve
                                únicamente las configuraciones existentes
                                asociadas a aplicaciones de ese tipo en las
                                jurisdicciones solicitadas; si no hay
                                coincidencias, se responde con 404.
                            response:
                              - id: 88751f3c-2843-4bdb-937d-169317dbc591
                                name: Get User Custom Configuration OK
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                      - key: type
                                        value: cityapp
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "jurisdiction_id": "org.alcobendas",
                                          "active_external_services": [],
                                          "active_buttons": [],
                                          "active_cards": [
                                              {
                                                  "app_element": "67e11f151e0ac394a0057abd",
                                                  "account_config": [],
                                                  "position": 0,
                                                  "selected": true
                                              }
                                          ]
                                      }
                                  ]
                              - id: add8c174-4590-4667-9a7b-fb02467f45a7
                                name: >-
                                  Get User Custom Configuration  Error
                                  CustomConfiguration Not Found
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=city
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                      - key: type
                                        value: city
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "UserCustomConfigurations not found"
                                      }
                                  ]
                              - id: 71924a02-e94d-4881-bcf5-c5e11920d354
                                name: >-
                                  Get User Custom Configuration  Error
                                  Jurisdiction
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration?jurisdiction_ids=org.alcobeda&type=cityapp
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobeda
                                      - key: type
                                        value: cityapp
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "No jurisdiction found in the specified coordinates"
                                      }
                                  ]
                              - id: f9b4617b-9b46-4875-8bbd-d89b82aae4b1
                                name: >-
                                  Get User Custom Configuration Error User Not
                                  Fount
                                originalRequest:
                                  method: GET
                                  header:
                                    - key: Authorization
                                      value: >-
                                        Bearer
                                        OGZjMWZkZmYyNDA2MTY4NjU5ZDQ0N2JjZjg0NGRhNmU1OWE5NWE3ZDg1ZjdjM2E3M2NhNDMwNzMxMDI1MDY3Mw
                                    - key: Cookie
                                      value: lunetics_locale=es
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration?jurisdiction_ids=org.alcobendas&type=cityapp
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                    query:
                                      - key: jurisdiction_ids
                                        value: org.alcobendas
                                        description: >-
                                          String. [required]. Identificador único
                                          de la jurisdicción para la cual se
                                          obtendrá la configuración.
                                      - key: type
                                        value: cityapp
                                        description: >-
                                          String. [required]. Tipo de aplicación
                                          para la cual se obtendrá la
                                          configuración personalizada del usuario
                                          en la(s) jurisdicción(es) indicada(s).
                                          Debe coincidir con el tipo registrado de
                                          la aplicación
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "User not found"
                                      }
                                  ]
                          - name: Post User CustomConfiguration
                            id: 908091ef-6d66-46f3-bb15-8342f00681fa
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                    "jurisdiction_ids": "org.alcobendas",
                                    "type": "cityapp"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/custom_configuration.json
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - custom_configuration.json
                              description: >-
                                Este endpoint crea la configuración
                                personalizada del usuario para una aplicación y
                                jurisdicción dadas, registrando sus tarjetas y
                                botones activos.
                            response:
                              - id: 6e2ce20b-c630-426a-8a6b-1ed4298e8e3a
                                name: Response OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                        "jurisdiction_ids": "org.alcobendas",
                                        "type": "cityapp"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration.json
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration.json
                                status: OK
                                code: 200
                                _postman_previewlanguage: Text
                                cookie: []
                              - id: 3e4fbe57-f197-4d22-85f8-079c24856039
                                name: Error Jurisdiction_ids Not Send
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                        "jurisdiction_ids": "",
                                        "type": "alerts_card",
                                        "active_buttons": [
                                          { "app_element": "5950f73d29469c0e028b45a5", "position": 2 }
                                        ],
                                        "active_cards": [
                                          { "app_element": "59568d81a584070a1d8b4567", "position": 1 }
                                        ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration.json
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration.json
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "Jurisdiction_ids not send"
                                  }
                              - id: a0c7ff6a-28e3-4c1f-a12b-4bdaaac327c3
                                name: Error Jurisdiction Not Found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                        "jurisdiction_ids": "",
                                        "type": "alerts_card",
                                        "active_buttons": [
                                          { "app_element": "5950f73d29469c0e028b45a5", "position": 2 }
                                        ],
                                        "active_cards": [
                                          { "app_element": "59568d81a584070a1d8b4567", "position": 1 }
                                        ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration.json
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration.json
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "Jurisdiction not found"
                                  }
                              - id: 9cca340d-dfba-4338-8546-3dd579f2ff25
                                name: Error User Not Found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                        "jurisdiction_ids": "591ed3cd370349bf018b4569",
                                        "type": "alerts_card",
                                        "active_buttons": [
                                          { "app_element": "5950f73d29469c0e028b45a5", "position": 2 }
                                        ],
                                        "active_cards": [
                                          { "app_element": "59568d81a584070a1d8b4567", "position": 1 }
                                        ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration.json
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration.json
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "User not found"
                                  }
                              - id: 31a3e74e-20a3-41f5-819d-a512344cfb5c
                                name: Error Type Not Send
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                        "jurisdiction_ids": "591ed3cd370349bf018b4569",
                                        "type": "",
                                        "active_buttons": [
                                          { "app_element": "5950f73d29469c0e028b45a5", "position": 2 }
                                        ],
                                        "active_cards": [
                                          { "app_element": "59568d81a584070a1d8b4567", "position": 1 }
                                        ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration.json
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration.json
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "Type not send"
                                  }
                              - id: f37c565f-7804-41d6-ac24-d9ff4ad6fa91
                                name: Error UserCustomConfiguration Params Not Valid
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                        "type": "alerts_card",
                                        "active_buttons": [
                                          { "app_element": "5950f73d29469c0e028b45a5", "position": 2 }
                                        ],
                                        "active_cards": [
                                          { "app_element": "59568d81a584070a1d8b4567", "position": 1 }
                                        ]
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration.json
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration.json
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "UserCustomConfiguration params not valid"
                                  }
                          - name: Patch User CustomConfiguration App Element Id
                            id: 873bc9a2-fe57-4e58-8f1f-d7a3e68559a3
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: PATCH
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                    "position": 77,
                                    "selected": true,
                                    "account_config": [
                                      { 
                                          "id": "5f1e7d9a1b2c3456def7890a" 
                                      }
                                    ]
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id}}.json?type=city&jurisdiction_id=591ed3cd370349bf018b4569
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - me
                                  - custom_configuration
                                  - '{{app_element_id}}.json'
                                query:
                                  - key: type
                                    value: city
                                    description: >
                                      String. [Require]. Define el tipo de
                                      configuración personalizada que se va a
                                      editar.
                                  - key: jurisdiction_id
                                    value: 591ed3cd370349bf018b4569
                                    description: >
                                      String. [Require]. Identificador de la
                                      jurisdicción sobre la cual aplica la
                                      configuración.
                              description: >-
                                Este endpoint permite al usuario autenticado
                                modificar la configuración personalizada de una
                                tarjeta (app element), actualizando su posición,
                                estado de selección y parámetros de cuenta
                                asociados, identificada por su `app_element_id`.


                                | **Campo** | **Descripcion** |

                                | --- | --- |

                                | app_element_id | String. \[Require\].
                                Identificador del elemento de la aplicación cuya
                                configuración personalizada se edita. |

                                | position | Int. \[Require\]. Nueva posición en
                                la que debe mostrarse la tarjeta en la interfaz.
                                |

                                | selected | Bool. \[Require\]. Indica si la
                                tarjeta queda seleccionada (true) o no (false).
                                |

                                | account_config | Array. \[Require\]. Lista de
                                objetos con la configuración de cuenta asociada
                                a la tarjeta. |

                                | id | String (ObjectId). \[Require\].
                                Identificador único de cada objeto dentro de
                                account_config. |
                            response:
                              - id: dab80395-814d-42d7-a3ea-d7197919c995
                                name: Response OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id.}}.json?type=city&jurisdiction_id=591ed3cd370349bf018b4569
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element_id.}}.json'
                                    query:
                                      - key: type
                                        value: city
                                        description: >
                                          String. [Require]. Define el tipo de
                                          configuración personalizada que se va a
                                          editar.
                                      - key: jurisdiction_id
                                        value: 591ed3cd370349bf018b4569
                                        description: >
                                          String. [Require]. Identificador de la
                                          jurisdicción sobre la cual aplica la
                                          configuración.
                                status: OK
                                code: 200
                                _postman_previewlanguage: Text
                                cookie: []
                                body: '    '
                              - id: a10381ef-55a0-49b5-b511-694981545b44
                                name: Error User Not Found
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element_id.}}json'
                                    query:
                                      - key: type
                                        value: city
                                        description: >
                                          String. [Require]. Define el tipo de
                                          configuración personalizada que se va a
                                          editar.
                                      - key: jurisdiction_id
                                        value: 591ed3cd370349bf018b4569
                                        description: >
                                          String. [Require]. Identificador de la
                                          jurisdicción sobre la cual aplica la
                                          configuración.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "User not found"
                                  }
                              - id: 5ab6dfe4-fc91-4352-a694-ce4f87aa182b
                                name: Error Aplication Was Not Found
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element_id.}}json'
                                    query:
                                      - key: type
                                        value: city
                                        description: >
                                          String. [Require]. Define el tipo de
                                          configuración personalizada que se va a
                                          editar.
                                      - key: jurisdiction_id
                                        value: 591ed3cd370349bf018b4569
                                        description: >
                                          String. [Require]. Identificador de la
                                          jurisdicción sobre la cual aplica la
                                          configuración.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "Application was not found"
                                  }
                              - id: 1369e794-1345-4015-968e-c80af1590b97
                                name: Error UserConfigurationCustom Params Not Valid
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element_id.}}json'
                                    query:
                                      - key: type
                                        value: city
                                        description: >
                                          String. [Require]. Define el tipo de
                                          configuración personalizada que se va a
                                          editar.
                                      - key: jurisdiction_id
                                        value: 591ed3cd370349bf018b4569
                                        description: >
                                          String. [Require]. Identificador de la
                                          jurisdicción sobre la cual aplica la
                                          configuración.
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 400,
                                      "description": "UserCustomConfiguration params not valid"
                                  }
                              - id: 4bf4a564-91aa-45ed-8b9a-9d68cecb664c
                                name: Error Not Found Active Card
                                originalRequest:
                                  method: PATCH
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/me/custom_configuration/{{app_element_id.}}json?type=city&jurisdiction_id=591ed3cd370349bf018b4569
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - me
                                      - custom_configuration
                                      - '{{app_element_id.}}json'
                                    query:
                                      - key: type
                                        value: city
                                        description: >
                                          String. [Require]. Define el tipo de
                                          configuración personalizada que se va a
                                          editar.
                                      - key: jurisdiction_id
                                        value: 591ed3cd370349bf018b4569
                                        description: >
                                          String. [Require]. Identificador de la
                                          jurisdicción sobre la cual aplica la
                                          configuración.
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "code": 404,
                                      "description": "Not found active card"
                                  }
                        id: 19e5acff-ddc0-4dd7-9ae2-cc04a6de721d
                        description: ' '
                      - name: User Public
                        item:
                          - name: Delete User
                            id: 52c372ea-334f-42f3-8481-9e41ed49b5b4
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: POST
                              header: []
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/user/delete-user?token=exampleToken
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - user
                                  - delete-user
                                query:
                                  - key: token
                                    value: exampleToken
                                    description: >-
                                      (string) Token generado en el endpoint
                                      /user/send-delete-confirmation-mail. Va
                                      incrustado en una URL que contiene el
                                      correo que envía ese endpoint
                              description: >-
                                Con el token recibido, se saca el usuario a
                                anonimizar y la jurisdicción, lanza los WebHooks
                                cuyo evento sea webhook.event.type.disable_user
                                que tenga la jurisidicción, anonimiza el usuario
                                y manda un correo de éxito.
                            response:
                              - id: cf77678e-11b6-46de-b127-2161db06b1e1
                                name: Response OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/delete-user?token=exampleToken
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - delete-user
                                    query:
                                      - key: token
                                        value: exampleToken
                                        description: >-
                                          (string) Token generado en el endpoint
                                          /user/send-delete-confirmation-mail. Va
                                          incrustado en una URL que contiene el
                                          correo que envía ese endpoint
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "Username changed to ": "newUsername",
                                      "Requests reindexed successfully": true
                                  }
                              - id: cd0c27ec-41e7-4911-b6a6-ea8db29a6d91
                                name: Missing token
                                originalRequest:
                                  method: POST
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/delete-user
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - delete-user
                                    query:
                                      - key: token
                                        value: exampleToken
                                        description: >-
                                          (string) Token generado en el endpoint
                                          /user/send-delete-confirmation-mail. Va
                                          incrustado en una URL que contiene el
                                          correo que envía ese endpoint
                                        disabled: true
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "Token must be provided"
                                      }
                                  ]
                              - id: 76dc33a5-4aec-47a7-90fc-4e0db056aab6
                                name: Invalid token
                                originalRequest:
                                  method: POST
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/delete-user?token=exampleToken
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - delete-user
                                    query:
                                      - key: token
                                        value: exampleToken
                                        description: >-
                                          (string) Token generado en el endpoint
                                          /user/send-delete-confirmation-mail. Va
                                          incrustado en una URL que contiene el
                                          correo que envía ese endpoint
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "Invalid token"
                                      }
                                  ]
                          - name: Send Delete Confirmation Mail
                            id: 870c5f72-038e-4911-86fb-bb649de027d4
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              method: POST
                              header: []
                              body:
                                mode: raw
                                raw: |-
                                  {
                                      "email": "jhon.doe@example.com"
                                  }
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - user
                                  - send-delete-confirmation-mail
                                query:
                                  - key: jurisdiction_id
                                    value: '{{jurisdiction_id}}'
                                    description: >-
                                      String [required]. Un jurisdiction_id
                                      válido
                              description: >-
                                Envía un correo al email del usuario indicado
                                con un enlace para confirmar la anonimización de
                                los datos del usuario generando un token por
                                seguridad.


                                ### Body Params


                                | **Campo** | **Tipo** | **Descripción** |

                                | --- | --- | --- |

                                | email | string | \[required\] Email del
                                usuario que se quiere anonimizar |
                            response:
                              - id: 5d002826-159c-423a-9101-8918bda44d3c
                                name: Response OK
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "jhon.doe@example.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - send-delete-confirmation-mail
                                    query:
                                      - key: jurisdiction_id
                                        value: '{{jurisdiction_id}}'
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: '"Email sent to jhon.doe@example.com"'
                              - id: 50719fc8-f450-44de-8097-1fedc65a7349
                                name: Invalid jurisdiction_id
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "jhon.doe@example.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/send-delete-confirmation-mail?jurisdiction_id=fake_jurisdiction_id
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - send-delete-confirmation-mail
                                    query:
                                      - key: jurisdiction_id
                                        value: fake_jurisdiction_id
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "jurisdiction_id was not found"
                                      }
                                  ]
                              - id: e2d99dff-b1a3-4a3b-be1e-34b48ef87c11
                                name: User not found
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "jhon.doe@example.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - send-delete-confirmation-mail
                                    query:
                                      - key: jurisdiction_id
                                        value: '{{jurisdiction_id}}'
                                status: Not Found
                                code: 404
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 404,
                                          "description": "User not found"
                                      }
                                  ]
                              - id: 5b05f56c-7ebe-4294-b2df-167f03fd06ef
                                name: Error generating token
                                originalRequest:
                                  method: POST
                                  header: []
                                  body:
                                    mode: raw
                                    raw: |-
                                      {
                                          "email": "jhon.doe@example.com"
                                      }
                                    options:
                                      raw:
                                        language: json
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/user/send-delete-confirmation-mail?jurisdiction_id={{jurisdiction_id}}
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - user
                                      - send-delete-confirmation-mail
                                    query:
                                      - key: jurisdiction_id
                                        value: '{{jurisdiction_id}}'
                                        description: >-
                                          String [required]. Un jurisdiction_id
                                          válido
                                status: Bad Request
                                code: 400
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  [
                                      {
                                          "code": 400,
                                          "description": "There was an error generating a disableUserToken"
                                      }
                                  ]
                        id: 82ba12c4-f9ec-4c1f-995f-0e8f33ee4c45
                    id: a1071790-58d8-4b36-bb64-6494dcb21687
                    description: >-
                      Los usuarios externos de PGICS interactúan mediante
                      aplicaciones para crear y consultar el avance de sus
                      solicitudes, recibir información oficial y acceder a
                      servicios específicos del proyecto.
                  - name: Widget
                    item:
                      - name: Widget
                        item:
                          - name: Get AppElement Widgets
                            id: 22658367-c420-4619-bca3-4798fadbef2e
                            protocolProfileBehavior:
                              disableBodyPruning: true
                            request:
                              auth:
                                type: bearer
                                bearer:
                                  - key: token
                                    value: '{{token_public}}'
                                    type: string
                              method: GET
                              header: []
                              body:
                                mode: raw
                                raw: ''
                                options:
                                  raw:
                                    language: json
                              url:
                                raw: >-
                                  https://api-pgics.sevilla.org/app-element/{{id}}/widgets
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - app-element
                                  - '{{id}}'
                                  - widgets
                              description: >-
                                **Request Params**


                                | **Campo.** | **Descripción.** |

                                | --- | --- |

                                | id | Id del AppElement del cual se desean
                                obtener los widgets asociados. |


                                Este endpoint permite obtener los widgets
                                asociados a un AppElement específico, donde
                                `{id}` es el identificador único del AppElement.
                                A partir de dicho identificador, el endpoint
                                retorna los atributos de los widgets vinculados
                                al AppElement.
                            response:
                              - id: d9d7f4dc-7265-481e-883e-575880451e61
                                name: Response OK
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/app-element/{{id}}/widgets
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - app-element
                                      - '{{id}}'
                                      - widgets
                                status: OK
                                code: 200
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "id": "67730fa48f05e82987073fe8",
                                      "name": "asdasd",
                                      "type": "lines",
                                      "jurisdiction": {
                                          "id": "561e04ed6aa918910c8b4592",
                                          "jurisdiction_id": "org.alcobendas",
                                          "name": "Alcobendas"
                                      },
                                      "tags": []
                                  }
                              - id: 4362be42-d03a-472a-bfaf-0df75944a5a3
                                name: Error Credentials No Configuration
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/app-element/{{id}}/widgets
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - app-element
                                      - '{{id}}'
                                      - widgets
                                status: Internal Server Error
                                code: 500
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                      "error_code": 500,
                                      "message": "widgets_credentials_no_configuration"
                                  }
                              - id: f7a35a19-af24-495b-8c8d-24d0823d3600
                                name: Error Widget Login
                                originalRequest:
                                  method: GET
                                  header: []
                                  url:
                                    raw: >-
                                      https://api-pgics.sevilla.org/app-element/{{id}}/widgets
                                    host:
                                      - https://api-pgics.sevilla.org
                                    path:
                                      - app-element
                                      - '{{id}}'
                                      - widgets
                                status: Unauthorized
                                code: 401
                                _postman_previewlanguage: json
                                header:
                                  - key: Content-Type
                                    name: Content-Type
                                    value: application/json
                                    description: ''
                                    type: text
                                cookie: []
                                body: |-
                                  {
                                    "error_code": 401,
                                    "message": "widgets_error_login"
                                  }
                        id: 3b33e6e3-0f37-4105-96de-30bd69d1dc8b
                    id: f6d1bcfd-bce2-4e31-907b-b7ce7f002f9c
                  - name: Default
                    item:
                      - name: Upload File
                        id: 6a3d50cc-eb54-49a2-b474-e9dcbe2e9bc1
                        protocolProfileBehavior:
                          disableBodyPruning: true
                        request:
                          auth:
                            type: bearer
                            bearer:
                              - key: token
                                value: '{{token_public}}'
                                type: string
                          method: POST
                          header: []
                          body:
                            mode: formdata
                            formdata:
                              - type: file
                                key: file
                                description: >-
                                  File. [required]. Archivo que se desea subir
                                  al sistema.
                                value: null
                              - type: text
                                key: uri
                                value: request
                                description: >-
                                  String. [required]. Identificador del contexto
                                  o módulo al que se asociará el archivo.
                          url:
                            raw: https://api-pgics.sevilla.org/filemanagement
                            host:
                              - https://api-pgics.sevilla.org
                            path:
                              - filemanagement
                          description: >-
                            Este endpoint permite **subir archivos dentro del
                            sistema**, asociándolos mediante una URI, para que
                            posteriormente puedan ser vinculados a una
                            solicitud.
                        response:
                          - id: 27da3510-9aea-4ab2-9cd3-1f74e1981681
                            name: Upload File OK
                            originalRequest:
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - type: file
                                    key: file
                                    src:
                                      - >-
                                        postman-cloud:///1effec76-eba3-49e0-9423-0e4d5ee93721
                                  - type: text
                                    key: uri
                                    value: request
                              url:
                                raw: https://api-pgics.sevilla.org/filemanagement
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - filemanagement
                            status: OK
                            code: 200
                            _postman_previewlanguage: json
                            header:
                              - key: Content-Type
                                name: Content-Type
                                value: application/json
                                description: ''
                                type: text
                            cookie: []
                            body: >-
                              "https://s3.eu-west-1.amazonaws.com/static.dev.open010.org/request/69456f45dd1b16.86679270.png"
                          - id: 6ba1b15e-40e0-410c-a19d-5cffe3f80f02
                            name: Upload File Invalid
                            originalRequest:
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - type: file
                                    key: file
                                    src:
                                      - /home/radmas/Downloads/Dailies
                                  - type: text
                                    key: uri
                                    value: request
                              url:
                                raw: https://api-pgics.sevilla.org/filemanagement
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - filemanagement
                            status: Bad Request
                            code: 400
                            _postman_previewlanguage: json
                            header:
                              - key: Content-Type
                                name: Content-Type
                                value: application/json
                                description: ''
                                type: text
                            cookie: []
                            body: |-
                              {
                                  "error_code": 1130,
                                  "error_msg": "Bad file to upload"
                              }
                          - id: 7d5584fc-f450-493c-971b-5b7b3a2eb4f0
                            name: Upload File Required Parameter
                            originalRequest:
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - type: text
                                    key: uri
                                    value: ''
                              url:
                                raw: https://api-pgics.sevilla.org/filemanagement
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - filemanagement
                            status: Bad Request
                            code: 400
                            _postman_previewlanguage: json
                            header:
                              - key: Content-Type
                                name: Content-Type
                                value: application/json
                                description: ''
                                type: text
                            cookie: []
                            body: |-
                              {
                                  "error": {
                                      "code": 400,
                                      "message": "Required Parameter file"
                                  }
                              }
                          - id: 2dee3b92-f5b5-43c0-b5ee-f70f1e2d9c62
                            name: Upload Uri Required Parameter Copy
                            originalRequest:
                              method: POST
                              header: []
                              body:
                                mode: formdata
                                formdata:
                                  - type: file
                                    key: file
                                    src: []
                              url:
                                raw: https://api-pgics.sevilla.org/filemanagement
                                host:
                                  - https://api-pgics.sevilla.org
                                path:
                                  - filemanagement
                            status: Bad Request
                            code: 400
                            _postman_previewlanguage: json
                            header:
                              - key: Content-Type
                                name: Content-Type
                                value: application/json
                                description: ''
                                type: text
                            cookie: []
                            body: |-
                              [
                                  {
                                      "code": 400,
                                      "description": "Required Parameter uri"
                                  }
                              ]
                    id: eef51b0c-77f8-4fb0-ae38-0c8360d42cbf
                  - name: Documentos
                    item:
                      - name: UserDevice
                        item: []
                        id: 900bec66-f9be-459c-bc25-b47460ee9017
                        description: >-
                          | **Campo** | **Tipo** | **Descripcion** |

                          | --- | --- | --- |

                          | app_key | Int | \[required\]. Permite identificar la
                          validez de la solicitud controlando que el dispositivo
                          que cierra sesión se encuentre dentro de los
                          autorizados |

                          | app_version | String | \[required\]. Permite
                          verificar la versión de la aplicación de la plataforma
                          que se encuentra en uso en el dispositivo (permite
                          verificación de actualizaciones si están disponibles)
                          |

                          | brand | String | \[required\]. Valor que permite
                          identificar la marca del dispositivo (Ej: Samsung,
                          Huawei, etc). |

                          | device_id | String | \[required\]. Identificador
                          único del dispositivo. Se obtiene a partir de las
                          cabeceras de la petición |

                          | model | String | \[required\]. Permite identificar
                          el modelo del dispositivo |

                          | os_version | String | \[required\]. Permite
                          identificar la versión en uso del sistema operativo
                          del dispositivo |

                          | registration_id | String | \[required\].
                          Identificador único que se utiliza principalmente en
                          sistemas de mensajería y notificaciones push. Este id
                          es esencial para identificar y gestionar dispositivos
                          o instancias de aplicaciones específicas que están
                          registradas para recibir notificaciones |

                          | type | String | \[required\]. Permite identificar el
                          tipo de sistema operativo que usa el dispositivo(\[Ej:
                          Android, IOS) |
                    id: 1939f763-d28b-4f10-9a8d-95670f5aecec
                    description: ' '
                event:
                  - listen: prerequest
                    script:
                      id: 3e2e3894-f1b6-411f-b4ce-dbc1a687b7c8
                      type: text/javascript
                      packages: {}
                      exec:
                        - ''
                  - listen: test
                    script:
                      id: 58b034e2-f80c-4387-bfd2-fc4ff1461fb0
                      type: text/javascript
                      packages: {}
                      exec:
                        - ''
                variable:
                  - id: 0b4f1606-4883-44d9-a64d-1b4594e5260b
                    key: token
                    value: ''
                    type: string
                  - id: c9c76838-19de-433d-a00c-61cda3bea4a5
                    key: publicBaseUrl
                    value: ''
                    type: string
        '400':
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: This environment has deactivated the api docs
        '404':
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: The API documentation file is not available
  /openapi:
    get:
      tags:
        - Default
      summary: OpenApi
      operationId: openApi
      description: >-
        **Description**


        Devuelve la definición OpenAPI de la Public API en formato YAML. Este
        archivo permite a los desarrolladores importar la especificación en
        herramientas como Swagger UI, Postman, o generadores de código.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/xml
          content:
            text/plain:
              schema:
                type: string
              example: |-
                openapi: 3.0.0
                info:
                  title: Public Api
                  description: >-
                    # Descripción general


                    La API pública de MTX proporciona a los desarrolladores la capacidad de
                    integrar y utilizar las funcionalidades de nuestro servicio web dentro de
                    sus propias aplicaciones. A través de endpoints RESTful, se puede acceder a
                    diversas operaciones, desde la gestión de datos hasta la ejecución de tareas
                    especí­ficas en el entorno del servicio.


                    Esta documentación detalla el uso de cada uno de los endpoints disponibles,
                    proporcionando información sobre solicitudes y respuestas, parámetros
                    requeridos y ejemplos prácticos.


                    Para garantizar la seguridad de las solicitudes, la API utiliza **OAuth
                    2.0** como mecanismo de autenticación. Antes de realizar solicitudes a los
                    endpoints, los clientes deben autenticarse y obtener un token de acceso.
                    Asegúrate de seguir el flujo adecuado de OAuth 2.0 (por ejemplo, el flujo de
                    credenciales de cliente o de autorización) para obtener y renovar los
                    tokens.


                    Cada sección de la documentación incluye detalles sobre los métodos HTTP
                    soportados (`GET`, `POST`, `PUT`, `DELETE`) y la estructura de los datos
                    esperados, tanto en las solicitudes como en las respuestas.


                    # Configuración inicial


                    Para empezar a usar la API pública de MTX, debes **solicitar**:


                    1. Un **client_id de tipo open010_client**. Para incluir en todas las
                    peticiones.
                        

                    Para ello debes hacer una solicitud a radmas@radmas.com, explicando el caso
                    de uso que quieres resolver.


                    En el caso de la aplicación pública solamente se necesita el client_id ya
                    que no hace falta tener un usuario para crear avisos.


                    Por ejemplo:


                    > Solicito un client_id para el uso de la api de MTX 
                      

                    Una vez que tengas el client_id podrás empezar a hacer uso de la API pública
                    de MTX.


                    Todas las peticiones deben adjuntar como cabecera (_header_) este client_id.


                    ``` bash

                    -H "X-CLIENT-ID: YOUR_CLIENT_ID"

                     ```

                    ## Entornos disponibles


                    MTX cuenta con diferentes entornos para garantizar la calidad del desarrollo
                    y la estabilidad del sistema en producción. Puedes acceder a los siguientes
                    entornos:


                    - Producción:
                    [https://api.mejoratuciudad.org/](https://api.mejoratuciudad.org/)


                    - Preproducción:
                    [https://api-pre.mejoratuciudad.org/](https://api-pre.mejoratuciudad.org/)


                    - Canary:
                    [https://api-canary.mejoratuciudad.org/](https://api-canary.mejoratuciudad.org/)


                    - Formación:
                    [https://api-for.mejoratuciudad.org/](https://api-for.mejoratuciudad.org/api/)


                    ## Autenticar usuario


                    ### Obtener token


                    Para obtener un Token con OAuth 2.0 puedes consultar como hacer login en el
                    `POST` [de Security/Login](#tag/Security-greater-Security/operation/login).


                    Una vez obtenido el token deberás mandarlo en las siguientes peticiones de
                    esta forma:


                    ```

                    Authorization: Bearer YOUR_ACCESS_TOKEN

                     ```

                    ### Ejemplo de solicitud a la API pública usando el Token


                    ``` bash

                    curl -X GET \
                      /recurso \
                      -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
                      -H "X-CLIENT-ID: YOUR_CLIENT_ID"

                     ```

                    ## Renovar token con refresh_token


                    Cuando el `access_token` expire, se puede utilizar el `refresh_token`
                    devuelto en la respuesta para obtener un nuevo `access_token` sin necesidad
                    de volver a enviar las credenciales del usuario.


                    Puedes consultar la peción en el `POST` [de Security/Refresh
                    token](#tag/Security-greater-Security/operation/refreshToken).


                    ### Prueba de autenticación


                    Puedes comprobar si la autenticación ha ido conrrectamente haciendo la
                    siguiente petición después de haber hecho login:


                    ``` bash

                    curl -X GET \
                      /check_auth\
                      -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
                      -H "X-CLIENT-ID: YOUR_CLIENT_ID"

                     ```

                    Si todo ha ido bien recibrás un `true` por respuesta.


                    Si no estás autenticado correctamente la respuesta será:


                    ``` json

                    {
                      "message": "Authentication Required"
                    }

                     ```

                    {{c360PublicLogin}}


                    # Casos de uso


                    ## Listar avisos


                    Para listar avisos de MTX, puedes utilizar el endpoint de
                    [/requests](#tag/Request-greater-Request/operation/cgetRequests). Este
                    endpoint es ideal para consultar y explorar los avisos gestionados en MTX,
                    permitiendo filtrar por categorías, ordenar según distintos criterios, y
                    limitar la cantidad de datos retornados según las necesidades de la
                    aplicación o usuario.


                    ### Ejemplo de uso


                    Obtener 30 avisos ordenados por la fecha más reciente


                    ``` bash

                    curl '/requests' \
                         -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
                         -H "X-CLIENT-ID: YOUR_CLIENT_ID" \
                         -H 'Content-Type: application/json' \
                         --data-raw '{
                             "order": "newest_date_desc",
                             "page": 1,
                             "limit": 30,
                             "timezone": "Europe/Madrid"
                         }'

                     ```

                    Obtener los 10 avisos creados más recientemente filtrando por 2 categorías


                    ``` bash

                    curl '/requests' \
                         -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
                         -H "X-CLIENT-ID: YOUR_CLIENT_ID" \
                         -H 'Content-Type: application/json' \
                         --data-raw '{
                             "fields": {
                                "services": "591b33494e4ea840018b462c,591b33da4e4ea83a018b464f"
                             }
                             "order": "date_desc",
                             "page": 1,
                             "limit": 10,
                             "timezone": "Europe/Madrid"
                         }'

                     ```

                    ## Crear aviso


                    La funcionalidad principal de la plataforma de MTX es crear avisos y por lo
                    tanto la API pública dispone de un
                    [endpoint](#tag/Request-greater-Request/operation/createRequest) específico.
                    Para ello será necesario obtener algunos datos como la categoría para la
                    cual la API pública ofrece un [listado de
                    categorías](#tag/Service-greater-Service/operation/listService)
                    seleccionables disponibles. Si no se dispone de todos los datos completos
                    sobre la ubicación del aviso, se pueden proporcionar una dirección o
                    coordenadas iniciales, y [seleccionar un
                    subproyecto](#tag/JurisdictionElement-greater-JurisdictionElement/operation/listJurisdictionElementsByJurisdiction)
                    que permita completar automáticamente los [datos de localización
                    ](#tag/Location-greater-Location/operation/listLocationAdditionalData)
                    necesarios.


                    En el proceso de creación del aviso, existe un campo denominado
                    `additionalData` que podría requerir información adicional obligatoria. Para
                    identificar qué datos específicos deben enviarse en este campo, se debe
                    consultar previamente la información [detallada de la
                    categoría](#tag/Service-greater-Service/operation/serviceDetail)
                    seleccionada (service). Esta información se encuentra en:


                    ```

                    additionalData.configurable_questions[].required

                     ```

                    Ejemplo de estructura:


                    ``` json

                    "additionalData": {
                      "requiredVariables": [],
                      "configurable_questions": [
                        {
                          "editable": true,
                          "hidden_in_detail": false,
                          "hidden_in_form": false,
                          "hidden_in_open010_detail": false,
                          "hidden_in_open010_form": false,
                          "question": {},
                          "required": false
                        }
                      ]
                    }

                     ```

                    ### Ejemplo de uso


                    Crear un aviso con datos de localización


                    ``` bash

                    curl '/requests?jurisdiction_id=org.radmas&return_data=false' \
                              -H 'Content-Type: application/json' \
                              -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
                              -H 'X-CLIENT-ID: YOUR_CLIENT_ID' \
                              --data-raw '{
                                   "service_id":"591b33494e4ea840018b462c",
                                   "description":"prueba",
                                   "position":{
                                      "lat":40.368926273981,
                                      "lng":-3.742779151412
                                   },
                                   "address_string":"Calle Aguacate, 41",
                                   "internal":true,
                                   "jurisdiction_element":"5e5a3f17179796a7cbb93934"
                                }'

                     ```
                  version: 1.0.0
                servers:
                  - url: https://api-canary.mejoratuciudad.org
                components:
                  securitySchemes:
                    bearerAuth:
                      type: http
                      scheme: bearer
                    noauthAuth:
                      type: http
                      scheme: noauth
                tags:
                  - name: AdditionalData
                    description: >-
                      Representan información complementaria del ticket, relevante según el
                      contexto.
                  - name: AdditionalData > AdditionalData
                    description: >-
                      Representan información complementaria del ticket, relevante según el
                      contexto.
                  - name: AppConfiguration
                  - name: AppConfiguration > AppConfiguration
                  - name: Application
                  - name: Application > Application
                  - name: Channel
                  - name: Channel > Channel
                  - name: Jurisdiction
                    description: >-
                      El presente apartado permite la gestión de los proyectos que son la
                      columna vertebral del sistema y en donde se clasifican los grupos,
                      servicios, tipologias, etc. Usualmente son la representación de ciudades
                      aunque también pueden incluirse edificios según sea el caso.
                  - name: Jurisdiction > Jurisdiction
                    description: ' '
                  - name: Jurisdiction > JurisdictionOpen010User
                  - name: JurisdictionElement
                  - name: LegalTerms
                    description: >-
                      Conjunto de endpoints que permiten observar los términos legales del
                      entorno según el tipo de cliente (api pública o privada).
                  - name: LegalTerms > LegalTerms
                  - name: Location
                    description: ' '
                  - name: Location > Location
                    description: ' '
                  - name: Management
                  - name: Management > UpdatedVersion
                  - name: MapLayer
                  - name: MapLayer > MapLayer
                  - name: Notification
                    description: ' '
                  - name: Notification > Unsubscribe
                    description: ' '
                  - name: POI
                  - name: POI > PoiRoute
                  - name: PoiExtraData
                    description: ' '
                  - name: PoiExtraData > PoiExtraData
                    description: ' '
                  - name: Release
                  - name: Release > Release
                  - name: Request
                    description: >-
                      Un ticket en es una solicitud digital para gestionar incidencias, tareas o
                      requerimientos. Incluye información clave como descripción, prioridad,
                      estado y asignación.
                  - name: Request > Request Complaint
                  - name: Request > Request
                    description: ' '
                  - name: Request > Request Evaluation
                  - name: Request > Request File
                    description: ' '
                  - name: Request > Request Reiteration
                  - name: RequestComment
                  - name: RequestComment > Comment
                  - name: SearchEngine
                  - name: SearchEngine > SearchEngine
                  - name: Security
                    description: >-
                      El apartado de seguridad incluye endpoints para gestionar el acceso y la
                      sesión de usuarios, como login, logout, registro y restablecimiento de
                      contraseña, garantizando control y seguridad en la plataforma
                  - name: Security > Security
                    description: ' '
                  - name: Service
                    description: >-
                      Las categorías de servicio permiten la creación de tickets para órdenes de
                      trabajo o solicitudes.
                  - name: Service > Service
                    description: ' '
                  - name: SocialMedia
                  - name: SocialMedia > SocialMedia
                  - name: Typology
                    description: ' '
                  - name: Typology > Typology
                    description: ' '
                  - name: User
                    description: >-
                      Los usuarios externos de MTX interactúan mediante aplicaciones para crear
                      y consultar el avance de sus solicitudes, recibir información oficial y
                      acceder a servicios específicos del proyecto.
                  - name: User > User
                    description: ' '
                  - name: User > User Custom Configuration
                    description: ' '
                  - name: User > User Public
                  - name: Widget
                  - name: Widget > Widget
                  - name: Default
                  - name: Documentos
                    description: ' '
                  - name: Documentos > UserDevice
                    description: >-
                      | **Campo** | **Tipo** | **Descripcion** |

                      | --- | --- | --- |

                      | app_key | Int | \[required\]. Permite identificar la validez de la
                      solicitud controlando que el dispositivo que cierra sesión se encuentre
                      dentro de los autorizados |

                      | app_version | String | \[required\]. Permite verificar la versión de la
                      aplicación de la plataforma que se encuentra en uso en el dispositivo
                      (permite verificación de actualizaciones si están disponibles) |

                      | brand | String | \[required\]. Valor que permite identificar la marca
                      del dispositivo (Ej: Samsung, Huawei, etc). |

                      | device_id | String | \[required\]. Identificador único del dispositivo.
                      Se obtiene a partir de las cabeceras de la petición |

                      | model | String | \[required\]. Permite identificar el modelo del
                      dispositivo |

                      | os_version | String | \[required\]. Permite identificar la versión en
                      uso del sistema operativo del dispositivo |

                      | registration_id | String | \[required\]. Identificador único que se
                      utiliza principalmente en sistemas de mensajería y notificaciones push.
                      Este id es esencial para identificar y gestionar dispositivos o instancias
                      de aplicaciones específicas que están registradas para recibir
                      notificaciones |

                      | type | String | \[required\]. Permite identificar el tipo de sistema
                      operativo que usa el dispositivo(\[Ej: Android, IOS) |
                paths:
                  /question/{{questionId}}/answers:
                    get:
                      tags:
                        - AdditionalData > AdditionalData
                      summary: List MassiveSingleListQuestion
        '400':
          description: Bad Request
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 400
                  description: This environment has deactivated the api docs
        '404':
          description: Not Found
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                type: object
              example:
                - code: 404
                  description: OpenAPI document not found
  /:
    get:
      tags:
        - Default
      summary: view of the documentation
      operationId: viewOfTheDocumentation
      description: >-
        **Descripción**


        Página de inicio de la documentación de la Public API que presenta dos
        opciones de descarga: la colección de Postman y la especificación
        OpenAPI. Sirve como punto de acceso centralizado para que los
        desarrolladores obtengan la documentación de la API en el formato que
        prefieran.
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: text/html
          content:
            text/plain:
              schema:
                type: string
              example: |-
                <?xml version="1.0" encoding="utf-8"?>
                <!DOCTYPE html>
                <html lang="es">
                    <head>
                        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                        <title>MTX</title>
                        <meta name="description" content="">
                        <meta name="keywords" content="">
                        <meta name="title" content="MTX - Panel de Gestión" />
                        <meta name="author" content="Radmas" />
                        <meta name="language" content="es" />
                        <meta name="robots" content="index, follow" />
                        <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
                        <link rel="shortcut icon" href="//mtc.vdeveloper.lan/favicons/mtc/favicon.ico?1.0.10v" />
                        <link rel="stylesheet" href="//mtc.vdeveloper.lan/build/443.353e478c.css?1.0.10v">
                        <link rel="stylesheet" href="//mtc.vdeveloper.lan/build/app.a5a718fe.css?1.0.10v">
                        <style>
                        @font-face {
                            font-family: "request-categories";
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa66968921e083124249.eot"),
                                url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa66968921e083124249.eot#iefix") format("embedded-opentype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6696d987a456323966.svg") format("svg");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa669711b11498827233.ttf") format("truetype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa66972f052118457434.woff") format("woff");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6696e366e709372675.eot"),
                                url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6696e366e709372675.eot#iefix") format("embedded-opentype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa669731cd8372677158.svg") format("svg");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa6697467d0775852826.ttf") format("truetype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/66aa669761563178439487.woff") format("woff");
                            font-weight: normal;
                            font-style: normal;
                        }

                        .iyc-family-icon-request-categories.iyc-icon-0:before {
                            font-family: 'request-categories';
                            content: '\e800'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-1:before {
                            font-family: 'request-categories';
                            content: '\e801'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-2:before {
                            font-family: 'request-categories';
                            content: '\e802'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-3:before {
                            font-family: 'request-categories';
                            content: '\e803'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-4:before {
                            font-family: 'request-categories';
                            content: '\e804'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-5:before {
                            font-family: 'request-categories';
                            content: '\e805'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-6:before {
                            font-family: 'request-categories';
                            content: '\e806'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-7:before {
                            font-family: 'request-categories';
                            content: '\e807'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-8:before {
                            font-family: 'request-categories';
                            content: '\e808'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-9:before {
                            font-family: 'request-categories';
                            content: '\e809'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-10:before {
                            font-family: 'request-categories';
                            content: '\e80a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-11:before {
                            font-family: 'request-categories';
                            content: '\e80b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-12:before {
                            font-family: 'request-categories';
                            content: '\e80c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-13:before {
                            font-family: 'request-categories';
                            content: '\e80d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-14:before {
                            font-family: 'request-categories';
                            content: '\e80e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-15:before {
                            font-family: 'request-categories';
                            content: '\e80f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-16:before {
                            font-family: 'request-categories';
                            content: '\e810'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-17:before {
                            font-family: 'request-categories';
                            content: '\e811'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-18:before {
                            font-family: 'request-categories';
                            content: '\e812'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-19:before {
                            font-family: 'request-categories';
                            content: '\e813'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-20:before {
                            font-family: 'request-categories';
                            content: '\e814'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-21:before {
                            font-family: 'request-categories';
                            content: '\e815'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-22:before {
                            font-family: 'request-categories';
                            content: '\e816'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-23:before {
                            font-family: 'request-categories';
                            content: '\e817'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-24:before {
                            font-family: 'request-categories';
                            content: '\e818'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-25:before {
                            font-family: 'request-categories';
                            content: '\e819'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-26:before {
                            font-family: 'request-categories';
                            content: '\e81a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-27:before {
                            font-family: 'request-categories';
                            content: '\e81b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-28:before {
                            font-family: 'request-categories';
                            content: '\e81c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-29:before {
                            font-family: 'request-categories';
                            content: '\e81d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-30:before {
                            font-family: 'request-categories';
                            content: '\e81e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-31:before {
                            font-family: 'request-categories';
                            content: '\e81f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-32:before {
                            font-family: 'request-categories';
                            content: '\e820'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-33:before {
                            font-family: 'request-categories';
                            content: '\e821'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-34:before {
                            font-family: 'request-categories';
                            content: '\e822'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-35:before {
                            font-family: 'request-categories';
                            content: '\e823'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-36:before {
                            font-family: 'request-categories';
                            content: '\e824'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-37:before {
                            font-family: 'request-categories';
                            content: '\e825'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-38:before {
                            font-family: 'request-categories';
                            content: '\e826'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-39:before {
                            font-family: 'request-categories';
                            content: '\e827'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-40:before {
                            font-family: 'request-categories';
                            content: '\e828'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-41:before {
                            font-family: 'request-categories';
                            content: '\e829'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-42:before {
                            font-family: 'request-categories';
                            content: '\e82a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-43:before {
                            font-family: 'request-categories';
                            content: '\e82b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-44:before {
                            font-family: 'request-categories';
                            content: '\e82c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-45:before {
                            font-family: 'request-categories';
                            content: '\e82d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-46:before {
                            font-family: 'request-categories';
                            content: '\e82e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-47:before {
                            font-family: 'request-categories';
                            content: '\e82f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-48:before {
                            font-family: 'request-categories';
                            content: '\e830'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-49:before {
                            font-family: 'request-categories';
                            content: '\e831'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-50:before {
                            font-family: 'request-categories';
                            content: '\e832'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-51:before {
                            font-family: 'request-categories';
                            content: '\e833'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-52:before {
                            font-family: 'request-categories';
                            content: '\e834'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-53:before {
                            font-family: 'request-categories';
                            content: '\e835'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-54:before {
                            font-family: 'request-categories';
                            content: '\e836'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-55:before {
                            font-family: 'request-categories';
                            content: '\e837'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-56:before {
                            font-family: 'request-categories';
                            content: '\e838'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-57:before {
                            font-family: 'request-categories';
                            content: '\e839'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-58:before {
                            font-family: 'request-categories';
                            content: '\e83a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-59:before {
                            font-family: 'request-categories';
                            content: '\e83b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-60:before {
                            font-family: 'request-categories';
                            content: '\e83c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-61:before {
                            font-family: 'request-categories';
                            content: '\e83d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-62:before {
                            font-family: 'request-categories';
                            content: '\e83e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-63:before {
                            font-family: 'request-categories';
                            content: '\e83f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-64:before {
                            font-family: 'request-categories';
                            content: '\e840'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-65:before {
                            font-family: 'request-categories';
                            content: '\e841'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-66:before {
                            font-family: 'request-categories';
                            content: '\e842'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-67:before {
                            font-family: 'request-categories';
                            content: '\e843'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-68:before {
                            font-family: 'request-categories';
                            content: '\e844'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-69:before {
                            font-family: 'request-categories';
                            content: '\e845'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-70:before {
                            font-family: 'request-categories';
                            content: '\e846'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-71:before {
                            font-family: 'request-categories';
                            content: '\e847'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-72:before {
                            font-family: 'request-categories';
                            content: '\e848'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-73:before {
                            font-family: 'request-categories';
                            content: '\e849'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-74:before {
                            font-family: 'request-categories';
                            content: '\e84a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-75:before {
                            font-family: 'request-categories';
                            content: '\e84b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-76:before {
                            font-family: 'request-categories';
                            content: '\e84c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-77:before {
                            font-family: 'request-categories';
                            content: '\e84d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-78:before {
                            font-family: 'request-categories';
                            content: '\e84e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-79:before {
                            font-family: 'request-categories';
                            content: '\e84f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-80:before {
                            font-family: 'request-categories';
                            content: '\e850'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-81:before {
                            font-family: 'request-categories';
                            content: '\e851'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-82:before {
                            font-family: 'request-categories';
                            content: '\e852'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-83:before {
                            font-family: 'request-categories';
                            content: '\e853'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-84:before {
                            font-family: 'request-categories';
                            content: '\e854'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-85:before {
                            font-family: 'request-categories';
                            content: '\e855'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-86:before {
                            font-family: 'request-categories';
                            content: '\e856'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-87:before {
                            font-family: 'request-categories';
                            content: '\e857'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-88:before {
                            font-family: 'request-categories';
                            content: '\e858'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-89:before {
                            font-family: 'request-categories';
                            content: '\e859'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-90:before {
                            font-family: 'request-categories';
                            content: '\e85a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-91:before {
                            font-family: 'request-categories';
                            content: '\e85b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-92:before {
                            font-family: 'request-categories';
                            content: '\e85c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-93:before {
                            font-family: 'request-categories';
                            content: '\e85d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-94:before {
                            font-family: 'request-categories';
                            content: '\e85e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-95:before {
                            font-family: 'request-categories';
                            content: '\e85f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-96:before {
                            font-family: 'request-categories';
                            content: '\e860'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-97:before {
                            font-family: 'request-categories';
                            content: '\e861'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-98:before {
                            font-family: 'request-categories';
                            content: '\e862'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-99:before {
                            font-family: 'request-categories';
                            content: '\e863'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-100:before {
                            font-family: 'request-categories';
                            content: '\e864'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-101:before {
                            font-family: 'request-categories';
                            content: '\e865'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-102:before {
                            font-family: 'request-categories';
                            content: '\e866'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-103:before {
                            font-family: 'request-categories';
                            content: '\e867'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-104:before {
                            font-family: 'request-categories';
                            content: '\e868'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-105:before {
                            font-family: 'request-categories';
                            content: '\e869'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-106:before {
                            font-family: 'request-categories';
                            content: '\e86a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-107:before {
                            font-family: 'request-categories';
                            content: '\e86b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-108:before {
                            font-family: 'request-categories';
                            content: '\e86c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-109:before {
                            font-family: 'request-categories';
                            content: '\e86d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-110:before {
                            font-family: 'request-categories';
                            content: '\e86e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-111:before {
                            font-family: 'request-categories';
                            content: '\e86f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-112:before {
                            font-family: 'request-categories';
                            content: '\e870'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-113:before {
                            font-family: 'request-categories';
                            content: '\e871'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-114:before {
                            font-family: 'request-categories';
                            content: '\e872'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-115:before {
                            font-family: 'request-categories';
                            content: '\e873'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-116:before {
                            font-family: 'request-categories';
                            content: '\e874'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-117:before {
                            font-family: 'request-categories';
                            content: '\e875'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-118:before {
                            font-family: 'request-categories';
                            content: '\e876'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-119:before {
                            font-family: 'request-categories';
                            content: '\e877'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-120:before {
                            font-family: 'request-categories';
                            content: '\e878'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-121:before {
                            font-family: 'request-categories';
                            content: '\e879'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-122:before {
                            font-family: 'request-categories';
                            content: '\e87a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-123:before {
                            font-family: 'request-categories';
                            content: '\e87b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-124:before {
                            font-family: 'request-categories';
                            content: '\e87c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-125:before {
                            font-family: 'request-categories';
                            content: '\e87d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-126:before {
                            font-family: 'request-categories';
                            content: '\e87e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-127:before {
                            font-family: 'request-categories';
                            content: '\e87f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-128:before {
                            font-family: 'request-categories';
                            content: '\e880'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-129:before {
                            font-family: 'request-categories';
                            content: '\e881'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-130:before {
                            font-family: 'request-categories';
                            content: '\e882'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-131:before {
                            font-family: 'request-categories';
                            content: '\e883'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-132:before {
                            font-family: 'request-categories';
                            content: '\e884'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-133:before {
                            font-family: 'request-categories';
                            content: '\e885'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-134:before {
                            font-family: 'request-categories';
                            content: '\e886'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-135:before {
                            font-family: 'request-categories';
                            content: '\e887'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-136:before {
                            font-family: 'request-categories';
                            content: '\e888'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-137:before {
                            font-family: 'request-categories';
                            content: '\e889'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-138:before {
                            font-family: 'request-categories';
                            content: '\e88a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-139:before {
                            font-family: 'request-categories';
                            content: '\e88b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-140:before {
                            font-family: 'request-categories';
                            content: '\e88c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-141:before {
                            font-family: 'request-categories';
                            content: '\e88d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-142:before {
                            font-family: 'request-categories';
                            content: '\e88e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-143:before {
                            font-family: 'request-categories';
                            content: '\e88f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-144:before {
                            font-family: 'request-categories';
                            content: '\e890'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-145:before {
                            font-family: 'request-categories';
                            content: '\e891'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-146:before {
                            font-family: 'request-categories';
                            content: '\e892'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-147:before {
                            font-family: 'request-categories';
                            content: '\e893'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-148:before {
                            font-family: 'request-categories';
                            content: '\e894'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-149:before {
                            font-family: 'request-categories';
                            content: '\e895'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-150:before {
                            font-family: 'request-categories';
                            content: '\e896'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-151:before {
                            font-family: 'request-categories';
                            content: '\e897'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-152:before {
                            font-family: 'request-categories';
                            content: '\e898'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-153:before {
                            font-family: 'request-categories';
                            content: '\e899'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-154:before {
                            font-family: 'request-categories';
                            content: '\e89a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-155:before {
                            font-family: 'request-categories';
                            content: '\e89b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-156:before {
                            font-family: 'request-categories';
                            content: '\e89c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-157:before {
                            font-family: 'request-categories';
                            content: '\e89d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-158:before {
                            font-family: 'request-categories';
                            content: '\e89e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-159:before {
                            font-family: 'request-categories';
                            content: '\e89f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-160:before {
                            font-family: 'request-categories';
                            content: '\e8a0'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-161:before {
                            font-family: 'request-categories';
                            content: '\e8a1'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-162:before {
                            font-family: 'request-categories';
                            content: '\e8a2'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-163:before {
                            font-family: 'request-categories';
                            content: '\e8a3'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-164:before {
                            font-family: 'request-categories';
                            content: '\e8a4'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-165:before {
                            font-family: 'request-categories';
                            content: '\e8a5'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-166:before {
                            font-family: 'request-categories';
                            content: '\e8a6'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-167:before {
                            font-family: 'request-categories';
                            content: '\e8a7'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-168:before {
                            font-family: 'request-categories';
                            content: '\e8a8'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-169:before {
                            font-family: 'request-categories';
                            content: '\e8a9'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-170:before {
                            font-family: 'request-categories';
                            content: '\e8aa'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-171:before {
                            font-family: 'request-categories';
                            content: '\e8ab'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-172:before {
                            font-family: 'request-categories';
                            content: '\e8ac'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-173:before {
                            font-family: 'request-categories';
                            content: '\e8ad'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-174:before {
                            font-family: 'request-categories';
                            content: '\e8ae'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-175:before {
                            font-family: 'request-categories';
                            content: '\e8af'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-176:before {
                            font-family: 'request-categories';
                            content: '\e8b0'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-177:before {
                            font-family: 'request-categories';
                            content: '\e8b1'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-178:before {
                            font-family: 'request-categories';
                            content: '\e8b2'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-179:before {
                            font-family: 'request-categories';
                            content: '\e8b3'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-180:before {
                            font-family: 'request-categories';
                            content: '\e8b4'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-181:before {
                            font-family: 'request-categories';
                            content: '\e8b5'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-182:before {
                            font-family: 'request-categories';
                            content: '\e8b6'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-183:before {
                            font-family: 'request-categories';
                            content: '\e8b7'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-184:before {
                            font-family: 'request-categories';
                            content: '\e8b8'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-185:before {
                            font-family: 'request-categories';
                            content: '\e8b9'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-186:before {
                            font-family: 'request-categories';
                            content: '\e8ba'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-187:before {
                            font-family: 'request-categories';
                            content: '\e8bb'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-188:before {
                            font-family: 'request-categories';
                            content: '\e8bc'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-189:before {
                            font-family: 'request-categories';
                            content: '\e8bd'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-190:before {
                            font-family: 'request-categories';
                            content: '\e8be'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-191:before {
                            font-family: 'request-categories';
                            content: '\e8bf'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-192:before {
                            font-family: 'request-categories';
                            content: '\e8c0'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-193:before {
                            font-family: 'request-categories';
                            content: '\e8c1'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-194:before {
                            font-family: 'request-categories';
                            content: '\e8c2'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-195:before {
                            font-family: 'request-categories';
                            content: '\e8c3'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-196:before {
                            font-family: 'request-categories';
                            content: '\e8c4'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-197:before {
                            font-family: 'request-categories';
                            content: '\e8c5'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-198:before {
                            font-family: 'request-categories';
                            content: '\e8c6'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-199:before {
                            font-family: 'request-categories';
                            content: '\e8c7'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-200:before {
                            font-family: 'request-categories';
                            content: '\e8c8'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-201:before {
                            font-family: 'request-categories';
                            content: '\e8c9'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-202:before {
                            font-family: 'request-categories';
                            content: '\e8ca'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-203:before {
                            font-family: 'request-categories';
                            content: '\e8cb'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-204:before {
                            font-family: 'request-categories';
                            content: '\e8cc'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-205:before {
                            font-family: 'request-categories';
                            content: '\e8cd'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-206:before {
                            font-family: 'request-categories';
                            content: '\e8ce'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-207:before {
                            font-family: 'request-categories';
                            content: '\e8cf'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-208:before {
                            font-family: 'request-categories';
                            content: '\e8d0'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-209:before {
                            font-family: 'request-categories';
                            content: '\e8d1'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-210:before {
                            font-family: 'request-categories';
                            content: '\e8d2'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-211:before {
                            font-family: 'request-categories';
                            content: '\e8d3'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-212:before {
                            font-family: 'request-categories';
                            content: '\e8d4'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-213:before {
                            font-family: 'request-categories';
                            content: '\e8d5'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-214:before {
                            font-family: 'request-categories';
                            content: '\e8d6'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-215:before {
                            font-family: 'request-categories';
                            content: '\e8d7'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-216:before {
                            font-family: 'request-categories';
                            content: '\e8d8'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-217:before {
                            font-family: 'request-categories';
                            content: '\e8d9'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-218:before {
                            font-family: 'request-categories';
                            content: '\e8da'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-219:before {
                            font-family: 'request-categories';
                            content: '\e8db'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-220:before {
                            font-family: 'request-categories';
                            content: '\e8dc'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-221:before {
                            font-family: 'request-categories';
                            content: '\e8dd'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-222:before {
                            font-family: 'request-categories';
                            content: '\e8de'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-223:before {
                            font-family: 'request-categories';
                            content: '\e8df'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-224:before {
                            font-family: 'request-categories';
                            content: '\e8e0'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-225:before {
                            font-family: 'request-categories';
                            content: '\e8e1'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-226:before {
                            font-family: 'request-categories';
                            content: '\e8e2'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-227:before {
                            font-family: 'request-categories';
                            content: '\e8e3'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-228:before {
                            font-family: 'request-categories';
                            content: '\e8e4'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-229:before {
                            font-family: 'request-categories';
                            content: '\e8e5'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-230:before {
                            font-family: 'request-categories';
                            content: '\e8e6'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-231:before {
                            font-family: 'request-categories';
                            content: '\e8e7'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-232:before {
                            font-family: 'request-categories';
                            content: '\e8e8'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-233:before {
                            font-family: 'request-categories';
                            content: '\e8e9'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-234:before {
                            font-family: 'request-categories';
                            content: '\e8ea'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-235:before {
                            font-family: 'request-categories';
                            content: '\e8eb'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-236:before {
                            font-family: 'request-categories';
                            content: '\e8ec'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-237:before {
                            font-family: 'request-categories';
                            content: '\e8ed'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-238:before {
                            font-family: 'request-categories';
                            content: '\e8ee'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-239:before {
                            font-family: 'request-categories';
                            content: '\e8ef'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-240:before {
                            font-family: 'request-categories';
                            content: '\e8f0'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-241:before {
                            font-family: 'request-categories';
                            content: '\e8f1'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-242:before {
                            font-family: 'request-categories';
                            content: '\e8f2'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-243:before {
                            font-family: 'request-categories';
                            content: '\e8f3'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-244:before {
                            font-family: 'request-categories';
                            content: '\e8f4'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-245:before {
                            font-family: 'request-categories';
                            content: '\e8f5'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-246:before {
                            font-family: 'request-categories';
                            content: '\e8f6'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-247:before {
                            font-family: 'request-categories';
                            content: '\e8f7'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-248:before {
                            font-family: 'request-categories';
                            content: '\e8f8'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-249:before {
                            font-family: 'request-categories';
                            content: '\e8f9'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-250:before {
                            font-family: 'request-categories';
                            content: '\e8fa'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-251:before {
                            font-family: 'request-categories';
                            content: '\e8fb'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-252:before {
                            font-family: 'request-categories';
                            content: '\e8fc'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-253:before {
                            font-family: 'request-categories';
                            content: '\e8fd'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-254:before {
                            font-family: 'request-categories';
                            content: '\e8fe'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-255:before {
                            font-family: 'request-categories';
                            content: '\e8ff'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-256:before {
                            font-family: 'request-categories';
                            content: '\e900'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-257:before {
                            font-family: 'request-categories';
                            content: '\e901'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-258:before {
                            font-family: 'request-categories';
                            content: '\e902'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-259:before {
                            font-family: 'request-categories';
                            content: '\e903'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-260:before {
                            font-family: 'request-categories';
                            content: '\e904'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-261:before {
                            font-family: 'request-categories';
                            content: '\e905'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-262:before {
                            font-family: 'request-categories';
                            content: '\e906'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-263:before {
                            font-family: 'request-categories';
                            content: '\e907'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-264:before {
                            font-family: 'request-categories';
                            content: '\e908'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-265:before {
                            font-family: 'request-categories';
                            content: '\e909'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-266:before {
                            font-family: 'request-categories';
                            content: '\e90a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-267:before {
                            font-family: 'request-categories';
                            content: '\e90b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-268:before {
                            font-family: 'request-categories';
                            content: '\e90c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-269:before {
                            font-family: 'request-categories';
                            content: '\e90d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-270:before {
                            font-family: 'request-categories';
                            content: '\e90e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-271:before {
                            font-family: 'request-categories';
                            content: '\e90f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-272:before {
                            font-family: 'request-categories';
                            content: '\e910'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-273:before {
                            font-family: 'request-categories';
                            content: '\e911'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-274:before {
                            font-family: 'request-categories';
                            content: '\e912'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-275:before {
                            font-family: 'request-categories';
                            content: '\e913'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-276:before {
                            font-family: 'request-categories';
                            content: '\e914'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-277:before {
                            font-family: 'request-categories';
                            content: '\e915'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-278:before {
                            font-family: 'request-categories';
                            content: '\e916'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-279:before {
                            font-family: 'request-categories';
                            content: '\e917'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-280:before {
                            font-family: 'request-categories';
                            content: '\e918'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-281:before {
                            font-family: 'request-categories';
                            content: '\e919'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-282:before {
                            font-family: 'request-categories';
                            content: '\e91a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-283:before {
                            font-family: 'request-categories';
                            content: '\e91b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-284:before {
                            font-family: 'request-categories';
                            content: '\e91c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-285:before {
                            font-family: 'request-categories';
                            content: '\e91d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-286:before {
                            font-family: 'request-categories';
                            content: '\e91e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-287:before {
                            font-family: 'request-categories';
                            content: '\e91f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-288:before {
                            font-family: 'request-categories';
                            content: '\e920'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-289:before {
                            font-family: 'request-categories';
                            content: '\e921'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-290:before {
                            font-family: 'request-categories';
                            content: '\e922'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-291:before {
                            font-family: 'request-categories';
                            content: '\e923'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-292:before {
                            font-family: 'request-categories';
                            content: '\e924'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-293:before {
                            font-family: 'request-categories';
                            content: '\e925'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-294:before {
                            font-family: 'request-categories';
                            content: '\e926'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-295:before {
                            font-family: 'request-categories';
                            content: '\e927'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-296:before {
                            font-family: 'request-categories';
                            content: '\e928'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-297:before {
                            font-family: 'request-categories';
                            content: '\e929'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-298:before {
                            font-family: 'request-categories';
                            content: '\e92a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-299:before {
                            font-family: 'request-categories';
                            content: '\e92b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-300:before {
                            font-family: 'request-categories';
                            content: '\e92c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-301:before {
                            font-family: 'request-categories';
                            content: '\e92d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-302:before {
                            font-family: 'request-categories';
                            content: '\e92e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-303:before {
                            font-family: 'request-categories';
                            content: '\e92f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-304:before {
                            font-family: 'request-categories';
                            content: '\e930'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-305:before {
                            font-family: 'request-categories';
                            content: '\e931'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-306:before {
                            font-family: 'request-categories';
                            content: '\e932'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-307:before {
                            font-family: 'request-categories';
                            content: '\e933'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-308:before {
                            font-family: 'request-categories';
                            content: '\e934'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-309:before {
                            font-family: 'request-categories';
                            content: '\e935'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-310:before {
                            font-family: 'request-categories';
                            content: '\e936'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-311:before {
                            font-family: 'request-categories';
                            content: '\e937'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-312:before {
                            font-family: 'request-categories';
                            content: '\e938'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-313:before {
                            font-family: 'request-categories';
                            content: '\e939'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-314:before {
                            font-family: 'request-categories';
                            content: '\e93a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-315:before {
                            font-family: 'request-categories';
                            content: '\e93b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-316:before {
                            font-family: 'request-categories';
                            content: '\e93c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-317:before {
                            font-family: 'request-categories';
                            content: '\e93d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-318:before {
                            font-family: 'request-categories';
                            content: '\e93e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-319:before {
                            font-family: 'request-categories';
                            content: '\e93f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-320:before {
                            font-family: 'request-categories';
                            content: '\e940'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-321:before {
                            font-family: 'request-categories';
                            content: '\e941'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-322:before {
                            font-family: 'request-categories';
                            content: '\e942'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-323:before {
                            font-family: 'request-categories';
                            content: '\e943'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-324:before {
                            font-family: 'request-categories';
                            content: '\e944'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-325:before {
                            font-family: 'request-categories';
                            content: '\e945'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-326:before {
                            font-family: 'request-categories';
                            content: '\e946'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-327:before {
                            font-family: 'request-categories';
                            content: '\e947'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-328:before {
                            font-family: 'request-categories';
                            content: '\e948'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-329:before {
                            font-family: 'request-categories';
                            content: '\e949'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-330:before {
                            font-family: 'request-categories';
                            content: '\e94a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-331:before {
                            font-family: 'request-categories';
                            content: '\e94b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-332:before {
                            font-family: 'request-categories';
                            content: '\e94c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-333:before {
                            font-family: 'request-categories';
                            content: '\e94d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-334:before {
                            font-family: 'request-categories';
                            content: '\e94e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-335:before {
                            font-family: 'request-categories';
                            content: '\e94f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-336:before {
                            font-family: 'request-categories';
                            content: '\e950'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-337:before {
                            font-family: 'request-categories';
                            content: '\e951'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-338:before {
                            font-family: 'request-categories';
                            content: '\e952'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-339:before {
                            font-family: 'request-categories';
                            content: '\e953'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-340:before {
                            font-family: 'request-categories';
                            content: '\e954'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-341:before {
                            font-family: 'request-categories';
                            content: '\e955'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-342:before {
                            font-family: 'request-categories';
                            content: '\e956'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-343:before {
                            font-family: 'request-categories';
                            content: '\e957'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-344:before {
                            font-family: 'request-categories';
                            content: '\e958'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-345:before {
                            font-family: 'request-categories';
                            content: '\e959'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-346:before {
                            font-family: 'request-categories';
                            content: '\e95a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-347:before {
                            font-family: 'request-categories';
                            content: '\e95b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-348:before {
                            font-family: 'request-categories';
                            content: '\e95c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-349:before {
                            font-family: 'request-categories';
                            content: '\e95d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-350:before {
                            font-family: 'request-categories';
                            content: '\e95e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-351:before {
                            font-family: 'request-categories';
                            content: '\e95f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-352:before {
                            font-family: 'request-categories';
                            content: '\e960'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-353:before {
                            font-family: 'request-categories';
                            content: '\e961'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-354:before {
                            font-family: 'request-categories';
                            content: '\e962'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-355:before {
                            font-family: 'request-categories';
                            content: '\e963'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-356:before {
                            font-family: 'request-categories';
                            content: '\e964'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-357:before {
                            font-family: 'request-categories';
                            content: '\e965'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-358:before {
                            font-family: 'request-categories';
                            content: '\e966'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-359:before {
                            font-family: 'request-categories';
                            content: '\e967'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-360:before {
                            font-family: 'request-categories';
                            content: '\e968'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-361:before {
                            font-family: 'request-categories';
                            content: '\e969'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-362:before {
                            font-family: 'request-categories';
                            content: '\e96a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-363:before {
                            font-family: 'request-categories';
                            content: '\e96b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-364:before {
                            font-family: 'request-categories';
                            content: '\e96c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-365:before {
                            font-family: 'request-categories';
                            content: '\e96d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-366:before {
                            font-family: 'request-categories';
                            content: '\e96e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-367:before {
                            font-family: 'request-categories';
                            content: '\e96f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-368:before {
                            font-family: 'request-categories';
                            content: '\e970'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-369:before {
                            font-family: 'request-categories';
                            content: '\e971'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-370:before {
                            font-family: 'request-categories';
                            content: '\e972'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-371:before {
                            font-family: 'request-categories';
                            content: '\e973'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-372:before {
                            font-family: 'request-categories';
                            content: '\e974'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-373:before {
                            font-family: 'request-categories';
                            content: '\e975'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-374:before {
                            font-family: 'request-categories';
                            content: '\e976'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-375:before {
                            font-family: 'request-categories';
                            content: '\e977'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-376:before {
                            font-family: 'request-categories';
                            content: '\e978'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-377:before {
                            font-family: 'request-categories';
                            content: '\e979'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-378:before {
                            font-family: 'request-categories';
                            content: '\e97a'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-379:before {
                            font-family: 'request-categories';
                            content: '\e97b'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-380:before {
                            font-family: 'request-categories';
                            content: '\e97c'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-381:before {
                            font-family: 'request-categories';
                            content: '\e97d'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-382:before {
                            font-family: 'request-categories';
                            content: '\e97e'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-383:before {
                            font-family: 'request-categories';
                            content: '\e97f'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-384:before {
                            font-family: 'request-categories';
                            content: '\e980'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-385:before {
                            font-family: 'request-categories';
                            content: '\e981'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-386:before {
                            font-family: 'request-categories';
                            content: '\e982'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-387:before {
                            font-family: 'request-categories';
                            content: '\e983'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-388:before {
                            font-family: 'request-categories';
                            content: '\e984'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-389:before {
                            font-family: 'request-categories';
                            content: '\e985'
                        }

                        .iyc-family-icon-request-categories.iyc-icon-390:before {
                            font-family: 'request-categories';
                            content: '\e986'
                        }

                        @font-face {
                            font-family: "jurisdiction-widgets";
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d3566288db858671994.woff") format("woff");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d356662905887706574.eot"),
                                url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d356662905887706574.eot#iefix") format("embedded-opentype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d35667750c841593410.svg") format("svg");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/670d35668ef92528260901.ttf") format("truetype");
                            font-weight: normal;
                            font-style: normal;
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-0:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e800'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-1:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e801'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-2:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e802'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-3:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e803'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-4:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e804'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-5:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e805'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-6:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e806'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-7:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e807'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-8:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e808'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-9:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e809'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-10:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e80a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-11:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e80b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-12:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e80c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-13:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e80d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-14:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e80e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-15:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e80f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-16:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e810'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-17:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e811'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-18:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e812'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-19:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e813'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-20:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e814'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-21:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e815'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-22:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e816'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-23:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e817'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-24:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e818'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-25:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e819'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-26:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e81a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-27:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e81b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-28:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e81c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-29:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e81d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-30:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e81e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-31:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e81f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-32:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e820'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-33:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e821'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-34:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e822'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-35:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e823'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-36:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e824'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-37:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e825'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-38:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e826'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-39:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e827'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-40:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e828'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-41:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e829'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-42:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e82a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-43:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e82b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-44:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e82c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-45:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e82d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-46:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e82e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-47:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e82f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-48:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e830'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-49:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e831'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-50:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e832'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-51:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e833'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-52:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e834'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-53:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e835'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-54:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e836'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-55:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e837'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-56:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e838'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-57:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e839'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-58:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e83a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-59:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e83b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-60:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e83c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-61:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e83d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-62:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e83e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-63:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e83f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-64:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e840'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-65:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e841'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-66:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e842'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-67:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e843'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-68:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e844'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-69:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e845'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-70:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e846'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-71:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e847'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-72:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e848'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-73:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e849'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-74:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e84a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-75:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e84b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-76:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e84c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-77:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e84d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-78:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e84e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-79:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e84f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-80:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e850'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-81:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e851'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-82:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e852'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-83:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e853'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-84:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e854'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-85:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e855'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-86:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e856'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-87:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e857'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-88:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e858'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-89:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e859'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-90:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e85a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-91:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e85b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-92:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e85c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-93:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e85d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-94:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e85e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-95:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e85f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-96:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e860'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-97:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e861'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-98:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e862'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-99:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e863'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-100:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e864'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-101:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e865'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-102:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e866'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-103:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e867'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-104:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e868'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-105:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e869'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-106:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e86a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-107:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e86b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-108:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e86c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-109:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e86d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-110:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e86e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-111:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e86f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-112:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e870'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-113:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e871'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-114:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e872'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-115:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e873'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-116:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e874'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-117:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e875'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-118:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e876'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-119:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e877'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-120:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e878'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-121:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e879'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-122:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e87a'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-123:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e87b'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-124:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e87c'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-125:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e87d'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-126:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e87e'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-127:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e87f'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-128:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e880'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-129:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e881'
                        }

                        .iyc-family-icon-jurisdiction-widgets.iyc-icon-130:before {
                            font-family: 'jurisdiction-widgets';
                            content: '\e882'
                        }

                        @font-face {
                            font-family: "jurisdiction-priorities";
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cea1c7c.eot"),
                                url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cea1c7c.eot#iefix") format("embedded-opentype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cee0a10.svg") format("svg");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17ceeebe0.ttf") format("truetype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/595e17cf08b02.woff") format("woff");
                            font-weight: normal;
                            font-style: normal;
                        }

                        .iyc-family-icon-jurisdiction-priorities.iyc-icon-0:before {
                            font-family: 'jurisdiction-priorities';
                            content: '\e800'
                        }

                        .iyc-family-icon-jurisdiction-priorities.iyc-icon-1:before {
                            font-family: 'jurisdiction-priorities';
                            content: '\e801'
                        }

                        .iyc-family-icon-jurisdiction-priorities.iyc-icon-2:before {
                            font-family: 'jurisdiction-priorities';
                            content: '\e802'
                        }

                        .iyc-family-icon-jurisdiction-priorities.iyc-icon-3:before {
                            font-family: 'jurisdiction-priorities';
                            content: '\e803'
                        }

                        .iyc-family-icon-jurisdiction-priorities.iyc-icon-4:before {
                            font-family: 'jurisdiction-priorities';
                            content: '\e804'
                        }

                        @font-face {
                            font-family: "jurisdiction-typologies";
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5e83182267643750.eot"),
                                url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5e83182267643750.eot#iefix") format("embedded-opentype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5ebc613506260986.svg") format("svg");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5ecbb59129265446.ttf") format("truetype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/6729ec5ed7b51611982298.woff") format("woff");
                            font-weight: normal;
                            font-style: normal;
                        }

                        .iyc-family-icon-jurisdiction-typologies.iyc-icon-0:before {
                            font-family: 'jurisdiction-typologies';
                            content: '\e800'
                        }

                        .iyc-family-icon-jurisdiction-typologies.iyc-icon-1:before {
                            font-family: 'jurisdiction-typologies';
                            content: '\e801'
                        }

                        .iyc-family-icon-jurisdiction-typologies.iyc-icon-2:before {
                            font-family: 'jurisdiction-typologies';
                            content: '\e802'
                        }

                        .iyc-family-icon-jurisdiction-typologies.iyc-icon-3:before {
                            font-family: 'jurisdiction-typologies';
                            content: '\e803'
                        }

                        .iyc-family-icon-jurisdiction-typologies.iyc-icon-4:before {
                            font-family: 'jurisdiction-typologies';
                            content: '\e804'
                        }

                        .iyc-family-icon-jurisdiction-typologies.iyc-icon-5:before {
                            font-family: 'jurisdiction-typologies';
                            content: '\e805'
                        }

                        @font-face {
                            font-family: "jurisdiction-typology-nodes";
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c62d6aef.eot"),
                                url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c62d6aef.eot#iefix") format("embedded-opentype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c631975e.svg") format("svg");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c63295cb.ttf") format("truetype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/5df35c633ff30.woff") format("woff");
                            font-weight: normal;
                            font-style: normal;
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-0:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e800'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-1:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e801'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-2:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e802'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-3:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e803'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-4:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e804'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-5:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e805'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-6:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e806'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-7:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e807'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-8:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e808'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-9:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e809'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-10:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e80a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-11:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e80b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-12:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e80c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-13:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e80d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-14:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e80e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-15:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e80f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-16:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e810'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-17:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e811'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-18:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e812'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-19:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e813'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-20:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e814'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-21:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e815'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-22:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e816'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-23:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e817'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-24:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e818'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-25:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e819'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-26:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e81a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-27:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e81b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-28:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e81c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-29:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e81d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-30:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e81e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-31:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e81f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-32:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e820'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-33:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e821'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-34:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e822'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-35:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e823'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-36:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e824'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-37:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e825'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-38:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e826'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-39:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e827'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-40:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e828'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-41:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e829'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-42:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e82a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-43:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e82b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-44:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e82c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-45:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e82d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-46:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e82e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-47:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e82f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-48:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e830'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-49:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e831'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-50:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e832'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-51:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e833'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-52:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e834'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-53:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e835'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-54:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e836'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-55:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e837'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-56:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e838'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-57:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e839'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-58:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e83a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-59:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e83b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-60:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e83c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-61:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e83d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-62:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e83e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-63:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e83f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-64:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e840'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-65:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e841'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-66:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e842'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-67:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e843'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-68:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e844'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-69:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e845'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-70:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e846'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-71:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e847'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-72:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e848'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-73:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e849'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-74:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e84a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-75:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e84b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-76:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e84c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-77:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e84d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-78:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e84e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-79:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e84f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-80:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e850'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-81:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e851'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-82:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e852'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-83:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e853'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-84:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e854'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-85:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e855'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-86:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e856'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-87:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e857'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-88:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e858'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-89:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e859'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-90:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e85a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-91:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e85b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-92:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e85c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-93:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e85d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-94:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e85e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-95:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e85f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-96:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e860'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-97:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e861'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-98:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e862'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-99:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e863'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-100:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e864'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-101:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e865'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-102:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e866'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-103:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e867'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-104:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e868'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-105:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e869'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-106:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e86a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-107:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e86b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-108:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e86c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-109:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e86d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-110:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e86e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-111:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e86f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-112:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e870'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-113:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e871'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-114:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e872'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-115:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e873'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-116:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e874'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-117:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e875'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-118:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e876'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-119:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e877'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-120:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e878'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-121:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e879'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-122:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e87a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-123:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e87b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-124:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e87c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-125:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e87d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-126:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e87e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-127:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e87f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-128:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e880'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-129:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e881'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-130:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e882'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-131:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e883'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-132:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e884'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-133:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e885'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-134:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e886'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-135:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e887'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-136:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e888'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-137:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e889'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-138:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e88a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-139:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e88b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-140:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e88c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-141:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e88d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-142:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e88e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-143:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e88f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-144:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e890'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-145:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e891'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-146:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e892'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-147:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e893'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-148:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e894'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-149:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e895'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-150:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e896'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-151:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e897'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-152:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e898'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-153:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e899'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-154:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e89a'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-155:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e89b'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-156:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e89c'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-157:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e89d'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-158:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e89e'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-159:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e89f'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-160:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a0'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-161:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a1'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-162:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a2'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-163:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a3'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-164:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a4'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-165:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a5'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-166:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a6'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-167:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a7'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-168:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a8'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-169:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8a9'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-170:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8aa'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-171:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8ab'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-172:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8ac'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-173:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8ad'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-174:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8ae'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-175:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8af'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-176:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b0'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-177:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b1'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-178:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b2'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-179:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b3'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-180:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b4'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-181:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b5'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-182:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b6'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-183:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b7'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-184:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b8'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-185:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8b9'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-186:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8ba'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-187:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8bb'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-188:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8bc'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-189:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8bd'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-190:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8be'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-191:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8bf'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-192:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c0'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-193:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c1'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-194:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c2'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-195:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c3'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-196:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c4'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-197:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c5'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-198:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c6'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-199:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c7'
                        }

                        .iyc-family-icon-jurisdiction-typology-nodes.iyc-icon-200:before {
                            font-family: 'jurisdiction-typology-nodes';
                            content: '\e8c8'
                        }

                        @font-face {
                            font-family: "jurisdiction-elements";
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac28405b764916813.eot"),
                                url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac28405b764916813.eot#iefix") format("embedded-opentype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac2a7d9e337726625.svg") format("svg");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac2bd29c627146825.ttf") format("truetype");
                            src: url("https://s3-eu-west-1.amazonaws.com/static.dev.open010.org/local/iconset/67ebaac2cd042819305941.woff") format("woff");
                            font-weight: normal;
                            font-style: normal;
                        }

                        .iyc-family-icon-jurisdiction-elements.iyc-icon-0:before {
                            font-family: 'jurisdiction-elements';
                            content: '\e800'
                        }

                        .iyc-family-icon-jurisdiction-elements.iyc-icon-1:before {
                            font-family: 'jurisdiction-elements';
                            content: '\e801'
                        }

                        [class*="iyc-icon-"]:before {
                            font-size: 30px;
                            line-height: 30px;
                            max-width: 30px;
                            font-style: normal;
                            color: #545454;
                            cursor: pointer;
                        }

                        .iyc-preview-icon[class*="iyc-icon-"] {
                            padding: 10px;
                            height: 30px;
                            display: inline-block;
                        }
                    </style>
                        <link rel="stylesheet" href="//mtc.vdeveloper.lan/build/752.5659e452.css?1.0.10v">
                        <script src="//mtc.vdeveloper.lan/build/runtime.8e3225aa.js?1.0.10v" defer></script>
                        <script src="//mtc.vdeveloper.lan/build/271.126bd037.js?1.0.10v" defer></script>
                        <script src="//mtc.vdeveloper.lan/build/960.ec50dc8a.js?1.0.10v" defer></script>
                        <script src="//mtc.vdeveloper.lan/build/app.862e5477.js?1.0.10v" defer></script>
                    </head>
                    <body>
                        <div id="modal-holder"></div>
                        <div
                        style="font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f0f0f0;">
                            <div style="display: flex; gap: 20px;">
                                <a href="/public-api/collection">
                                    <div
                                    style="width: 200px; height: 200px; background-color: white; border: 1px solid #ddd; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer;">
                                        <img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHBhdGggZD0iTTU3LjE2NyAyMS4yYy0yLjItNS45MzMtNS45LTEwLjQ2Ny0xMS4xNjctMTMuNkM0MC43MzMgNC40NjcgMzQuOCAzLjIgMjguODY3IDMuMmMtNS45MzMgMC0xMS44NjcgMS4yNjctMTcuMTMzIDQuNC01LjI2NyAzLjEzMy05IDcuNjY3LTExLjIgMTMuNi0yLjIgNS45MzMtMi4yIDEyLjQgMCAxOC4zMzMgMi4yIDUuOTMzIDUuOTMzIDEwLjQ2NyAxMS4yIDEzLjYgNS4yNjcgMy4xMzMgMTEuMiA0LjQgMTcuMTMzIDQuNCA1LjkzMyAwIDExLjg2Ny0xLjI2NyAxNy4xMzMtNC40IDUuMjY3LTMuMTMzIDktNy42NjcgMTEuMi0xMy42IDIuMi01LjkzMyAyLjItMTIuNCAwLTE4LjMzM3oiIGZpbGw9IiNmZjZjMzciLz48cGF0aCBkPSJNMzkuNDY3IDMwLjRjMC0yLjItMS44MzMtNC00LTRzLTQgMS44LTQgNGMwIDIuMiAxLjgzMyA0IDQgNHM0LTEuOCA0LTR6bS0xMC42NjcgMGMwLTIuMi0xLjgzMy00LTQtNHMtNCAxLjgtNCA0YzAgMi4yIDEuODMzIDQgNCA0czQtMS44IDQtNHptLTEwLjY2NyAwYzAtMi4yLTEuODMzLTQtNC00cy00IDEuOC00IDRjMCAyLjIgMS44MzMgNCA0IDRzNC0xLjggNC00eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==" alt="Postman Icon" style="width: 66px; height: 64px; margin-bottom: 10px;">
                                        <span>Colección de Postman</span>
                                    </div>
                                </a>
                                <a href="/public-api/openapi">
                                    <div
                                    style="width: 200px; height: 200px; background-color: white; border: 1px solid #ddd; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer;">
                                        <img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHBhdGggZD0iTTU4LjY2NyAzMkM1OC42NjcgNDYuNzI3IDQ2LjcyNyA1OC42NjcgMzIgNTguNjY3QzE3LjI3MyA1OC42NjcgNS4zMzMgNDYuNzI3IDUuMzMzIDMyQzUuMzMzIDE3LjI3MyAxNy4yNzMgNS4zMzMgMzIgNS4zMzNDNDYuNzI3IDUuMzMzIDU4LjY2NyAxNy4yNzMgNTguNjY3IDMyWiIgZmlsbD0iIzNiODJmNiIvPjxwYXRoIGQ9Ik0zMiAxNS4yYy05LjYgMC0xNy4zMzMgNy43MzMtMTcuMzMzIDE3LjMzM1MzMi4yNjcgNDkuODY3IDMyIDQ5Ljg2N1M0OS4zMzMgNDIuMTMzIDQ5LjMzMyAzMi41MzNDNDkuMzMzIDIyLjkzMyA0MS42IDE1LjIgMzIgMTUuMnptMCAyNS42Yy00LjUzMyAwLTguMjY3LTMuNzMzLTguMjY3LTguMjY3UzI3LjQ2NyAyNC4yNjcgMzIgMjQuMjY3czguMjY3IDMuNzMzIDguMjY3IDguMjY3UzM2LjUzMyA0MC44IDMyIDQwLjh6IiBmaWxsPSIjZmZmIi8+PC9zdmc+" alt="OpenAPI Icon" style="width: 64px; height: 64px; margin-bottom: 10px;">
                                        <span>Definición de OpenAPI</span>
                                    </div>
                                </a>
                            </div>
                        </div>
                    </div>
                    <div id="sfwdt50e9d8" class="sf-toolbar sf-display-none" role="region" aria-label="Symfony Web Debug Toolbar">
                        <!-- START of Symfony Web Debug Toolbar -->
                        <div id="sfMiniToolbar-50e9d8" class="sf-minitoolbar" data-no-turbolink data-turbo="false">
                            <button type="button" title="Show Symfony toolbar" id="sfToolbarMiniToggler-50e9d8" accesskey="D" aria-expanded="false" aria-controls="sfToolbarMainContent-50e9d8">
                                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
                                    <path fill="currentColor" d="M12 .9C5.8.9.9 5.8.9 12a11 11 0 1 0 22.2 0A11 11 0 0 0 12 .9zm6.5 6c-.6 0-.9-.3-.9-.8 0-.2 0-.4.2-.6l.2-.4c0-.3-.5-.4-.6-.4-1.8.1-2.3 2.5-2.7 4.4l-.2 1c1 .2 1.8 0 2.2-.3.6-.4-.2-.7-.1-1.2.1-.3.5-.5.7-.6.5 0 .7.5.7.9 0 .7-1 1.8-3 1.8l-.6-.1-.6 2.4c-.4 1.6-.8 3.8-2.4 5.7-1.4 1.7-2.9 1.9-3.5 1.9-1.2 0-1.9-.6-2-1.5 0-.8.7-1.3 1.2-1.3.6 0 1.1.5 1.1 1s-.2.6-.4.6c-.1.1-.3.2-.3.4 0 .1.1.3.4.3.5 0 .8-.3 1.1-.5 1.2-.9 1.6-2.7 2.2-5.7l.1-.7.7-3.2c-.8-.6-1.3-1.4-2.4-1.7-.6-.1-1.1.1-1.5.5-.4.5-.2 1.1.2 1.5l.7.6c.7.8 1.2 1.6 1 2.5-.3 1.5-2 2.6-4 1.9-1.8-.6-2-1.8-1.8-2.5.2-.6.6-.7 1.1-.6.5.2.6.7.6 1.2l-.1.3c-.2.1-.3.3-.3.4-.1.4.4.6.7.7.7.3 1.6-.2 1.8-.8a1 1 0 0 0-.4-1.1l-.7-.8c-.4-.4-1.1-1.4-.7-2.6.1-.5.4-.9.7-1.3a4 4 0 0 1 2.8-.6c1.2.4 1.8 1.1 2.6 1.8.5-1.2 1-2.4 1.8-3.5.9-.9 1.9-1.6 3.1-1.7 1.3.2 2.2.7 2.2 1.6 0 .4-.2 1.1-.9 1.1z"/>
                                </svg>
                            </button>
                        </div>
                        <div id="sfToolbarClearer-50e9d8" class="sf-toolbar-clearer"></div>
                        <div id="sfToolbarMainContent-50e9d8" class="sf-toolbarreset notranslate clear-fix" data-no-turbolink
                            data-turbo="false">
                            <div class="sf-toolbar-block sf-toolbar-block-request sf-toolbar-status-normal ">
                                <a
                                    href="http://mtc.vdeveloper.lan/_profiler/50e9d8?panel=request">
                                    <div class="sf-toolbar-icon">
                                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
                                            viewBox="0 0 24 24">
                                            <path fill="currentColor"
                                                d="M12 .9C5.8.9.9 5.8.9 12a11 11 0 1 0 22.2 0A11 11 0 0 0 12 .9zm6.5 6c-.6 0-.9-.3-.9-.8 0-.2 0-.4.2-.6l.2-.4c0-.3-.5-.4-.6-.4-1.8.1-2.3 2.5-2.7 4.4l-.2 1c1 .2 1.8 0 2.2-.3.6-.4-.2-.7-.1-1.2.1-.3.5-.5.7-.6.5 0 .7.5.7.9 0 .7-1 1.8-3 1.8l-.6-.1-.6 2.4c-.4 1.6-.8 3.8-2.4 5.7-1.4 1.7-2.9 1.9-3.5 1.9-1.2 0-1.9-.6-2-1.5 0-.8.7-1.3 1.2-1.3.6 0 1.1.5 1.1 1s-.2.6-.4.6c-.1.1-.3.2-.3.4 0 .1.1.3.4.3.5 0 .8-.3 1.1-.5 1.2-.9 1.6-2.7 2.2-5.7l.1-.7.7-3.2c-.8-.6-1.3-1.4-2.4-1.7-.6-.1-1.1.1-1.5.5-.4.5-.2 1.1.2 1.5l.7.6c.7.8 1.2 1.6 1 2.5-.3 1.5-2 2.6-4 1.9-1.8-.6-2-1.8-1.8-2.5.2-.6.6-.7 1.1-.6.5.2.6.7.6 1.2l-.1.3c-.2.1-.3.3-.3.4-.1.4.4.6.7.7.7.3 1.6-.2 1.8-.8a1 1 0 0 0-.4-1.1l-.7-.8c-.4-.4-1.1-1.4-.7-2.6.1-.5.4-.9.7-1.3a4 4 0 0 1 2.8-.6c1.2.4 1.8 1.1 2.6 1.8.5-1.2 1-2.4 1.8-3.5.9-.9 1.9-1.6 3.1-1.7 1.3.2 2.2.7 2.2 1.6 0 .4-.2 1.1-.9 1.1z" />
                                        </svg>
                                        <span class="sf-toolbar-value sf-toolbar-ajax-request-counter">            Loading&hellip;        </span>
                                    </div>
                                </a>
                                <div class="sf-toolbar-info">
                                    <div class="sf-toolbar-info-piece">
                                        <b>Loading the web debug toolbar&hellip;</b>
                                    </div>
                                    <div class="sf-toolbar-info-piece"> Attempt #
                                        <span id="sfLoadCounter-50e9d8"></span>
                                    </div>
                                    <div class="sf-toolbar-info-piece">
                                        <b>
                                            <button class="sf-cancel-button" type="button" id="sfLoadCancel-50e9d8" title="Cancel loading">Cancel</button>
                                        </b>
                                    </div>
                                </div>
                            </div>
                            <button class="hide-button" type="button" id="sfToolbarHideButton-50e9d8" title="Close Toolbar" accesskey="D" aria-expanded="true" aria-controls="sfToolbarMainContent-50e9d8">
                                <svg xmlns="http://www.w3.org/2000/svg" data-icon-name="icon-tabler-x" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
                                    <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
                                    <line x1="18" y1="6" x2="6" y2="18"></line>
                                    <line x1="6" y1="6" x2="18" y2="18"></line>
                                </svg>
                            </button>
                        </div>
                        <!-- END of Symfony Web Debug Toolbar -->
                    
                    </div>
                    <style nonce="82a47e6df1c613d62ba5b41a1eb22a8e">
                        .sf-toolbarreset {
                            --sf-toolbar-font-family-system: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
                            --sf-toolbar-font-family-monospace: "Ubuntu Mono", "JetBrains Mono", ui-monospace, "Roboto Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
                            --sf-toolbar-white: #fff;
                            --sf-toolbar-black: #000;
                            --sf-toolbar-gray-50: #fafafa;
                            --sf-toolbar-gray-100: #f5f5f5;
                            --sf-toolbar-gray-200: #e5e5e5;
                            --sf-toolbar-gray-300: #d4d4d4;
                            --sf-toolbar-gray-400: #a3a3a3;
                            --sf-toolbar-gray-500: #737373;
                            --sf-toolbar-gray-600: #525252;
                            --sf-toolbar-gray-700: #404040;
                            --sf-toolbar-gray-800: #262626;
                            --sf-toolbar-gray-900: #171717;
                            --sf-toolbar-red-50: #FEFBFC;
                            --sf-toolbar-red-100: #FCE9ED;
                            --sf-toolbar-red-200: #F5B8C5;
                            --sf-toolbar-red-300: #EF869C;
                            --sf-toolbar-red-400: #E85574;
                            --sf-toolbar-red-500: #E1244B;
                            --sf-toolbar-red-600: #B41939;
                            --sf-toolbar-red-700: #83122A;
                            --sf-toolbar-red-800: #510B1A;
                            --sf-toolbar-red-900: #20040A;
                            --sf-toolbar-yellow-50: #fef7e1;
                            --sf-toolbar-yellow-100: #fef2cd;
                            --sf-toolbar-yellow-200: #fde496;
                            --sf-toolbar-yellow-300: #fcd55f;
                            --sf-toolbar-yellow-400: #fbc728;
                            --sf-toolbar-yellow-500: #e6af05;
                            --sf-toolbar-yellow-600: #af8503;
                            --sf-toolbar-yellow-700: #785b02;
                            --sf-toolbar-yellow-800: #413101;
                            --sf-toolbar-yellow-900: #0a0800;
                            --sf-toolbar-green-50: #eff5f5;
                            --sf-toolbar-green-100: #deeaea;
                            --sf-toolbar-green-200: #bbd5d5;
                            --sf-toolbar-green-300: #99bfbf;
                            --sf-toolbar-green-400: #76a9a9;
                            --sf-toolbar-green-500: #598e8e;
                            --sf-toolbar-green-600: #436c6c;
                            --sf-toolbar-green-700: #2e4949;
                            --sf-toolbar-green-800: #182727;
                            --sf-toolbar-green-900: #030404;
                        }

                        .sf-minitoolbar {
                            --sf-toolbar-gray-800: #262626;
                            background-color: var(--sf-toolbar-gray-800);
                            border-top-left-radius: 4px;
                            bottom: 0;
                            box-sizing: border-box;
                            display: none;
                            height: 36px;
                            padding: 6px;
                            position: fixed;
                            right: 0;
                            z-index: 99999;
                        }

                        .sf-minitoolbar button {
                            background-color: transparent;
                            padding: 0;
                            border: none;
                        }

                        .sf-minitoolbar svg,
                        .sf-minitoolbar img {
                            --sf-toolbar-gray-200: #e5e5e5;
                            color: var(--sf-toolbar-gray-200);
                            max-height: 24px;
                            max-width: 24px;
                            display: inline;
                        }

                        .sf-toolbar-clearer {
                            clear: both;
                            height: 36px;
                        }

                        .sf-display-none {
                            display: none;
                        }

                        .sf-toolbarreset *:not(svg rect) {
                            box-sizing: content-box;
                            vertical-align: baseline;
                            letter-spacing: normal;
                            width: auto;
                        }

                        .sf-toolbarreset {
                            background-color: var(--sf-toolbar-gray-800);
                            bottom: 0;
                            box-shadow: inset 0 1px 0 var(--sf-toolbar-black), 0 -1px 0 rgba(0, 0, 0, 0.5);
                            color: var(--sf-toolbar-gray-200);
                            font: 11px var(--sf-toolbar-font-family-system);
                            left: 0;
                            margin: 0;
                            padding: 0 36px 0 0;
                            position: fixed;
                            right: 0;
                            text-align: left;
                            text-transform: none;
                            z-index: 99999;
                            direction: ltr;
                            /* neutralize the aliasing defined by external CSS styles */
                            -webkit-font-smoothing: subpixel-antialiased;
                            -moz-osx-font-smoothing: auto;
                        }

                        .sf-toolbarreset abbr {
                            border: dashed var(--sf-toolbar-gray-500);
                            border-width: 0 0 1px;
                        }

                        .sf-toolbarreset svg,
                        .sf-toolbarreset img {
                            height: 20px;
                            width: 20px;
                            display: inline-block;
                        }

                        .sf-toolbarreset .sf-cancel-button {
                            color: var(--sf-toolbar-gray-700);
                        }

                        .sf-toolbarreset .hide-button {
                            background: var(--sf-toolbar-gray-800);
                            color: var(--sf-toolbar-gray-300);
                            display: block;
                            position: absolute;
                            top: 2px;
                            right: 0;
                            width: 36px;
                            height: 34px;
                            cursor: pointer;
                            text-align: center;
                            border: none;
                            margin: 0;
                            padding: 0;
                        }

                        .sf-toolbarreset .hide-button:hover {
                            background: var(--sf-toolbar-gray-700);
                        }

                        .sf-toolbarreset .hide-button svg {
                            max-height: 18px;
                            margin-top: 1px;
                        }

                        .sf-toolbar-block {
                            cursor: default;
                            display: block;
                            float: left;
                            height: 36px;
                            margin-right: 0;
                            position: relative;
                            white-space: nowrap;
                            max-width: 15%;
                        }

                        .sf-toolbar-block>a,
                        .sf-toolbar-block>a:hover {
                            display: block;
                            text-decoration: none;
                            background-color: transparent;
                            color: inherit;
                        }

                        .sf-toolbar-block span {
                            display: inline-block;
                        }

                        .sf-toolbar-block .sf-toolbar-value {
                            color: var(--sf-toolbar-gray-100);
                            font-size: 13px;
                            line-height: 36px;
                            padding: 0;
                        }

                        .sf-toolbar-block .sf-toolbar-label,
                        .sf-toolbar-block .sf-toolbar-class-separator {
                            color: var(--sf-toolbar-gray-400);
                            font-size: 12px;
                            margin-left: 2px;
                        }

                        .sf-toolbar-block .sf-toolbar-info {
                            border-collapse: collapse;
                            display: table;
                            z-index: 100000;
                        }

                        .sf-toolbar-block hr {
                            border-top: 1px solid var(--sf-toolbar-gray-500);
                            margin: 4px 0;
                            padding-top: 4px;
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece {
                            /* this 'border-bottom' trick is needed because 'margin-bottom' doesn't work for table rows */
                            border-bottom: solid transparent 3px;
                            display: table-row;
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece-additional,
                        .sf-toolbar-block .sf-toolbar-info-piece-additional-detail {
                            display: none;
                        }

                        .sf-toolbar-block .sf-toolbar-info-group {
                            margin-bottom: 4px;
                            padding-bottom: 2px;
                            border-bottom: 1px solid #333333;
                        }

                        .sf-toolbar-block .sf-toolbar-info-group:last-child {
                            margin-bottom: 0;
                            padding-bottom: 0;
                            border-bottom: none;
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece .sf-toolbar-status {
                            border-radius: 4px;
                            padding: 2px 5px;
                            margin-bottom: 0;
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece .sf-toolbar-status+.sf-toolbar-status {
                            margin-left: 4px;
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece:last-child {
                            margin-bottom: 0;
                        }

                        div.sf-toolbar .sf-toolbar-block .sf-toolbar-info-piece a {
                            color: #99CDD8;
                            text-decoration: underline;
                        }

                        div.sf-toolbar .sf-toolbar-block a:hover {
                            text-decoration: none;
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece b {
                            color: var(--sf-toolbar-gray-400);
                            display: table-cell;
                            font-size: 11px;
                            padding: 4px 8px 4px 0;
                        }

                        .sf-toolbar-block:not(.sf-toolbar-block-dump) .sf-toolbar-info-piece span {
                            color: var(--sf-toolbar-gray-100);
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece span {
                            font-size: 12px;
                        }

                        div.sf-toolbar .sf-toolbar-block .sf-toolbar-info-piece.sf-toolbar-info-php-ext a {
                            text-decoration: none;
                        }

                        .sf-toolbar-block .sf-toolbar-info {
                            background-color: var(--sf-toolbar-gray-700);
                            border-radius: 4px;
                            border-bottom-left-radius: 0;
                            bottom: 36px;
                            color: var(--sf-toolbar-gray-100);
                            display: none;
                            padding: 9px 0;
                            position: absolute;
                        }

                        .sf-toolbar-block.sf-toolbar-block-right .sf-toolbar-info {
                            border-bottom-left-radius: 4px;
                            border-bottom-right-radius: 0;
                        }

                        .sf-toolbar-block .sf-toolbar-info:empty {
                            visibility: hidden;
                        }

                        .sf-toolbar-block .sf-toolbar-status {
                            display: inline-block;
                            color: var(--sf-toolbar-white);
                            background-color: var(--sf-toolbar-gray-600);
                            padding: 3px 6px;
                            margin: 0 4px;
                            min-width: 15px;
                            min-height: 13px;
                            text-align: center;
                        }

                        .sf-toolbar-block .sf-toolbar-status.sf-toolbar-status-green,
                        .sf-toolbar-block .sf-toolbar-info .sf-toolbar-status.sf-toolbar-status-green {
                            background-color: #059669;
                            color: var(--white);
                        }

                        .sf-toolbar-block .sf-toolbar-status.sf-toolbar-status-red,
                        .sf-toolbar-block .sf-toolbar-info .sf-toolbar-status.sf-toolbar-status-red {
                            background-color: var(--sf-toolbar-red-500);
                            color: var(--sf-toolbar-red-50);
                        }

                        .sf-toolbar-block .sf-toolbar-status.sf-toolbar-status-yellow,
                        .sf-toolbar-block .sf-toolbar-info .sf-toolbar-status.sf-toolbar-status-yellow {
                            background-color: var(--sf-toolbar-yellow-300);
                            color: var(--sf-toolbar-yellow-800);
                        }

                        .sf-toolbar-block.sf-toolbar-status-green::before,
                        .sf-toolbar-block.sf-toolbar-status-red::before,
                        .sf-toolbar-block.sf-toolbar-status-yellow::before {
                            background: var(--sf-toolbar-yellow-400);
                            border-radius: 6px;
                            content: '';
                            position: absolute;
                            bottom: 1px;
                            left: 0;
                            width: 98%;
                            height: 3px;
                            z-index: 10005;
                        }

                        .sf-toolbar-block.sf-toolbar-status-red::before {
                            background: var(--sf-toolbar-red-400);
                        }

                        .sf-toolbar-block.sf-toolbar-status-green::before {
                            background: var(--sf-toolbar-green-400);
                        }

                        .sf-toolbar-block-request.sf-toolbar-block.sf-toolbar-status-green::before,
                        .sf-toolbar-block-request.sf-toolbar-block.sf-toolbar-status-red::before,
                        .sf-toolbar-block-request.sf-toolbar-block.sf-toolbar-status-yellow::before {
                            display: none;
                        }

                        .sf-toolbar-block-request .sf-toolbar-status {
                            border-radius: 6px;
                            color: #fff;
                            display: inline-block;
                            flex-shrink: 0;
                            font-size: 13px;
                            font-weight: 500;
                            padding: 4px 8px;
                        }

                        .sf-toolbar-block-request .sf-toolbar-info-piece a {
                            background-color: transparent;
                            text-decoration: none;
                        }

                        .sf-toolbar-block-request .sf-toolbar-info-piece a:hover {
                            text-decoration: underline;
                        }

                        .sf-toolbar-block-request .sf-toolbar-redirection-status {
                            font-weight: normal;
                            padding: 2px 4px;
                            line-height: 18px;
                        }

                        .sf-toolbar-block.sf-toolbar-block-request .sf-toolbar-redirection-status.sf-toolbar-status-yellow {
                            background-color: var(--sf-toolbar-yellow-300);
                            border-radius: 4px;
                            color: var(--sf-toolbar-yellow-800);
                            padding: 1px 4px;
                        }

                        .sf-toolbar-block.sf-toolbar-block-request .sf-toolbar-info-piece .sf-toolbar-redirection-method {
                            background: transparent;
                            color: var(--sf-toolbar-gray-300);
                            border: 1px solid var(--sf-toolbar-gray-400);
                            padding: 1px 4px;
                        }

                        .sf-toolbar-block-request .sf-toolbar-info-piece span.sf-toolbar-redirection-method {
                            font-size: 12px;
                            height: 17px;
                            line-height: 17px;
                            margin-right: 5px;
                        }

                        .sf-toolbar-block-request .sf-toolbar-request-icon svg {
                            stroke-width: 3px;
                        }

                        .sf-toolbar-block-ajax .sf-toolbar-icon {
                            cursor: pointer;
                        }

                        .sf-toolbar-status-green .sf-toolbar-label,
                        .sf-toolbar-status-yellow .sf-toolbar-label,
                        .sf-toolbar-status-red .sf-toolbar-label {
                            color: var(--sf-toolbar-white);
                        }

                        .sf-toolbar-block-config svg path,
                        .sf-toolbar-block-config svg .sf-svg-path {
                            fill: var(--sf-toolbar-white);
                        }

                        .sf-toolbar-block .sf-toolbar-icon {
                            color: var(--sf-toolbar-gray-300);
                            align-items: center;
                            display: flex;
                            height: 36px;
                            padding: 0 7px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        .sf-toolbar-block:hover .sf-toolbar-icon {
                            border-bottom-left-radius: 4px;
                            border-bottom-right-radius: 4px;
                            box-shadow: 1px 0 0 var(--sf-toolbar-black), inset 0 -1px 0 var(--sf-toolbar-black);
                        }

                        .sf-toolbar-block.sf-toolbar-block-right:hover .sf-toolbar-icon {
                            box-shadow: -1px 0 0 var(--sf-toolbar-black), inset 0 -1px 0 var(--sf-toolbar-black);
                        }

                        .sf-toolbar-block-request .sf-toolbar-icon {
                            padding-left: 0;
                            padding-right: 0;
                        }

                        .sf-toolbar-block .sf-toolbar-icon img,
                        .sf-toolbar-block .sf-toolbar-icon svg {
                            border-width: 0;
                        }

                        .sf-toolbar-block .sf-toolbar-icon img+span,
                        .sf-toolbar-block .sf-toolbar-icon svg+span {
                            margin-left: 4px;
                        }

                        .sf-toolbar-block-config .sf-toolbar-icon .sf-toolbar-value,
                        .sf-toolbar-block.sf-toolbar-block-sf-cli .sf-toolbar-value {
                            margin-left: 5px;
                        }

                        .sf-toolbar-block-config .sf-toolbar-icon .sf-toolbar-label,
                        .sf-toolbar-block.sf-toolbar-block-sf-cli .sf-toolbar-label {
                            margin-left: 0;
                        }

                        .sf-toolbar-block:hover,
                        .sf-toolbar-block.hover {
                            position: relative;
                        }

                        .sf-toolbar-block:hover .sf-toolbar-icon,
                        .sf-toolbar-block.hover .sf-toolbar-icon {
                            background-color: var(--sf-toolbar-gray-700);
                            position: relative;
                            z-index: 10002;
                        }

                        .sf-toolbar-block-ajax.hover .sf-toolbar-info {
                            z-index: 10001;
                        }

                        .sf-toolbar-block:hover .sf-toolbar-info,
                        .sf-toolbar-block.hover .sf-toolbar-info {
                            display: block;
                            padding: 10px;
                            max-width: 525px;
                            max-height: 480px;
                            word-wrap: break-word;
                            overflow: hidden;
                            overflow-y: auto;
                        }

                        .sf-toolbar-info-piece b.sf-toolbar-ajax-info {
                            color: var(--sf-toolbar-gray-100);
                        }

                        .sf-toolbar-ajax-requests {
                            border: 1px solid var(--sf-toolbar-gray-500);
                            font-variant: tabular-nums;
                            margin: 5px 0 0;
                            width: 100%;
                        }

                        .sf-toolbar-ajax-requests td {
                            background-color: var(--sf-toolbar-gray-700);
                            border: 1px solid var(--sf-toolbar-gray-500);
                            color: var(--sf-toolbar-gray-100);
                            font-size: 12px;
                            padding: 4px;
                            vertical-align: middle;
                        }

                        .sf-toolbar-ajax-requests thead {
                            border: 0;
                        }

                        .sf-toolbar-ajax-requests th {
                            background-color: var(--sf-toolbar-gray-800);
                            border: 1px solid var(--sf-toolbar-gray-500);
                            color: var(--sf-toolbar-gray-200);
                            font-size: 11px;
                            padding: 4px;
                        }

                        .sf-ajax-request-url {
                            max-width: 250px;
                            line-height: 9px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        .sf-toolbar-ajax-requests .sf-ajax-request-url a {
                            text-decoration: none;
                        }

                        .sf-toolbar-ajax-requests .sf-ajax-request-url a:hover {
                            text-decoration: underline;
                        }

                        .sf-ajax-request-duration {
                            text-align: right;
                        }

                        .sf-toolbar-block .sf-toolbar-info-piece .sf-toolbar-ajax-requests .sf-toolbar-status {
                            font-size: 11px;
                            padding: 1px 3px;
                        }

                        .sf-ajax-request-loading {
                            animation: sf-blink .5s ease-in-out infinite;
                        }

                        @keyframes sf-blink {
                            0% {
                                background: var(--sf-toolbar-gray-800);
                            }

                            50% {
                                background: var(--sf-toolbar-gray-700);
                            }

                            100% {
                                background: var(--sf-toolbar-gray-800);
                            }
                        }

                        .sf-toolbar-block.sf-toolbar-block-dump .sf-toolbar-info {
                            max-width: none;
                            width: 100%;
                            position: fixed;
                            box-sizing: border-box;
                            left: 0;
                        }

                        .sf-toolbar-block-dump pre.sf-dump {
                            background-color: var(--sf-toolbar-gray-800);
                            border-color: var(--sf-toolbar-gray-500);
                            border-radius: 0;
                            margin: 6px 0 12px 0;
                        }

                        .sf-toolbar-block-dump pre.sf-dump:last-child {
                            margin-bottom: 0;
                        }

                        .sf-toolbar-block-dump pre.sf-dump .sf-dump-search-wrapper {
                            margin-bottom: 5px;
                        }

                        .sf-toolbar-block-dump pre.sf-dump span.sf-dump-search-count {
                            color: #333;
                            font-size: 12px;
                        }

                        .sf-toolbar-block-dump .sf-toolbar-info-piece {
                            display: block;
                        }

                        .sf-toolbar-block-dump .sf-toolbar-info-piece .sf-toolbar-file-line {
                            color: var(--sf-toolbar-gray-400);
                            margin-left: 4px;
                        }

                        .sf-toolbar-block-dump .sf-toolbar-info img {
                            display: none;
                        }

                        .sf-toolbar-block-serializer .detailed-metrics {
                            display: grid;
                            grid-template-columns: repeat(3, 1fr);
                            grid-gap: 15px;
                            margin-top: 15px;
                        }

                        /* Responsive Design */
                        .sf-toolbar-icon .sf-toolbar-label,
                        .sf-toolbar-icon .sf-toolbar-value {
                            display: none;
                        }

                        .sf-toolbar-block-config .sf-toolbar-icon .sf-toolbar-label,
                        .sf-cli .sf-toolbar-icon .sf-toolbar-label {
                            display: inline-block;
                        }

                        /* Legacy Design - these styles are maintained to make old panels look   a bit better on the new toolbar */
                        .sf-toolbar-block .sf-toolbar-info-piece-additional-detail {
                            color: var(--sf-toolbar-gray-400);
                            font-size: 12px;
                        }

                        .sf-toolbar-status-green .sf-toolbar-info-piece-additional-detail,
                        .sf-toolbar-status-yellow .sf-toolbar-info-piece-additional-detail,
                        .sf-toolbar-status-red .sf-toolbar-info-piece-additional-detail {
                            color: var(--sf-toolbar-white);
                        }

                        @media (min-width: 768px) {

                            .sf-toolbar-icon .sf-toolbar-label,
                            .sf-toolbar-icon .sf-toolbar-value {
                                display: inline;
                            }

                            .sf-toolbar-block-time .sf-toolbar-icon svg,
                            .sf-toolbar-block-memory .sf-toolbar-icon svg {
                                display: none;
                            }

                            .sf-toolbar-block-time .sf-toolbar-icon svg+span,
                            .sf-toolbar-block-memory .sf-toolbar-icon svg+span {
                                margin-left: 0;
                            }

                            .sf-toolbar-block .sf-toolbar-icon {
                                padding: 0 10px;
                            }

                            .sf-toolbar-block-time .sf-toolbar-icon {
                                padding-right: 5px;
                            }

                            .sf-toolbar-block-memory .sf-toolbar-icon {
                                padding-left: 5px;
                            }

                            .sf-toolbar-block-request .sf-toolbar-icon {
                                display: flex;
                                align-items: center;
                                padding-left: 0;
                                padding-right: 0;
                            }

                            .sf-toolbar-block-request .sf-toolbar-label {
                                margin-left: 4px;
                                margin-right: 1px;
                            }

                            .sf-toolbar-block-request .sf-toolbar-status+.sf-toolbar-request-icon {
                                display: inline-flex;
                                margin-left: 5px;
                            }

                            .sf-toolbar-block-request .sf-toolbar-icon .sf-toolbar-request-icon+.sf-toolbar-label {
                                margin-left: 0;
                            }

                            .sf-toolbar-block-request .sf-toolbar-label+.sf-toolbar-value {
                                margin-right: 5px;
                            }

                            .sf-toolbar-block-request:hover .sf-toolbar-info {
                                max-width: none;
                            }

                            .sf-toolbar-block .sf-toolbar-info-piece b {
                                font-size: 12px;
                            }

                            .sf-toolbar-block .sf-toolbar-info-piece span {
                                font-size: 13px;
                            }

                            .sf-toolbar-block-right {
                                float: right;
                                margin-left: 0;
                                margin-right: 0;
                            }

                            .sf-toolbarreset .sf-toolbar-block.sf-toolbar-block-right:not(.sf-toolbar-block-sf-cli) .sf-toolbar-info {
                                border-bottom-left-radius: 4px;
                                border-bottom-right-radius: 0;
                            }
                        }

                        @media (min-width: 1024px) {

                            .sf-toolbar-block .sf-toolbar-info-piece-additional,
                            .sf-toolbar-block .sf-toolbar-info-piece-additional-detail {
                                display: inline;
                            }

                            .sf-toolbar-block .sf-toolbar-info-piece-additional:empty,
                            .sf-toolbar-block .sf-toolbar-info-piece-additional-detail:empty {
                                display: none;
                            }
                        }

                        /***** Error Toolbar *****/
                        .sf-error-toolbar .sf-toolbarreset {
                            background: var(--sf-toolbar-gray-800);
                            color: var(--sf-toolbar-gray-100);
                            font: 13px/36px var(--sf-toolbar-font-family-system);
                            height: 36px;
                            padding: 0 15px;
                            text-align: left;
                        }

                        .sf-error-toolbar .sf-toolbarreset svg {
                            height: auto;
                        }

                        .sf-error-toolbar .sf-toolbarreset a {
                            color: #99cdd8;
                            margin-left: 5px;
                            text-decoration: underline;
                        }

                        .sf-error-toolbar .sf-toolbarreset a:hover {
                            text-decoration: none;
                        }

                        .sf-error-toolbar .sf-toolbarreset .sf-toolbar-icon {
                            float: left;
                            padding: 5px 0;
                            margin-right: 10px;
                        }

                        .sf-full-stack {
                            left: 0px;
                            font-size: 12px;
                        }

                        /***** Media query print: Do not print the Toolbar. *****/
                        @media print {
                            .sf-toolbar {
                                display: none !important;
                            }
                        }
                    </style>
                    <script nonce="6e89fef24339ce111cf433cbfcad9a7d">
                        /*
                        <![CDATA[*/    if (typeof Sfjs === 'undefined' || typeof Sfjs.loadToolbar === 'undefined') {        Sfjs = (function() {            "use strict";            if ('classList' in document.documentElement) {                var hasClass = function (el, cssClass) { return el.classList.contains(cssClass); };                var removeClass = function(el, cssClass) { el.classList.remove(cssClass); };                var addClass = function(el, cssClass) { el.classList.add(cssClass); };                var toggleClass = function(el, cssClass) { el.classList.toggle(cssClass); };            } else {                var hasClass = function (el, cssClass) { return el.className.match(new RegExp('\\b' + cssClass + '\\b')); };                var removeClass = function(el, cssClass) { el.className = el.className.replace(new RegExp('\\b' + cssClass + '\\b'), ' '); };                var addClass = function(el, cssClass) { if (!hasClass(el, cssClass)) { el.className += " " + cssClass; } };                var toggleClass = function(el, cssClass) { hasClass(el, cssClass) ? removeClass(el, cssClass) : addClass(el, cssClass); };            }            var noop = function() {};            var profilerStorageKey = 'symfony/profiler/';            var addEventListener;            var el = document.createElement('div');            if (!('addEventListener' in el)) {                addEventListener = function (element, eventName, callback) {                    element.attachEvent('on' + eventName, callback);                };            } else {                addEventListener = function (element, eventName, callback) {                    element.addEventListener(eventName, callback, false);                };            }            var request = function(url, onSuccess, onError, payload, options, tries) {                var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');                options = options || {};                options.retry = options.retry || false;                tries = tries || 1;                /* this delays for 125, 375, 625, 875, and 1000, ... */                var delay = tries < 5 ? (tries - 0.5) * 250 : 1000;                xhr.open(options.method || 'GET', url, true);                xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');                xhr.onreadystatechange = function(state) {                    if (4 !== xhr.readyState) {                        return null;                    }                    if (xhr.status == 404 && options.retry && !options.stop) {                        setTimeout(function() {                            if (options.stop) {                                return;                            }                            request(url, onSuccess, onError, payload, options, tries + 1);                        }, delay);                        return null;                    }                    if (200 === xhr.status) {                        (onSuccess || noop)(xhr);                    } else {                        (onError || noop)(xhr);                    }                };                if (options.onSend) {                    options.onSend(tries);                }                xhr.send(payload || '');            };            var getPreference = function(name) {                if (!window.localStorage) {                    return null;                }                return localStorage.getItem(profilerStorageKey + name);            };            var setPreference = function(name, value) {                if (!window.localStorage) {                    return null;                }                localStorage.setItem(profilerStorageKey + name, value);            };            var requestStack = [];            var extractHeaders = function(xhr, stackElement) {                /* Here we avoid to call xhr.getResponseHeader in order to */                /* prevent polluting the console with CORS security errors */                var allHeaders = xhr.getAllResponseHeaders();                var ret;                if (ret = allHeaders.match(/^x-debug-token:\s+(.*)$/im)) {                    stackElement.profile = ret[1];                }                if (ret = allHeaders.match(/^x-debug-token-link:\s+(.*)$/im)) {                    stackElement.profilerUrl = ret[1];                }                if (ret = allHeaders.match(/^Symfony-Debug-Toolbar-Replace:\s+(.*)$/im)) {                    stackElement.toolbarReplaceFinished = false;                    stackElement.toolbarReplace = '1' === ret[1];                }            };            var successStreak = 4;            var pendingRequests = 0;            var renderAjaxRequests = function() {                var requestCounter = document.querySelector('.sf-toolbar-ajax-request-counter');                if (!requestCounter) {                    return;                }                requestCounter.textContent = requestStack.length;                var infoSpan = document.querySelector(".sf-toolbar-ajax-info");                if (infoSpan) {                    infoSpan.textContent = requestStack.length + ' AJAX request' + (requestStack.length !== 1 ? 's' : '');                }                var ajaxToolbarPanel = document.querySelector('.sf-toolbar-block-ajax');                if (requestStack.length) {                    ajaxToolbarPanel.style.display = 'block';                } else {                    ajaxToolbarPanel.style.display = 'none';                }                if (pendingRequests > 0) {                    addClass(ajaxToolbarPanel, 'sf-ajax-request-loading');                } else if (successStreak < 4) {                    addClass(ajaxToolbarPanel, 'sf-toolbar-status-red');                    removeClass(ajaxToolbarPanel, 'sf-ajax-request-loading');                } else {                    removeClass(ajaxToolbarPanel, 'sf-ajax-request-loading');                    removeClass(ajaxToolbarPanel, 'sf-toolbar-status-red');                }            };            var startAjaxRequest = function(index) {                var tbody = document.querySelector('.sf-toolbar-ajax-request-list');                if (!tbody) {                    return;                }                var nbOfAjaxRequest = tbody.rows.length;                if (nbOfAjaxRequest >= 100) {                    tbody.deleteRow(0);                }                var request = requestStack[index];                pendingRequests++;                var row = document.createElement('tr');                request.DOMNode = row;                var requestNumberCell = document.createElement('td');                requestNumberCell.textContent = index + 1;                row.appendChild(requestNumberCell);                var profilerCell = document.createElement('td');                profilerCell.textContent = 'n/a';                row.appendChild(profilerCell);                var methodCell = document.createElement('td');                methodCell.textContent = request.method;                row.appendChild(methodCell);                var typeCell = document.createElement('td');                typeCell.textContent = request.type;                row.appendChild(typeCell);                var statusCodeCell = document.createElement('td');                var statusCode = document.createElement('span');                statusCode.textContent = 'n/a';                statusCodeCell.appendChild(statusCode);                row.appendChild(statusCodeCell);                var pathCell = document.createElement('td');                pathCell.className = 'sf-ajax-request-url';                if ('GET' === request.method) {                    var pathLink = document.createElement('a');                    pathLink.setAttribute('href', request.url);                    pathLink.textContent = request.url;                    pathCell.appendChild(pathLink);                } else {                    pathCell.textContent = request.url;                }                pathCell.setAttribute('title', request.url);                row.appendChild(pathCell);                var durationCell = document.createElement('td');                durationCell.className = 'sf-ajax-request-duration';                durationCell.textContent = 'n/a';                row.appendChild(durationCell);                request.liveDurationHandle = setInterval(function() {                    durationCell.textContent = (new Date() - request.start) + ' ms';                }, 100);                row.className = 'sf-ajax-request sf-ajax-request-loading';                tbody.insertBefore(row, null);                var toolbarInfo = document.querySelector('.sf-toolbar-block-ajax .sf-toolbar-info');                toolbarInfo.scrollTop = toolbarInfo.scrollHeight;                renderAjaxRequests();            };            var finishAjaxRequest = function(index) {                var request = requestStack[index];                clearInterval(request.liveDurationHandle);                if (!request.DOMNode) {                    return;                }                if (request.toolbarReplace && !request.toolbarReplaceFinished && request.profile) {                    /* Flag as complete because finishAjaxRequest can be called multiple times. */                    request.toolbarReplaceFinished = true;                    /* Search up through the DOM to find the toolbar's container ID. */                    for (var elem = request.DOMNode; elem && elem !== document; elem = elem.parentNode) {                        if (elem.id.match(/^sfwdt/)) {                            Sfjs.loadToolbar(elem.id.replace(/^sfwdt/, ''), request.profile);                            break;                        }                    }                }                pendingRequests--;                var row = request.DOMNode;                /* Unpack the children from the row */                var profilerCell = row.children[1];                var methodCell = row.children[2];                var statusCodeCell = row.children[4];                var statusCodeElem = statusCodeCell.children[0];                var durationCell = row.children[6];                if (request.error) {                    row.className = 'sf-ajax-request sf-ajax-request-error';                    methodCell.className = 'sf-ajax-request-error';                    successStreak = 0;                } else {                    row.className = 'sf-ajax-request sf-ajax-request-ok';                    successStreak++;                }                if (request.statusCode) {                    if (request.statusCode < 300) {                        statusCodeElem.setAttribute('class', 'sf-toolbar-status');                    } else if (request.statusCode < 400) {                        statusCodeElem.setAttribute('class', 'sf-toolbar-status sf-toolbar-status-yellow');                    } else {                        statusCodeElem.setAttribute('class', 'sf-toolbar-status sf-toolbar-status-red');                    }                    statusCodeElem.textContent = request.statusCode;                } else {                    statusCodeElem.setAttribute('class', 'sf-toolbar-status sf-toolbar-status-red');                }                if (request.duration) {                    durationCell.textContent = request.duration + ' ms';                }                if (request.profilerUrl) {                    profilerCell.textContent = '';                    var profilerLink = document.createElement('a');                    profilerLink.setAttribute('href', request.profilerUrl);                    profilerLink.textContent = request.profile;                    profilerCell.appendChild(profilerLink);                }                renderAjaxRequests();            };                        if (window.fetch && window.fetch.polyfill === undefined) {                var oldFetch = window.fetch;                window.fetch = function () {                    var promise = oldFetch.apply(this, arguments);                    var url = arguments[0];                    var params = arguments[1];                    var paramType = Object.prototype.toString.call(arguments[0]);                    if (paramType === '[object Request]') {                        url = arguments[0].url;                        params = {                            method: arguments[0].method,                            credentials: arguments[0].credentials,                            headers: arguments[0].headers,                            mode: arguments[0].mode,                            redirect: arguments[0].redirect                        };                    } else {                        url = String(url);                    }                    if (!url.match(new RegExp("^\/((index|app(_[\\w]+)?)\\.php\/)?_wdt"))) {                        var method = 'GET';                        if (params && params.method !== undefined) {                            method = params.method;                        }                        var stackElement = {                            error: false,                            url: url,                            method: method,                            type: 'fetch',                            start: new Date()                        };                        var idx = requestStack.push(stackElement) - 1;                        promise.then(function (r) {                            stackElement.duration = new Date() - stackElement.start;                            stackElement.error = r.status < 200 || r.status >= 400;                            stackElement.statusCode = r.status;                            stackElement.profile = r.headers.get('x-debug-token');                            stackElement.profilerUrl = r.headers.get('x-debug-token-link');                            stackElement.toolbarReplaceFinished = false;                            stackElement.toolbarReplace = '1' === r.headers.get('Symfony-Debug-Toolbar-Replace');                            finishAjaxRequest(idx);                        }, function (e){                            stackElement.error = true;                            finishAjaxRequest(idx);                        });                        startAjaxRequest(idx);                    }                    return promise;                };            }            if (window.XMLHttpRequest && XMLHttpRequest.prototype.addEventListener) {                var proxied = XMLHttpRequest.prototype.open;                XMLHttpRequest.prototype.open = function(method, url, async, user, pass) {                    var self = this;                    /* prevent logging AJAX calls to static and inline files, like templates */                    var path = url;                    if (url.slice(0, 1) === '/') {                        if (0 === url.indexOf('')) {                            path = url.slice(0);                        }                    }                    else if (0 === url.indexOf('http\u003A\/\/mtc.vdeveloper.lan')) {                        path = url.slice(25);                    }                    if (!path.match(new RegExp("^\/((index|app(_[\\w]+)?)\\.php\/)?_wdt"))) {                        var stackElement = {                            error: false,                            url: url,                            method: method,                            type: 'xhr',                            start: new Date()                        };                        var idx = requestStack.push(stackElement) - 1;                        this.addEventListener('readystatechange', function() {                            if (self.readyState == 4) {                                stackElement.duration = new Date() - stackElement.start;                                stackElement.error = self.status < 200 || self.status >= 400;                                stackElement.statusCode = self.status;                                extractHeaders(self, stackElement);                                finishAjaxRequest(idx);                            }                        }, false);                        startAjaxRequest(idx);                    }                    proxied.apply(this, Array.prototype.slice.call(arguments));                };            }                        return {                hasClass: hasClass,                removeClass: removeClass,                addClass: addClass,                toggleClass: toggleClass,                getPreference: getPreference,                setPreference: setPreference,                addEventListener: addEventListener,                request: request,                renderAjaxRequests: renderAjaxRequests,                getSfwdt: function(token) {                    return document.getElementById('sfwdt' + token);                },                load: function(selector, url, onSuccess, onError, options) {                    var el = document.getElementById(selector);                    if (el && el.getAttribute('data-sfurl') !== url) {                        request(                            url,                            function(xhr) {                                el.innerHTML = xhr.responseText;                                el.setAttribute('data-sfurl', url);                                removeClass(el, 'loading');                                var pending = pendingRequests;                                for (var i = 0; i < requestStack.length; i++) {                                    startAjaxRequest(i);                                    if (requestStack[i].duration || requestStack[i].error) {                                        finishAjaxRequest(i);                                    }                                }                                /* Revert the pending state in case there was a start called without a finish above. */                                pendingRequests = pending;                                (onSuccess || noop)(xhr, el);                            },                            function(xhr) { (onError || noop)(xhr, el); },                            '',                            options                        );                    }                    return this;                },                showToolbar: function(token) {                    var sfwdt = this.getSfwdt(token);                    removeClass(sfwdt, 'sf-display-none');                    if (getPreference('toolbar/displayState') == 'none') {                        document.getElementById('sfToolbarMainContent-' + token).style.display = 'none';                        document.getElementById('sfToolbarClearer-' + token).style.display = 'none';                        document.getElementById('sfMiniToolbar-' + token).style.display = 'block';                    } else {                        document.getElementById('sfToolbarMainContent-' + token).style.display = 'block';                        document.getElementById('sfToolbarClearer-' + token).style.display = 'block';                        document.getElementById('sfMiniToolbar-' + token).style.display = 'none';                    }                },                hideToolbar: function(token) {                    var sfwdt = this.getSfwdt(token);                    addClass(sfwdt, 'sf-display-none');                },                initToolbar: function(token) {                    this.showToolbar(token);                    var hideButton = document.getElementById('sfToolbarHideButton-' + token);                    var hideButtonSvg = hideButton.querySelector('svg');                    hideButtonSvg.setAttribute('aria-hidden', 'true');                    hideButtonSvg.setAttribute('focusable', 'false');                    addEventListener(hideButton, 'click', function (event) {                        event.preventDefault();                        var p = this.parentNode;                        p.style.display = 'none';                        (p.previousElementSibling || p.previousSibling).style.display = 'none';                        document.getElementById('sfMiniToolbar-' + token).style.display = 'block';                        setPreference('toolbar/displayState', 'none');                    });                    var showButton = document.getElementById('sfToolbarMiniToggler-' + token);                    var showButtonSvg = showButton.querySelector('svg');                    showButtonSvg.setAttribute('aria-hidden', 'true');                    showButtonSvg.setAttribute('focusable', 'false');                    addEventListener(showButton, 'click', function (event) {                        event.preventDefault();                        var elem = this.parentNode;                        if (elem.style.display == 'none') {                            document.getElementById('sfToolbarMainContent-' + token).style.display = 'none';                            document.getElementById('sfToolbarClearer-' + token).style.display = 'none';                            elem.style.display = 'block';                        } else {                            document.getElementById('sfToolbarMainContent-' + token).style.display = 'block';                            document.getElementById('sfToolbarClearer-' + token).style.display = 'block';                            elem.style.display = 'none'                        }                        setPreference('toolbar/displayState', 'block');                    });                },                loadToolbar: function(token, newToken) {                    var that = this;                    var triesCounter = document.getElementById('sfLoadCounter-' + token);                    var options = {                        retry: true,                        onSend: function (count) {                            if (count === 3) {                                that.initToolbar(token);                            }                            if (triesCounter) {                                triesCounter.textContent = count;                            }                        },                    };                    var cancelButton = document.getElementById('sfLoadCancel-' + token);                    if (cancelButton) {                        addEventListener(cancelButton, 'click', function (event) {                            event.preventDefault();                            options.stop = true;                            that.hideToolbar(token);                        });                    }                    newToken = (newToken || token);                    this.load(                        'sfwdt' + token,                        'http\u003A\/\/mtc.vdeveloper.lan\/_wdt\/xxxxxx'.replace(/xxxxxx/, newToken),                        function(xhr, el) {                            var toolbarContent = document.getElementById('sfToolbarMainContent-' + newToken);                            /* Do nothing in the edge case where the toolbar has already been replaced with a new one */                            if (!toolbarContent) {                                return;                            }                            /* Replace the ID, it has to match the new token */                            toolbarContent.parentElement.id = 'sfwdt' + newToken;                            /* Evaluate in global scope scripts embedded inside the toolbar */                            var i, scripts = [].slice.call(el.querySelectorAll('script'));                            for (i = 0; i < scripts.length; ++i) {                                if (scripts[i].firstChild) {                                    eval.call({}, scripts[i].firstChild.nodeValue);                                }                            }                            el.style.display = -1 !== xhr.responseText.indexOf('sf-toolbarreset') ? 'block' : 'none';                            if (el.style.display == 'none') {                                return;                            }                            that.initToolbar(newToken);                            /* Handle toolbar-info position */                            var toolbarBlocks = [].slice.call(el.querySelectorAll('.sf-toolbar-block'));                            for (i = 0; i < toolbarBlocks.length; ++i) {                                toolbarBlocks[i].onmouseover = function () {                                    var toolbarInfo = this.querySelectorAll('.sf-toolbar-info')[0];                                    var pageWidth = document.body.clientWidth;                                    var elementWidth = toolbarInfo.offsetWidth;                                    var leftValue = (elementWidth + this.offsetLeft) - pageWidth;                                    var rightValue = (elementWidth + (pageWidth - this.offsetLeft)) - pageWidth;                                    /* Reset right and left value, useful on window resize */                                    toolbarInfo.style.right = '';                                    toolbarInfo.style.left = '';                                    if (elementWidth > pageWidth) {                                        toolbarInfo.style.left = 0;                                    }                                    else if (leftValue > 0 && rightValue > 0) {                                        toolbarInfo.style.right = (rightValue * -1) + 'px';                                    } else if (leftValue < 0) {                                        toolbarInfo.style.left = 0;                                    } else {                                        toolbarInfo.style.right = '0px';                                    }                                };                            }                            renderAjaxRequests();                            addEventListener(document.querySelector('.sf-toolbar-ajax-clear'), 'click', function() {                                requestStack = [];                                renderAjaxRequests();                                successStreak = 4;                                document.querySelector('.sf-toolbar-ajax-request-list').innerHTML = '';                            });                            addEventListener(document.querySelector('.sf-toolbar-block-ajax'), 'mouseenter', function (event) {                                var elem = document.querySelector('.sf-toolbar-block-ajax .sf-toolbar-info');                                elem.scrollTop = elem.scrollHeight;                            });                            addEventListener(document.querySelector('.sf-toolbar-block-ajax > .sf-toolbar-icon'), 'click', function (event) {                                event.preventDefault();                                toggleClass(this.parentNode, 'hover');                            });                            var dumpInfo = document.querySelector('.sf-toolbar-block-dump .sf-toolbar-info');                            if (null !== dumpInfo) {                                addEventListener(dumpInfo, 'sfbeforedumpcollapse', function () {                                    dumpInfo.style.minHeight = dumpInfo.getBoundingClientRect().height+'px';                                });                                addEventListener(dumpInfo, 'mouseleave', function () {                                    dumpInfo.style.minHeight = '';                                });                            }                        },                        function(xhr) {                            if (xhr.status !== 0 && !options.stop) {                                var sfwdt = that.getSfwdt(token);                                sfwdt.innerHTML = '\                                <div class="sf-toolbarreset notranslate">\                                    <div class="sf-toolbar-icon"><svg width="26" height="28" xmlns="http://www.w3.org/2000/svg" version="1.1" x="0px" y="0px" viewBox="0 0 26 28" enable-background="new 0 0 26 28" xml:space="preserve"><path fill="#FFFFFF" d="M13 0C5.8 0 0 5.8 0 13c0 7.2 5.8 13 13 13c7.2 0 13-5.8 13-13C26 5.8 20.2 0 13 0z M20 7.5 c-0.6 0-1-0.3-1-0.9c0-0.2 0-0.4 0.2-0.6c0.1-0.3 0.2-0.3 0.2-0.4c0-0.3-0.5-0.4-0.7-0.4c-2 0.1-2.5 2.7-2.9 4.8l-0.2 1.1 c1.1 0.2 1.9 0 2.4-0.3c0.6-0.4-0.2-0.8-0.1-1.3C18 9.2 18.4 9 18.7 8.9c0.5 0 0.8 0.5 0.8 1c0 0.8-1.1 2-3.3 1.9 c-0.3 0-0.5 0-0.7-0.1L15 14.1c-0.4 1.7-0.9 4.1-2.6 6.2c-1.5 1.8-3.1 2.1-3.8 2.1c-1.3 0-2.1-0.6-2.2-1.6c0-0.9 0.8-1.4 1.3-1.4 c0.7 0 1.2 0.5 1.2 1.1c0 0.5-0.2 0.6-0.4 0.7c-0.1 0.1-0.3 0.2-0.3 0.4c0 0.1 0.1 0.3 0.4 0.3c0.5 0 0.9-0.3 1.2-0.5 c1.3-1 1.7-2.9 2.4-6.2l0.1-0.8c0.2-1.1 0.5-2.3 0.8-3.5c-0.9-0.7-1.4-1.5-2.6-1.8c-0.8-0.2-1.3 0-1.7 0.4C8.4 10 8.6 10.7 9 11.1 l0.7 0.7c0.8 0.9 1.3 1.7 1.1 2.7c-0.3 1.6-2.1 2.8-4.3 2.1c-1.9-0.6-2.2-1.9-2-2.7c0.2-0.6 0.7-0.8 1.2-0.6 c0.5 0.2 0.7 0.8 0.6 1.3c0 0.1 0 0.1-0.1 0.3C6 15 5.9 15.2 5.9 15.3c-0.1 0.4 0.4 0.7 0.8 0.8c0.8 0.3 1.7-0.2 1.9-0.9 c0.2-0.6-0.2-1.1-0.4-1.2l-0.8-0.9c-0.4-0.4-1.2-1.5-0.8-2.8c0.2-0.5 0.5-1 0.9-1.4c1-0.7 2-0.8 3-0.6c1.3 0.4 1.9 1.2 2.8 1.9 c0.5-1.3 1.1-2.6 2-3.8c0.9-1 2-1.7 3.3-1.8C20 4.8 21 5.4 21 6.3C21 6.7 20.8 7.5 20 7.5z"/></svg></div>\                                    An error occurred while loading the web debug toolbar. <a href="http\u003A\/\/mtc.vdeveloper.lan\/_profiler\/' + newToken + '">Open the web profiler.</a>\</div>\                            ';                                sfwdt.setAttribute('class', 'sf-toolbar sf-error-toolbar');                            }                        },                        options                    );                    return this;                },                toggle: function(selector, elOn, elOff) {                    var tmp = elOn.style.display,                        el = document.getElementById(selector);                    elOn.style.display = elOff.style.display;                    elOff.style.display = tmp;                    if (el) {                        el.style.display = 'none' === tmp ? 'none' : 'block';                    }                    return this;                },            };        })();    }    Sfjs.loadToolbar('50e9d8');/*]]>*/
                    
                </script>
                </body>
                </html>

